diff options
author | Francis Rowe <info@gluglug.org.uk> | 2015-05-04 14:58:54 +0100 |
---|---|---|
committer | Francis Rowe <info@gluglug.org.uk> | 2015-05-04 18:29:19 +0100 |
commit | d4bee5d0fb8b8775af2a0da356fce9d3bf8104bb (patch) | |
tree | c8ec4fb54f059aa2386b2d6abccf45434b14be2c /resources/scripts/helpers/build/config/corebootreplace | |
parent | 5f69499262789d3adcb9b9422d3175a3008c6fc5 (diff) | |
download | librebootfr-d4bee5d0fb8b8775af2a0da356fce9d3bf8104bb.tar.gz librebootfr-d4bee5d0fb8b8775af2a0da356fce9d3bf8104bb.zip |
Update coreboot + merge GM45 hybrid GPU patches
Also add power_on_after_fail to X200 and others (prevents the bug
where the system would boot when connecting the AC adapter)
(option in menuconfig to use CMOS/nvram settings is now enabled)
Also NetDCDC is now the default USB debug dongle used (compatible
with the BBB rev C).
Add two new methods for managing coreboot configs:
./build config corebootreplace
./build config corebootmodify
Diffstat (limited to 'resources/scripts/helpers/build/config/corebootreplace')
-rwxr-xr-x | resources/scripts/helpers/build/config/corebootreplace | 45 |
1 files changed, 45 insertions, 0 deletions
diff --git a/resources/scripts/helpers/build/config/corebootreplace b/resources/scripts/helpers/build/config/corebootreplace new file mode 100755 index 00000000..9be5c9a5 --- /dev/null +++ b/resources/scripts/helpers/build/config/corebootreplace @@ -0,0 +1,45 @@ +#!/bin/bash + +# +# helper script: run "make menuconfig" on config(s) to replace them +# +# Copyright (C) 2014, 2015 Francis Rowe <info@gluglug.org.uk> +# +# This program is free software: you can redistribute it and/or modify +# it under the terms of the GNU General Public License as published by +# the Free Software Foundation, either version 3 of the License, or +# (at your option) any later version. +# +# This program is distributed in the hope that it will be useful, +# but WITHOUT ANY WARRANTY; without even the implied warranty of +# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the +# GNU General Public License for more details. +# +# You should have received a copy of the GNU General Public License +# along with this program. If not, see <http://www.gnu.org/licenses/>. +# + +# This script assumes that the working directory is the root +# of libreboot_src or git + +[ "x${DEBUG+set}" = 'xset' ] && set -v +set -u -e + +cd resources/libreboot/config/ + +if [ $# -lt 1 ]; then + configs=$(ls) +else + configs=$@ +fi + +cd ../../../coreboot/ +for config in $configs; do + printf "Updating config for $config\n" + sleep 5 + + make menuconfig + mv .config ../resources/libreboot/config/$config/config +done + +cd ../ |