Skip to content
Snippets Groups Projects
Commit 85f83c74 authored by Seblu's avatar Seblu
Browse files

Add kernel config update helper

parent 89b93d7b
No related branches found
No related tags found
No related merge requests found
#!/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
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment