Sophie

Sophie

distrib > Mageia > 7 > armv7hl > by-pkgid > 5e4dee1bb767614ac7a93e8454dde6f0 > files > 47

kernel-5.6.8-1.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