Merge branch 'esp' into 'main'

ESP

See merge request ahoneybun/nyxi-installer!13
This commit is contained in:
Aaron Honeycutt 2022-09-09 16:27:27 +00:00
commit 062f1f9ab5
2 changed files with 3 additions and 2 deletions

View file

@ -50,7 +50,7 @@ The following will happen:
- Clear partition table for `/dev/***`.
- Creates a GPT partition table for `/dev/***`.
- Create a +512M EFI partiton at `/dev/***1`.
- Create a 1GB EFI partiton at `/dev/***1`.
- Create a encrypted LVM at `/dev/***2`.
- Create a swap partition in the LVM and sets it as the same size as the RAM for hibernation if requested.
- Create a root partition in the LVM.

View file

@ -17,10 +17,11 @@ echo g # Create new GPT partition table
echo n # Create new partition (for EFI).
echo # Set default partition number.
echo # Set default first sector.
echo +512M # Set +512M as last sector.
echo +1G # Set +1G as last sector.
echo n # Create new partition (for root).
echo # Set default partition number.
echo # Set default first sector.
echo # Set last sector.
echo n # Create new partition (for swap).
echo # Set default partition number.
echo # Set default first sector.