diff options
author | Francis Rowe <info@gluglug.org.uk> | 2015-08-04 23:39:33 +0100 |
---|---|---|
committer | Francis Rowe <info@gluglug.org.uk> | 2015-08-04 23:49:50 +0100 |
commit | c136b69b4cc1e65b5aea333a727555e0a4ff2bab (patch) | |
tree | 1310b9c0f238f2a5bd3606afde5e253a79ed874e /resources/scripts/helpers/build/config/corebootreplace | |
parent | 39354fba57f35c6f5a226deea7d71c4800a23676 (diff) | |
download | librebootfr-c136b69b4cc1e65b5aea333a727555e0a4ff2bab.tar.gz librebootfr-c136b69b4cc1e65b5aea333a727555e0a4ff2bab.zip |
Update coreboot to the latest as of 4 August 2015
Diffstat (limited to 'resources/scripts/helpers/build/config/corebootreplace')
-rwxr-xr-x | resources/scripts/helpers/build/config/corebootreplace | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/resources/scripts/helpers/build/config/corebootreplace b/resources/scripts/helpers/build/config/corebootreplace index 4377ff26..5df5f771 100755 --- a/resources/scripts/helpers/build/config/corebootreplace +++ b/resources/scripts/helpers/build/config/corebootreplace @@ -25,7 +25,7 @@ [ "x${DEBUG+set}" = 'xset' ] && set -v set -u -e -cd "resources/libreboot/config/" +cd "resources/libreboot/config/grub/" if [ $# -lt 1 ]; then configs="$(ls)" @@ -33,15 +33,15 @@ else configs="$@" fi -cd "../../../coreboot/" +cd "../../../../coreboot/" for config in ${configs}; do printf "Replacing or creating new config for %s\n" "${config}" sleep 2 make menuconfig - [ ! -d "../resources/libreboot/config/${config}/" ] && mkdir -p "../resources/libreboot/config/${config}/" - mv ".config" "../resources/libreboot/config/${config}/config" + [ ! -d "../resources/libreboot/config/grub/${config}/" ] && mkdir -p "../resources/libreboot/config/grub/${config}/" + mv ".config" "../resources/libreboot/config/grub/${config}/config" done cd "../" |