?? create-this-bsp
字號:
#!/bin/bash## This script creates the hal_default Board Support Package (BSP).BSP_TYPE=halBSP_DIR=.SOPC_DIR=../../..# Run nios2-bsp utility to create a HAL BSP in this directory# for the system with a .sopc file in $SOPC_DIR.cmd="nios2-bsp $BSP_TYPE $BSP_DIR $SOPC_DIR $@"echo "create-this-bsp: Running \"$cmd\""$cmd || { echo "$cmd failed" exit 1}echo "create-this-bsp: Running make"make
?? 快捷鍵說明
復制代碼
Ctrl + C
搜索代碼
Ctrl + F
全屏模式
F11
切換主題
Ctrl + Shift + D
顯示快捷鍵
?
增大字號
Ctrl + =
減小字號
Ctrl + -