summaryrefslogtreecommitdiffstats
path: root/resources
diff options
context:
space:
mode:
authorFrancis Rowe <info@gluglug.org.uk>2015-06-28 14:34:25 (EDT)
committer Francis Rowe <info@gluglug.org.uk>2015-06-28 14:41:04 (EDT)
commitd0e61be244c417bdbd89a8c71d80c9194e14ed73 (patch)
tree64a1d7ff67fa4d8fbfb6be97b996311e406eb3ad /resources
parentcfcd51979895909825b89ce09e2434e80691bfb0 (diff)
downloadlibreboot-d0e61be244c417bdbd89a8c71d80c9194e14ed73.zip
libreboot-d0e61be244c417bdbd89a8c71d80c9194e14ed73.tar.gz
libreboot-d0e61be244c417bdbd89a8c71d80c9194e14ed73.tar.bz2
build/roms/withgrub: Put ROM images in bin/grub/, not bin/
Diffstat (limited to 'resources')
-rwxr-xr-xresources/scripts/helpers/build/roms/withgrub2
-rwxr-xr-xresources/scripts/helpers/build/roms/withgrub_helper (renamed from resources/scripts/helpers/build/roms/helper)7
2 files changed, 5 insertions, 4 deletions
diff --git a/resources/scripts/helpers/build/roms/withgrub b/resources/scripts/helpers/build/roms/withgrub
index dbd89e1..cb205d2 100755
--- a/resources/scripts/helpers/build/roms/withgrub
+++ b/resources/scripts/helpers/build/roms/withgrub
@@ -71,7 +71,7 @@ cd ../
for board in ${boards}
do
if [ -f "resources/libreboot/config/grub/${board}/config" ]; then
- ./build roms helper ${board}
+ ./build roms withgrub_helper ${board}
fi
done
diff --git a/resources/scripts/helpers/build/roms/helper b/resources/scripts/helpers/build/roms/withgrub_helper
index 236b8da..72ea451 100755
--- a/resources/scripts/helpers/build/roms/helper
+++ b/resources/scripts/helpers/build/roms/withgrub_helper
@@ -31,7 +31,7 @@ if (( $# != 1 )); then
exit 1
fi
-printf "Helper script: build ROM images for '%s'\n" "${1}"
+printf "GRUB Helper script: build ROM images for '%s'\n" "${1}"
cd "coreboot/"
@@ -122,8 +122,9 @@ mv "${1}"*.rom "${1}/"
# delete the old ROM's from ../bin
rm -Rf "../bin/${1}/"
-# now put the new ROM's in ./bin
-mv "${1}/" "../bin"
+# now put the new ROM's in ./bin/grub/
+[ ! -d "../bin/grub/" ] && mkdir -p "../bin/grub/"
+mv "${1}/" "../bin/grub/"
# libreboot version file no longer needed
rm -f "lbversion"