blob: d480a63fa6542120d49e3404deb834bf337fcbc8 [file] [log] [blame]
#!/bin/bash
# The following is a synthesis of info in:
#
# http://vmsplice.net/~stefan/stefanha-kernel-recipes-2015.pdf
# http://git.kernel.org/cgit/linux/kernel/git/torvalds/linux.git/tree/README
#
KBASE=../../linux
#APPEND="console=ttyS0"
function die {
echo "$*"
exit 1
}
pushd ..
make || die "failed to make libcap tree"
popd
# Assumes desired make *config (eg. make defconfig) is already done.
pushd $KBASE
pwd
make V=1 all || die "failed to build kernel: $0"
popd
HERE=$(/bin/pwd)
cat > fs.conf <<EOF
file /init test-init.sh 0755 0 0
dir /etc 0755 0 0
file /etc/passwd test-passwd 0444 0 0
dir /lib 0755 0 0
dir /proc 0755 0 0
dir /dev 0755 0 0
dir /sys 0755 0 0
dir /sbin 0755 0 0
file /sbin/busybox /usr/sbin/busybox 0755 0 0
dir /bin 0755 0 0
file /bin/myprompt test-prompt.sh 0755 0 0
file /bin/bash test-bash.sh 0755 0 0
dir /usr 0755 0 0
dir /usr/bin 0755 0 0
dir /root 0755 0 0
file /root/quicktest.sh $HERE/../progs/quicktest.sh 0755 0 0
file /root/setcap $HERE/../progs/setcap 0755 0 0
file /root/getcap $HERE/../progs/getcap 0755 0 0
file /root/capsh $HERE/../progs/capsh 0755 0 0
file /root/getpcaps $HERE/../progs/getpcaps 0755 0 0
EOF
COMMANDS="ls ln cp dmesg id pwd mkdir rmdir cat rm sh mount umount chmod less vi"
for f in $COMMANDS; do
echo slink /bin/$f /sbin/busybox 0755 0 0 >> fs.conf
done
UCOMMANDS="id cut"
for f in $UCOMMANDS; do
echo slink /usr/bin/$f /sbin/busybox 0755 0 0 >> fs.conf
done
$KBASE/usr/gen_init_cpio fs.conf | gzip -9 > initramfs.img
KERNEL=$KBASE/arch/x86_64/boot/bzImage
qemu-system-$(uname -m) -m 1024 \
-kernel $KERNEL \
-initrd initramfs.img \
-append "$APPEND"