• R/O
  • HTTP
  • SSH
  • HTTPS

タグ
未設定

よく使われているワード(クリックで追加)

javac++androidlinuxc#windowsobjective-ccocoa誰得qtpythonphprubygameguibathyscaphec計画中(planning stage)翻訳omegatframeworktwitterdomtestvb.netdirectxゲームエンジンbtronarduinopreviewer

12半音階によるトーン生成


ファイル情報

Rev. 05c64c80a10b324b375562a6070f403efa4d0028
サイズ 576 バイト
日時 2013-06-03 23:41:51
作者 suikan
ログメッセージ

最初のコミット

内容

#/bin/sh
# configure the Uzume sample project
# Usage :
#      configure-project bsp_name
#
#   for example, if you want to use bsp_amakusa592, run following :
#   configure-project bsp_amakusa592

if [ $# -ne 1 ]; then
  echo " "
  echo "Usage : "
  echo "    $0 name_of_bsp"
  echo "Name of BSP :"
  echo `ls kernel/config/blackfin/bsp* -d | sed -e "s%kernel/config/blackfin/%%" `
  echo " "
  exit 1
fi
cd kernel/cfg
make depend
make
cd ../..
cat > bsp.cfg << eos
#include "kernel/uzume/$1.cfg"
eos
kernel/configure -C blackfin -S $1 -A uzume_sample 
make depend
make clean