You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

17 lines
406 B

#!/bin/bash
make busybox-update-config
make linux-update-config
make savedefconfig
for fconf in ../builddir/configs/*_defconfig; do
fgrep -q BR2_DEFCONFIG "$fconf"
if [ $? -gt 0 ]; then
echo 'BR2_DEFCONFIG="$(BR2_EXTERNAL)/configs/'${fconf##*/}'"' >> "$fconf"
#echo 'BR2_DEFCONFIG="$(BR2_EXTERNAL)/configs/coreboot_defconfig"' >> ../builddir/configs/coreboot_defconfig
fi
done
echo 'Saved!'
echo