diff options
author | Francis Rowe <info@gluglug.org.uk> | 2015-06-28 18:57:03 +0100 |
---|---|---|
committer | Francis Rowe <info@gluglug.org.uk> | 2015-06-28 18:57:03 +0100 |
commit | 46821c70a11422c0154d1dfa2746ed7db9bc3c75 (patch) | |
tree | 4cf3e9897415123312cd428dd6f269e1341d5663 /resources/scripts/helpers/build/roms/withgrub | |
parent | 09f162099645089d0763cf78f92ff13610ab23b3 (diff) | |
download | librebootfr-46821c70a11422c0154d1dfa2746ed7db9bc3c75.tar.gz librebootfr-46821c70a11422c0154d1dfa2746ed7db9bc3c75.zip |
coreboot-libre: move GRUB configs to grub/
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 c3b33c57..dbd89e1e 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 |