diff options
author | Leah Rowe <leah@libreboot.org> | 2025-05-07 13:27:25 +0100 |
---|---|---|
committer | Leah Rowe <leah@libreboot.org> | 2025-05-07 13:28:55 +0100 |
commit | 0faef899469818410e5e6d481f1e6c4fa5ad3d3d (patch) | |
tree | 84061935c0e45eff7201874914b9fdec6e41ea39 /include/rom.sh | |
parent | 2b7f6b7d7cedfcc7661f02b8092707fde09460a0 (diff) |
lib.sh: support any command on find_exec()
right now, we assume "find", but it adds any number of
arguments next to that.
change it instead to support any command, where the
assumption is that it would generate a list of files
and directories.
Signed-off-by: Leah Rowe <leah@libreboot.org>
Diffstat (limited to 'include/rom.sh')
-rw-r--r-- | include/rom.sh | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/include/rom.sh b/include/rom.sh index 0eebdabb..09270829 100644 --- a/include/rom.sh +++ b/include/rom.sh @@ -192,7 +192,7 @@ mkseagrub() [ "$payload_grubsea" = "y" ] && pname="grub" [ "$payload_grubsea" = "y" ] || \ cbfs "$tmprom" "$grubdata/bootorder" bootorder raw - fe_ "cprom" "$grubdata/keymap" -type f -name "*.gkb" + fe_ cprom find "$grubdata/keymap" -type f -name "*.gkb" } add_uboot() |