diff options
author | Leah Rowe <leah@libreboot.org> | 2023-08-20 16:36:49 +0100 |
---|---|---|
committer | Leah Rowe <leah@libreboot.org> | 2023-08-20 16:40:11 +0100 |
commit | c83d1a8dc4efea50aa17af930ec7b8289dad2390 (patch) | |
tree | b009c990e513af0c47b45af3f75cf4bece8c5831 /resources/scripts/build/boot/roms_helper | |
parent | 438bf2c9b113eab11439c9c65449e269e5b4b095 (diff) |
unify grub scripts under one directory
new commands are thus,
build grub payloads:
./build grub payload
(formerly ./build payload grub)
build grub utils:
./build grub utils
(formerly ./build module grub)
The scripts is build/module/ will mostly be
deleted. I say mostly, because some of them
are being moved instead.
The deleted ones will be ones that basically
just run "make" in the target directory. They
will be unified, in a follow-up patch.
Signed-off-by: Leah Rowe <leah@libreboot.org>
Diffstat (limited to 'resources/scripts/build/boot/roms_helper')
-rwxr-xr-x | resources/scripts/build/boot/roms_helper | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/resources/scripts/build/boot/roms_helper b/resources/scripts/build/boot/roms_helper index 0ae914e1..8ea3ae0e 100755 --- a/resources/scripts/build/boot/roms_helper +++ b/resources/scripts/build/boot/roms_helper @@ -205,7 +205,7 @@ if [ "${payload_grub}" = "y" ] \ if [ ! -f "${grubelf}" ] || [ ! -f "${grubcfg}" ] || \ [ ! -f "${grubtestcfg}" ]; then - ./build payload grub + ./build grub payload fi done fi |