-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathhelp.sh
executable file
·20 lines (20 loc) · 1016 Bytes
/
help.sh
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
#!/bin/bash
echo
echo -e ' \e[7mBuild\e[0m'
echo -e ' \e[1mall\e[0m - Build CLFS-ARM with toolchain'
echo -e ' \e[1mtoolchain\e[0m - Build toolchain'
echo -e ' \e[1msystem\e[0m - Build CLFS-ARM root file system'
echo -e ' \e[1mkernel\e[0m - Build kernel'
echo -e ' \e[1mimage\e[0m - Generate root file system image'
echo
echo -e ' \e[7mCleaning\e[0m'
echo -e ' \e[1mclean\e[0m - Delete all files created by build'
echo
echo -e ' \e[7mMiscellaneous\e[0m'
echo -e ' \e[1m<name>_defconfig\e[0m - Load configuration file'
echo -e ' \e[1mlist-defconfigs\e[0m - Show configuration file list'
echo -e ' \e[1mdownload\e[0m - Download essential source'
echo -e ' \e[1mrun\e[0m - Emulate CLFS-ARM using QEMU'
echo -e ' \e[1mflash\e[0m - Flash an SD Card'
echo -e ' \e[1msetting\e[0m - Show build settings'
echo