diff options
-rwxr-xr-x | include/lib.sh | 2 | ||||
-rwxr-xr-x | include/vendor.sh | 3 | ||||
-rwxr-xr-x | script/roms | 5 |
3 files changed, 7 insertions, 3 deletions
diff --git a/include/lib.sh b/include/lib.sh index 9f722313..5952b202 100755 --- a/include/lib.sh +++ b/include/lib.sh @@ -7,6 +7,8 @@ export LC_COLLATE=C export LC_ALL=C _ua="Mozilla/5.0 (Windows NT 10.0; rv:91.0) Gecko/20100101 Firefox/91.0" +kbnotice="Insert a .gkb file from config/data/grub/keymap/ as keymap.gkb \ +if you want a custom keymap in GRUB; use cbfstool from elf/cbfstool." tmpdir_was_set="y" cbdir="src/coreboot/default" diff --git a/include/vendor.sh b/include/vendor.sh index b5fda8f3..54dac191 100755 --- a/include/vendor.sh +++ b/include/vendor.sh @@ -261,7 +261,8 @@ vendor_inject() inject_vendorfiles [ "$nukemode" = "nuke" ] && return 0 printf "Friendly reminder (this is *not* an error message):\n" - printf "Please ensure that the files were inserted correctly.\n" + printf "Please ensure that the files were inserted correctly. ALSO:\n" + printf "%s\n" "$kbnotice" } check_board() diff --git a/script/roms b/script/roms index 3412b150..3791535e 100755 --- a/script/roms +++ b/script/roms @@ -43,9 +43,10 @@ main() && targets="$targets, $x"; continue done - [ -z "$targets" ] && $err "No ROM images were compiled" +# [ -z "$targets" ] && $err "No ROM images were compiled" printf "Check these ROM directories in bin/: %s\n" "${targets#, }" - printf "DO NOT flash images from elf/ - please use bin/ instead.\n" + printf "DO NOT flash images from elf/ - use bin/ instead. ALSO:\n" + printf "%s\n" "$kbnotice" } mkserprog() |