HoloISO f92dbd6809 (snapshot C1) 20220522_1632

This commit is contained in:
bhaiest 2022-05-22 16:33:10 +03:00
parent 7b6bd65989
commit e676bfd1cc
2 changed files with 7 additions and 4 deletions

View File

@ -38,7 +38,7 @@ This project attempts to bring the Steam Deck's Holo OS into a generic, installa
- Intel GPUs/iGPUs require a Gamescope and MESA downgrade in order to boot into Steam Deck session.
> Choose your GPU type while installing HoloISO. If you encounter any issues, reboot to recovery mode, type `recoveryinit` in and install required packages.
> Choose your GPU type while installing HoloISO. If you encounter any issues, reboot to recovery mode, type `recoveryinit`, connect to network using `nmtui` and install required packages.
Installation process:
-

View File

@ -71,15 +71,18 @@ base_os_install() {
parted ${DEVICE} set 1 boot on
parted ${DEVICE} set 1 esp on
parted ${DEVICE} mkpart primary btrfs 256M 24G
parted ${DEVICE} mkpart primary ext4 24G 100%
parted ${DEVICE} mkpart primary ext4 24G 29G
parted ${DEVICE} mkpart primary ext4 29G 100%
root_partition="${INSTALLDEVICE}2"
mkfs -t vfat ${INSTALLDEVICE}1
fatlabel ${INSTALLDEVICE}1 HOLOEFI
mkfs -t btrfs -f ${root_partition}
mkfs -t ext4 ${INSTALLDEVICE}3
home_partition="${INSTALLDEVICE}3"
mkfs -t ext4 ${INSTALLDEVICE}4
home_partition="${INSTALLDEVICE}4"
btrfs filesystem label ${root_partition} holo-root
e2label "${INSTALLDEVICE}3" holo-home
e2label "${INSTALLDEVICE}3" holo-recovery
e2label "${INSTALLDEVICE}4" holo-home
echo "\nPartitioning complete, mounting and pacstrapping..."
echo "${UCODE_INSTALL_MSG}"