1
0
mirror of git://git.2f30.org/morpheus.git synced 2024-06-27 13:08:32 +00:00
morpheus/pkgs/kernel
2014-02-28 14:22:25 +02:00

15 lines
350 B
Plaintext

build: crossmusl
v="3.10.32"
url="$mirror/kernel.tar.gz"
cd src
wget -c $url
[ -d linux-$v ] || tar xzf kernel.tar.gz
cd linux-$v
cp $top/stuff/kernel-config .config
#make menuconfig
make oldconfig
make bzImage -j$nprocs || return 1
cp arch/x86/boot/bzImage "$root/boot"
cp .config "$root/boot/bzImage.config"
cp System.map "$root/boot"