Sophie

Sophie

distrib > Mageia > 7 > i586 > media > core-updates-src > by-pkgid > 756cec81f2415651b9b72345f711e486 > files > 61

kernel-5.5.6-2.mga7.src.rpm

# (tmb) Simple defconfig updater
for arch in x86_64 i386 arm64 arm; do
    for config in defconfig-$arch-*; do
	#read -p "updating config: $config"
	mv $config .config
	make oldconfig ARCH=$arch
	mv .config $config
    done
done