blob: 061757519cf930deca160305497b7904c35613da [file] [log] [blame]
Adriana Kobylak86164b22020-06-03 16:22:42 -05001#!/bin/sh
2
3# Get the value of the root env variable found in /proc/cmdline
4get_root() {
5 local root="$(cat /proc/cmdline)"
6 root="${root##* root=PARTLABEL=}"
7 root="${root%% *}"
8 [ "${root}" != "" ] && echo "${root}"
9}
10
11fslist="proc sys dev run"
12rodir=/mnt/rofs
13cd /
14mkdir -p $fslist
15mount dev dev -tdevtmpfs
16mount sys sys -tsysfs
17mount proc proc -tproc
18mount tmpfs run -t tmpfs -o mode=755,nodev
19
Adriana Kobylakb7dccc12020-08-17 12:40:23 -050020# Wait up to 5s for the mmc device to appear. Continue even if the count is
21# exceeded. A failure will be caught later like in the mount command.
22mmcdev="/dev/mmcblk0"
23count=0
24while [ $count -lt 5 ]; do
25 if [ -e "${mmcdev}" ]; then
26 break
27 fi
28 sleep 1
29 count=$((count + 1))
30done
31
Adriana Kobylak86164b22020-06-03 16:22:42 -050032# Move the secondary GPT to the end of the device if needed. Look for the GPT
33# header signature "EFI PART" located 512 bytes from the end of the device.
Adriana Kobylakb7dccc12020-08-17 12:40:23 -050034magic=$(tail -c 512 "${mmcdev}" | hexdump -C -n 8 | grep "EFI PART")
Adriana Kobylak86164b22020-06-03 16:22:42 -050035if test -z "${magic}"; then
Adriana Kobylakb7dccc12020-08-17 12:40:23 -050036 sgdisk -e "${mmcdev}"
Adriana Kobylak86164b22020-06-03 16:22:42 -050037 partprobe
38fi
39
40# There eMMC GPT labels for the rootfs are rofs-a and rofs-b, and the label for
41# the read-write partition is rwfs. Run udev to make the partition labels show
42# up. Mounting by label allows for partition numbers to change if needed.
43udevd --daemon
44udevadm trigger --type=devices --action=add
45udevadm settle --timeout=10
46
47mkdir -p $rodir
48if ! mount /dev/disk/by-partlabel/"$(get_root)" $rodir -t ext4 -o ro; then
49 /bin/sh
50fi
Adriana Kobylakc3d69582020-08-24 15:20:04 -050051
52rwfsdev="/dev/disk/by-partlabel/rwfs"
53fsck.ext4 -p "${rwfsdev}"
54if ! mount "${rwfsdev}" $rodir/var -t ext4 -o rw; then
Adriana Kobylak86164b22020-06-03 16:22:42 -050055 /bin/sh
56fi
57
58rm -rf $rodir/var/persist/etc-work/
59mkdir -p $rodir/var/persist/etc $rodir/var/persist/etc-work $rodir/var/persist/home/root
60mount overlay $rodir/etc -t overlay -o lowerdir=$rodir/etc,upperdir=$rodir/var/persist/etc,workdir=$rodir/var/persist/etc-work
61
62for f in $fslist; do
63 mount --move $f $rodir/$f
64done
65
66exec chroot $rodir /sbin/init