diff options
| author | Leah Rowe <leah@libreboot.org> | 2023-10-10 23:48:03 +0100 | 
|---|---|---|
| committer | Leah Rowe <leah@libreboot.org> | 2023-10-10 23:48:03 +0100 | 
| commit | 5b8b55f2ae81b63a2da05bf2e95b48ff25ab5e36 (patch) | |
| tree | 1a8e0426eb74656e9c29c33a04e8fbbd49f5b5e5 | |
| parent | 067a358d4d2e4b6035cef51773b3d1da3f9b2aa3 (diff) | |
build/fw/coreboot: fix bad commands in help text
Signed-off-by: Leah Rowe <leah@libreboot.org>
| -rwxr-xr-x | script/build/fw/coreboot | 13 | 
1 files changed, 7 insertions, 6 deletions
| diff --git a/script/build/fw/coreboot b/script/build/fw/coreboot index ba66d856..bf7943ac 100755 --- a/script/build/fw/coreboot +++ b/script/build/fw/coreboot @@ -396,9 +396,9 @@ moverom() {  usage()  {  	cat <<- EOF -	USAGE:	./build firmware coreboot target -	To build *all* boards, do this: ./build firmware coreboot all -	To list *all* boards, do this: ./build firmware coreboot list +	USAGE:	./build fw coreboot targetname +	To build *all* boards, do this: ./build fw coreboot all +	To list *all* boards, do this: ./build fw coreboot list  	Optional Flags:  	-d: displaymode @@ -406,9 +406,10 @@ usage()  	-k: keyboard layout  	Example commands: -		./build firmware coreboot x60 -		./build firmware coreboot x200_8mb x60 -		./build firmware coreboot x60 -p grub -d corebootfb -k usqwerty + +		./build fw coreboot x60 +		./build fw coreboot x200_8mb x60 +		./build fw coreboot x60 -p grub -d corebootfb -k usqwerty  	possible values for 'target':  	$(listitems "config/coreboot") | 
