summaryrefslogtreecommitdiffstats
path: root/resources/scripts/helpers/build/roms/withgrub
diff options
context:
space:
mode:
Diffstat (limited to 'resources/scripts/helpers/build/roms/withgrub')
-rwxr-xr-xresources/scripts/helpers/build/roms/withgrub4
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