From d41104e0b9503f3cee7024a9828b4228264b5413 Mon Sep 17 00:00:00 2001 From: pks Date: Sun, 16 May 2021 18:01:05 +0200 Subject: build-and-install script --- scripts/build-and-install | 44 ++++++++++++++++++++++++++++++++++++++++++++ 1 file changed, 44 insertions(+) create mode 100755 scripts/build-and-install (limited to 'scripts') diff --git a/scripts/build-and-install b/scripts/build-and-install new file mode 100755 index 0000000..0bd0314 --- /dev/null +++ b/scripts/build-and-install @@ -0,0 +1,44 @@ +#!/bin/sh + +if [ ! -f .config ]; then + echo "Call from kernel source dir!"; exit +fi + +V=`pwd | ruby -e "puts STDIN.gets.split('/').last.split('-')[1..-1].join '-'"`; +echo "Building Kernel @$V" + +make mrproper +cp -v ../config .config +make -j $(nproc) + +# modules +# FIXME: This will fail when there already exists a directory for version $V +sudo make modules_install +sudo ln -s /lib/modules/$V-* /lib/modules/$V + +# cp to /boot + lilo +sudo cp -v arch/x86/boot/bzImage /boot/kernel +sudo md5sum /boot/kernel > /tmp/kernel.md5 +sudo mv /tmp/kernel.md5 /boot/kernel.md5 +sudo /sbin/lilo + +# /usr/src/linux symlink +sudo rm /usr/src/linux +find . -type d | xargs chmod a+rx +find . -type f | xargs chmod a+r +find . -executable | xargs chmod a+x +sudo ln -s $(pwd) /usr/src/linux + +# tp smapi +cd ~/.local/src/kernel/tp_smapi/ +sudo make HDAPS=0 install KVER=$V KSRC=/home/pks/.local/src/kernel/linux-$V KBUILD=/home/pks/.local/src/kernel/linux-$V +sudo make clean + +# phc intel +cd ~/.local/src/kernel/phc_intel/ +KERNELRELEASE=$V KERNELSRC=../linux-$V make +sudo make install +make clean +sudo depmod + +sudo chown -R pks:pks * .* ~/.local/src/kernel/tp_smapi/ ~/.local/src/kernel/linux-* -- cgit v1.2.3