Commit ea6c464c authored by Seblu's avatar Seblu
Browse files

Add kernel config update helper

parent c3226381
Loading
Loading
Loading
Loading

update_config.sh

0 → 100755
+10 −0
Original line number Diff line number Diff line
#!/bin/bash

[[ -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