add files

This commit is contained in:
illiliti 2020-01-05 21:01:39 +03:00
parent 0f2a5d5adc
commit d12054059d
4 changed files with 169 additions and 0 deletions

BIN
busybox Executable file

Binary file not shown.

45
config Normal file
View File

@ -0,0 +1,45 @@
#
# configuration
#
# parse fstab
#use_fstab=0
# root fs
root="/dev/sda1"
# root fs type
rootfstype="ext4"
# root fs mount options
rootflags=""
# drivers
drivers="crc32c_generic libcrc32c ext4 virtio-scsi virtio-pci sd-mod"
# binaries
#binaries="sh findfs mount switch_root modprobe umount busybox.static"
# LVM support
#use_lvm=0
# LVM include config
#use_lvmconf=0
# LVM issue_discards
#lvm_discard=0
# LUKS support
#use_luks=0
# parse crypttab
#use_crypttab=0
# LUKS header
#luks_header=/path/to/header
# LUKS keyfile
#luks_keyfile=/path/to/keyfile
# LUKS allow_discards
#luks_discard=0

75
generate Executable file
View File

@ -0,0 +1,75 @@
#!/bin/sh -x
#
# tiny initramfs generation tool
# check root
if [ "$(id -u)" != 0 ]; then
echo "must be run as root!"
exit 1
fi
# check files
[ -f ./config ] && . ./config || ( echo "config doesn't exists";exit 1 )
[ -x ./busybox ] && ldd ./busybox | grep -q "not a dynamic executable" || ( echo "busybox doesn't exists or dynamically linked. please download or/and build static busybox";exit 1 )
[ -f ./init ] || ( echo "init doesn't exists";exit 1 )
# variables
tmpdir="$(mktemp -d /tmp/initramfs.XXXXXXXX)"
kernel="$(uname -r)"
moddir="/lib/modules"
# structure
for d in bin dev etc lib/modules mnt/root proc root sys; do
mkdir -p "$tmpdir/$d"
done
#ln -rs "$tmpdir/usr/lib" "$tmpdir/lib"
#ln -rs "$tmpdir/usr/lib" "$tmpdir/lib64"
#ln -rs "$tmpdir/usr/bin" "$tmpdir/bin"
# TODO parse fstab | parse crypttab
#while [ "$use_fstab" -eq 1 ] && read fs dir type opts; do thing; done < /etc/fstab
# TODO rewrite drivers installing | handle $additional_drivers
# install drivers
find "$moddir/$kernel/kernel/drivers/virtio" "$moddir/$kernel/kernel/arch" "$moddir/$kernel/kernel/crypto" "$moddir/$kernel/kernel/fs" "$moddir/$kernel/kernel/lib" "$moddir/$kernel/kernel/drivers/block" "$moddir/$kernel/kernel/drivers/ata" "$moddir/$kernel/kernel/drivers/md" "$moddir/$kernel/kernel/drivers/scsi" "$moddir/$kernel/kernel/drivers/usb/storage" "$moddir/$kernel/kernel/drivers/usb/host" -type f -exec cp --parents "{}" "$tmpdir" ";"
cp "$moddir/$kernel/modules.builtin" "$moddir/$kernel/modules.order" "$tmpdir/$moddir/$kernel"
# temporary workaround
./busybox depmod -b "$tmpdir" "$kernel"
# TODO rewrite binaries installing | handle $additional_binaries
# install binaries
#for b in $(echo "$binaries"); do
#mkdir -p "$tmpdir/usr/bin"
#mkdir -p "$tmpdir/usr/lib"
#cp -n "/lib/ld-linux-x86-64.so.2" "$tmpdir/usr/lib" && strip -s "$tmpdir/usr/lib/ld-linux-x86-64.so.2"
#cp "$(which $b)" "$tmpdir/usr/bin"
#ldd "$(which $b)" | grep '=> /' | awk '{print $3}' | xargs -I '{}' cp -n '{}' "$tmpdir/usr/lib"
#done
# install files
cp ./init "$tmpdir/init" && chmod +x "$tmpdir/init"
cp ./busybox "$tmpdir/bin/busybox" && chmod +x "$tmpdir/bin/busybox"
cat <<EOF > "$tmpdir/config"
root="$root"
rootfstype="$rootfstype"
rootflags="$rootflags"
drivers="$drivers"
#use_lvm="$use_lvm"
#lvm_discard="$lvm_discard"
#use_luks="$use_luks"
#luks_header="$luks_header"
#luks_keyfile="$luks_keyfile"
#luks_discard="$luks_discard"
EOF
# packing
if ! ( cd "$tmpdir" && find . | cpio --create --verbose --format=newc | gzip --best ) > "./initramfs-$kernel.img.gz"; then
echo "failed"
exit 1
fi
rm -rf "$tmpdir"
echo "done! check out initramfs-$kernel.img.gz"

49
init Normal file
View File

@ -0,0 +1,49 @@
#!/bin/busybox sh
# debugging
set -x
# install busybox
/bin/busybox --install -s /bin
panic() { echo "bruh moment :(" && sh; }
# silence is golden
#echo 0 > /proc/sys/kernel/printk
# check config
[ -f /config ] && . /config || panic
# mount pseudofs's
mount -t proc none /proc
mount -t sysfs none /sys
mount -t devtmpfs none /dev
# setup mdev
#echo "/bin/mdev" >/proc/sys/kernel/hotplug
#mdev -s
# TODO parse /proc/cmdline
# load drivers
for d in $(echo "$drivers"); do
modprobe "$d"
done
# find rootfs
# TODO busybox findfs doesn't support PART{UUID,LABEL}.
root="$(findfs $root)" || panic
[ -n "$rootflags" ] && mountargs="$rootflags"
[ -n "$rootfstype" ] && mountargs="$mountargs -t $rootfstype"
# mount rootfs
mount $mountargs "$root" "/mnt/root" || panic
# clean up
umount "/dev"
umount "/sys"
umount "/proc"
# boot system
echo SUCCESS
exec switch_root "/mnt/root" "/sbin/init"