123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103 |
- #!/bin/busybox sh
- # This is the init script built into the PrawnOS initramfs
- # This file is part of PrawnOS (https://www.prawnos.com)
- # Copyright (c) 2018 Hal Emmerich <hal@halemmerich.com>
- # PrawnOS is free software: you can redistribute it and/or modify
- # it under the terms of the GNU General Public License version 2
- # as published by the Free Software Foundation.
- # PrawnOS is distributed in the hope that it will be useful,
- # but WITHOUT ANY WARRANTY; without even the implied warranty of
- # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
- # GNU General Public License for more details.
- # You should have received a copy of the GNU General Public License
- # along with PrawnOS. If not, see <https://www.gnu.org/licenses/>.
- echo In PrawnOS Init
- #add this to start shell at desired point
- rescue_shell() {
- [ "{$1}" != "debug" ] && echo "Something went wrong. Dropping to a shell." > /dev/tty1
- [ "{$1}" == "debug" ] && echo "Debug flag detected, entering debug shell" > /dev/tty1
- echo "Something went wrong. Dropping to a shell." > /dev/tty1
- exec setsid /bin/sh -c 'exec /bin/sh </dev/tty1 >/dev/tty1 2>&1'
- }
- #used to parse the kernel cmdline
- cmdline() {
- local value
- value=" $(cat /proc/cmdline) "
- value="${value##* ${1}=}"
- value="${value%% *}"
- [ "${value}" != "" ] && echo "${value}"
- }
- #used to get the uuid of the root partiton since findfs isn't in debian busybox-static
- rootpartuuid() {
- local value
- value=$1
- value="${value%/*}"
- value="${value#*=}"
- [ "${value}" != "" ] && echo "${value}"
- }
- # a clever portable shell script to detect occurances of a substring in a string
- # occur <string> <substring> (optional count)
- # if optional count is not provided:
- # returns 1 if substring is not in string
- # returns 0 otherwise
- # if optional count is provided:
- # returns 1 if substring occurs in string < optional count
- # returns 0 otherwise
- occur() while case "$1" in (*"$2"*) set -- \
- "${1#*"$2"}" "$2" "${3:-0}" "$((${4:-0}+1))";;
- (*) return "$((${4:-0}<${3:-1}))";;esac
- do : "${_occur:+$((_occur=$4))}";done
- # mount the bare necesities
- mount -n -t proc proc /proc
- mount -n -t sysfs sysfs /sys
- mount -n -t devtmpfs devtmpfs /dev
- # get the root device, so we can find the boot partiton
- UNPARSED=$(cmdline root)
- ROOT_PARTUUID=$(rootpartuuid $UNPARSED)
- echo ${ROOT_PARTUUID} > /dev/tty1
- BLKID=$(/bin/blkid | grep $ROOT_PARTUUID )
- echo ${BLKID} > /dev/tty1
- #If its an mmcblk device, the kernel partiton will p1. If it is a usb device, the partiton will just be 1
- #Just want everything before the 1
- ROOT_DEV="${BLKID%1:*}"
- echo ${ROOT_DEV} > /dev/tty1
- # label any partition on the system with RESCUESHELL to enter the initramfs rescue shell before mount and root_switch.
- # you can do this with "cgpt add -i 1 -l RESCUESHELL /dev/sda" for example to label the first partiton of a usb drive.
- if [ -n "$(blkid | grep RESCUESHELL)" ]
- then
- rescue_shell debug
- fi
- if [ -n "$(blkid ${ROOT_DEV}2 | grep crypto_LUKS)" ]
- then
- #decrypt and mount the root filesystem, disable kernel log messages to avoid clashing with the prompt
- dmesg -n 2
- echo "Opening encrypted root partition, this will take 30s..."
- cryptsetup --tries 5 luksOpen ${ROOT_DEV}2 luksroot || rescue_shell
- dmesg -n 7
- mount /dev/mapper/luksroot /newroot
- else
- # mount the unencrypted root filesystem
- [ -d "/newroot" ] || mkdir -p /newroot
- mount ${ROOT_DEV}2 /newroot
- fi
- umount /sys
- umount /proc
- #switch to the new rootfs
- exec switch_root /newroot /sbin/init
|