Update submodules and configs
This commit is contained in:
committed by
Jeremy Soller
parent
c9e4644aa0
commit
48ffaf156b
16
scripts/reconfig.sh
Executable file
16
scripts/reconfig.sh
Executable file
@@ -0,0 +1,16 @@
|
||||
#!/usr/bin/env bash
|
||||
|
||||
set -e
|
||||
|
||||
rm -rf build
|
||||
for config in models/*/coreboot.config
|
||||
do
|
||||
model="$(basename "$(dirname "$config")")"
|
||||
echo -e "\e[1m$model\e[0m"
|
||||
make -C coreboot distclean
|
||||
cp -v "$config" coreboot/.config
|
||||
make -C coreboot oldconfig
|
||||
cp -v coreboot/.config "$config"
|
||||
done
|
||||
|
||||
echo -e "\e[1mReconfig complete, please commit changes\e[0m"
|
Reference in New Issue
Block a user