summaryrefslogtreecommitdiff
path: root/include/lib.sh
diff options
context:
space:
mode:
authorLeah Rowe <leah@libreboot.org>2024-06-27 03:23:31 +0100
committerLeah Rowe <leah@libreboot.org>2024-06-27 03:23:31 +0100
commited6acfee84b674405d8227e3908f04d533febaf5 (patch)
tree111a9b0e63e816ccbf3d87f6c14644abc6248f6f /include/lib.sh
parent44fb9873639301988b2a99e246243a83cc4fe1e2 (diff)
lib.sh: make elf/coreboot* a dot directory
we don't want the user to flash coreboot from elf/, because those images do not contain payloads. the user must flash from bin/ ample warning is given, at build time, but the warning is written in english. therefore, some people may not understand it, because they may not even speak english. hide the coreboot elf/ directory, to mitigate this possibility. in most cases, this will probably prevent the average user from flashing those images, since they likely won't see it. the "DO NOT FLASH" warning is still included in that directory name, while creating it. Signed-off-by: Leah Rowe <leah@libreboot.org>
Diffstat (limited to 'include/lib.sh')
-rwxr-xr-xinclude/lib.sh2
1 files changed, 1 insertions, 1 deletions
diff --git a/include/lib.sh b/include/lib.sh
index 8b896f6b..cac6b302 100755
--- a/include/lib.sh
+++ b/include/lib.sh
@@ -11,7 +11,7 @@ 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."
cbdir="src/coreboot/default"
-cbelfdir="elf/coreboot_nopayload_DO_NOT_FLASH"
+cbelfdir="elf/.coreboot_nopayload_DO_NOT_FLASH"
ifdtool="elf/ifdtool/default/ifdtool"
cbfstool="elf/cbfstool/default/cbfstool"
tmpgit="$PWD/tmp/gitclone"