pmaports/main/postmarketos-android-recovery-installer/pmos_install
Oliver Smith f468d3ed7e Disable metadata_csum when generating ext4 rootfs (#1367)
Some downstream kernels don't support this, and this recently became
the default in e2fsprogs.
2018-03-28 18:00:18 +00:00

146 lines
4.9 KiB
Text
Executable file

#!/bin/busybox ash
# shellcheck shell=sh
# Copyright 2017 Attila Szollosi
#
# This file is part of postmarketos-android-recovery-installer.
#
# postmarketos-android-recovery-installer is free software: you can redistribute it and/or modify
# it under the terms of the GNU General Public License as published by
# the Free Software Foundation, either version 3 of the License, or
# (at your option) any later version.
#
# postmarketos-android-recovery-installer 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 postmarketos-android-recovery-installer. If not, see <http://www.gnu.org/licenses/>.
exec >> /pmos.log 2>&1
set -ex
/bin/busybox --install /bin
# shellcheck source=pmos_install_functions
. /bin/pmos_install_functions
ui_print " "
ui_print " 8 "
ui_print " 888 "
ui_print " 88888 "
ui_print " 8888888 "
ui_print " 888888888 "
ui_print " 88888888888 "
ui_print " 888888888888 "
ui_print " 8 888888888888 "
ui_print " 888 88888888 "
ui_print " 88888888 88888888 "
ui_print " 88888888 88888888 "
ui_print " 88888888 88888888 "
ui_print " 88888888 88888888 "
ui_print " 88888888 888 "
ui_print " 88888888 8 88888 "
ui_print " 88888888 8888888 "
ui_print " 88888888 88888888 "
ui_print " 88888888888 8888888888888888888888 "
ui_print " 8888888888888 8888888888888888888888 "
ui_print " 8888888888888 888888888888888888888888 "
ui_print "8888888888888 88888888888888888888888888"
ui_print " "
ui_print "postmarketOS recovery installer "
ui_print " "
# Umount and close install partition if mounted/open
mountpoint -q /mnt/pmOS && umount -R /mnt/pmOS
[ -e /dev/mapper/pm_crypt ] && cryptsetup close pm_crypt
ui_print "Symlinking block devices..."
ln -sf /dev/block/* /dev/
ui_print "Extracting partition table..."
extract_partition_table
ui_print "Unmounting /$INSTALL_PARTITION..."
umount_install_partition
ui_print "Creating partition table on $INSTALL_DEVICE..."
# parted returns nonzero even when command executed successfully
partition_install_device || :
ui_print "Creating mountpoint..."
mkdir -p /mnt/pmOS
if [ "$FDE" = "true" ]
then
ui_print "Generating temporary keyfile with random data..."
dd bs=512 count=4 if=/dev/urandom of=/lukskey
ui_print "Initializing LUKS device..."
cryptsetup luksFormat --use-urandom -c "$CIPHER" -q "$ROOT_PARTITION" /lukskey
ui_print "Opening LUKS partition..."
cryptsetup luksOpen -d /lukskey "$ROOT_PARTITION" pm_crypt
ui_print "Formatting LUKS partition..."
mkfs.ext4 -O "^metadata_csum" -L 'pmOS_root' /dev/mapper/pm_crypt
ui_print "Mounting LUKS partition..."
mount -t ext4 -rw /dev/mapper/pm_crypt /mnt/pmOS
else
ui_print "Formatting root partition..."
mkfs.ext4 -O "^metadata_csum" -L 'pmOS_root' "$ROOT_PARTITION"
ui_print "Mounting root partition..."
mount -t ext4 -rw "$ROOT_PARTITION" /mnt/pmOS
fi
ui_print "Formatting pmOS_boot..."
mkfs.ext2 -q -L 'pmOS_boot' "$PMOS_BOOT"
ui_print "Mounting pmOS_boot..."
mkdir /mnt/pmOS/boot
mount -t ext2 -rw "$PMOS_BOOT" /mnt/pmOS/boot || {
ui_print "Failed to format/mount ext2 partition."
ui_print "Trying ext4..."
mkfs.ext4 -O "^metadata_csum" -L 'pmOS_boot' "$PMOS_BOOT"
mount -t ext4 -rw "$PMOS_BOOT" /mnt/pmOS/boot
}
ui_print "Installing rootfs..."
unzip -p pmos.zip rootfs.tar.gz | tar -xz -C /mnt/pmOS
ui_print "Creating home folder..."
mkdir /mnt/pmOS/home
user="$(awk -F ':' '$3 == "1000" {print $1}' /mnt/pmOS/etc/passwd)"
cp -a /mnt/pmOS/etc/skel /mnt/pmOS/home/"$user"
chown -R 1000 /mnt/pmOS/home/"$user"
ui_print "Configuring apk..."
sed -i '/\/mnt\/pmbootstrap-packages/d' /mnt/pmOS/etc/apk/repositories
# Flash kernel
if [ "$FLASH_KERNEL" = "true" ]
then
if [ "$ISOREC" = "true" ]
then
ui_print "Flashing kernel..."
dd if=/mnt/pmOS/boot/vmlinuz-"$FLAVOR" of="$KERNEL_PARTITION"
ui_print "Flashing initfs..."
gunzip -c /mnt/pmOS/boot/initramfs-"$FLAVOR" | lzop \
> "$INITFS_PARTITION"
else
ui_print "Flashing boot.img..."
dd if=/mnt/pmOS/boot/boot.img-"$FLAVOR" of="$BOOT_PARTITION"
fi
fi
if [ "$FDE" = "true" ]
then
ui_print "Do not forget to add a password to the LUKS partition!"
ui_print "Run the command: pmos_setpw from the terminal/adb shell!"
fi
ui_print "Installation done."