summaryrefslogtreecommitdiffstats
path: root/resources/scripts/helpers/build/roms/withgrub
diff options
context:
space:
mode:
authorFrancis Rowe <info@gluglug.org.uk>2015-06-28 13:57:03 (EDT)
committer Francis Rowe <info@gluglug.org.uk>2015-06-28 13:57:03 (EDT)
commit46821c70a11422c0154d1dfa2746ed7db9bc3c75 (patch)
tree4cf3e9897415123312cd428dd6f269e1341d5663 /resources/scripts/helpers/build/roms/withgrub
parent09f162099645089d0763cf78f92ff13610ab23b3 (diff)
downloadlibreboot-46821c70a11422c0154d1dfa2746ed7db9bc3c75.zip
libreboot-46821c70a11422c0154d1dfa2746ed7db9bc3c75.tar.gz
libreboot-46821c70a11422c0154d1dfa2746ed7db9bc3c75.tar.bz2
coreboot-libre: move GRUB configs to grub/
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