diff options
Diffstat (limited to 'resources/scripts/helpers/build/roms/withgrub')
-rwxr-xr-x | resources/scripts/helpers/build/roms/withgrub | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/resources/scripts/helpers/build/roms/withgrub b/resources/scripts/helpers/build/roms/withgrub index c3b33c5..dbd89e1 100755 --- a/resources/scripts/helpers/build/roms/withgrub +++ b/resources/scripts/helpers/build/roms/withgrub @@ -38,7 +38,7 @@ if [ $# -gt 0 ]; then boards="$@" else # build all ROM images - boards="$(ls resources/libreboot/config/)" + boards="$(ls resources/libreboot/config/grub/)" fi @@ -70,7 +70,7 @@ cd ../ # Build ROM images for supported boards for board in ${boards} do - if [ -f "resources/libreboot/config/${board}/config" ]; then + if [ -f "resources/libreboot/config/grub/${board}/config" ]; then ./build roms helper ${board} fi done |