Skip to content
This repository has been archived by the owner on Apr 13, 2022. It is now read-only.

Commit

Permalink
Pick config based on arch
Browse files Browse the repository at this point in the history
  • Loading branch information
geirha committed Sep 18, 2012
1 parent ce3a553 commit dc0eb31
Showing 1 changed file with 4 additions and 1 deletion.
5 changes: 4 additions & 1 deletion build-linux
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,10 @@ fi

bzip2 -cd "$kernel" | pax -r &&
dir=${kernel##*/} dir=${dir%.tar.bz2} &&
cp ../kernel.config "$dir/.config" &&
case $(uname -m) in
x86_64) cp ../kernel64.config "$dir/.config" ;;
*) cp ../kernel.config "$dir/.config" ;;
esac || exit
cd "$dir" &&
make silentoldconfig &&
make &&
Expand Down

0 comments on commit dc0eb31

Please sign in to comment.