Home | History | Annotate | Download | only in uefi-tools

Lines Matching full:board

4 # Board Configuration Section
7 # Board configuration moved to parse-platforms.py and platforms.config.
28 PLATFORM_NAME="`$TOOLS_DIR/parse-platforms.py $PLATFORM_CONFIG -p $board get -o longname`"
29 PLATFORM_PREBUILD_CMDS="`$TOOLS_DIR/parse-platforms.py $PLATFORM_CONFIG -p $board get -o prebuild_cmds`"
30 PLATFORM_BUILDFLAGS="`$TOOLS_DIR/parse-platforms.py $PLATFORM_CONFIG -p $board get -o buildflags`"
32 PLATFORM_BUILDCMD="`$TOOLS_DIR/parse-platforms.py $PLATFORM_CONFIG -p $board get -o buildcmd`"
33 PLATFORM_DSC="`$TOOLS_DIR/parse-platforms.py $PLATFORM_CONFIG -p $board get -o dsc`"
34 PLATFORM_ARCH="`$TOOLS_DIR/parse-platforms.py $PLATFORM_CONFIG -p $board get -o arch`"
37 TEMP_PACKAGES_PATH="`$TOOLS_DIR/parse-platforms.py $PLATFORM_CONFIG -p $board get -o packages_path`"
68 echo "$board"_BUILDFLAGS="'$PLATFORM_BUILDFLAGS'"
106 echo "$TOOLS_DIR/tos-build.sh -e "$EDK2_DIR" -t "$target"_${TOOLCHAIN} $board"
108 $TOOLS_DIR/tos-build.sh -e "$EDK2_DIR" -t "$target"_${TOOLCHAIN} $board
117 echo "$TOOLS_DIR/atf-build.sh -e "$EDK2_DIR" -t "$target"_${TOOLCHAIN} $board"
119 $TOOLS_DIR/atf-build.sh -e "$EDK2_DIR" -t "$target"_${TOOLCHAIN} $board
162 for board in "${boards[@]}" ; do
163 echo -n "| $board "
167 for board in "${boards[@]}" ; do
168 PLATFORM_NAME="`$TOOLS_DIR/parse-platforms.py $PLATFORM_CONFIG -p $board get -o longname`"
169 printf "%8s\tbuild %s\n" "$board" "${PLATFORM_NAME}"
205 for board in $boardlist; do
206 boards=(${boards[@]} $board)
256 for board in "${boards[@]}" ; do
257 if [ "$1" == $board ]; then
259 builds=(${builds[@]} "$board")
275 # If there were no args, use a menu to select a single board / all boards to build
280 for board in "${boards[@]}" ; do
281 echo "$((++f)): $board"
327 for board in "${builds[@]}" ; do