Skip to content
update_config.sh 212 B
Newer Older
Seblu's avatar
Seblu committed
#!/bin/bash -e
Seblu's avatar
Seblu committed

[[ -e src/linux/.config ]] || makepkg --nobuild --force

(cd src/linux && make oldconfig)

if ! diff -q -s src/linux/.config config.x86_64; then
	cp src/linux/.config config.x86_64
	updpkgsums
fi