klogd -c1 # TODO: This should be even earlier. Can it go on the kernel command line? mountroot() { openvt -c 13 sh samizdat_install_udev_rules mkfifo "$MENUFIFO" sh /scripts/local-top/nbd & # I guess this isn't getting called otherwise? bootmenu bootwait root-mounted chvt 1 patchroot } patchroot() { echo -n 'Patching root... ' >&2 sed -i -e 's/^root:x:/root::/' /root/etc/passwd cp /patchroot/* /root/root/ echo 'done.' >&2 } samizdat_install_udev_rules() { mkdir -p /etc/udev/rules.d echo 'ACTION=="add", SUBSYSTEM=="block", RUN+="/bin/grok-block $env{DEVNAME}"' \ > /etc/udev/rules.d/z00_blockdev_mountroot.rules # 'udevadm trigger --action=add' does not work here; need to restard udevd # first. not sure why samizdat_restart_udev udevadm trigger -s block --action add } samizdat_restart_udev() { mkdir -p /var/log killall systemd-udevd 2>/dev/null /lib/systemd/systemd-udevd --resolve-names=never --debug >/var/log/udevd-systemd.log 2>&1 & udevadm hwdb --update # rule is not executed by 'udevadm trigger' otherwise. not sure why } # TODO: do not duplicate these functions from common.sh export MENUFIFO=/menu.fifo addmenu() { cat <>$MENUFIFO # mind the tabs setItem "$1" "dummy" "$2" "$3" END } menutitle() { printf 'setTitle "%s"\n' "$1" >>$MENUFIFO printf 'setWelcomeText "%s"\n' "$2" >>$MENUFIFO } bootmenu() { OpenVT -f -c 7 -- dynmenu "$MENUFIFO" && chvt 7 && menutitle 'Samizdat\n\nAs the Internet develops there are\ntransitions in the management arrangements.\nThe time has come to take\na small step in one of those transitions.' 'Choose an installation target.' # menutitle 'Samizdat\nfreedom from surveillance\nno trusted authorities' 'Choose an installation target.' addmenu "ramdisk" "[ Boot to RAM without installing anything ]" "menu-select boot-ram" } bootwait() { mkdir -p /bootwait local i=$#; while [ $i -gt 0 ]; do i=$((i-1)) local f="$1"; shift; set -- "$@" "/bootwait/$f" done wait_for_files "$@" }