Added description tags.
This commit is contained in:
parent
49223c72b3
commit
6dfd820f43
|
|
@ -10,7 +10,6 @@ Creates the btrfs subvolumes.
|
|||
# Functions
|
||||
* [mountallsubvol()](#mountallsubvol)
|
||||
* [subvolumesetup()](#subvolumesetup)
|
||||
* [formatandmount()](#formatandmount)
|
||||
|
||||
|
||||
## mountallsubvol()
|
||||
|
|
@ -20,7 +19,3 @@ Mount all btrfs subvolumes after root has been mounted.
|
|||
## subvolumesetup()
|
||||
|
||||
BTRFS subvolulme creation and mounting.
|
||||
|
||||
## formatandmount()
|
||||
|
||||
Format and start mounting partitions.
|
||||
|
|
|
|||
|
|
@ -16,7 +16,6 @@ This script will ask users about their prefrences like disk, file system, timezo
|
|||
* [timezone()](#timezone)
|
||||
* [keymap()](#keymap)
|
||||
* [drivessd()](#drivessd)
|
||||
* [manualpart()](#manualpart)
|
||||
* [diskpart()](#diskpart)
|
||||
* [userinfo()](#userinfo)
|
||||
* [aurhelper()](#aurhelper)
|
||||
|
|
@ -76,13 +75,9 @@ Set user's keyboard mapping.
|
|||
|
||||
Choose whether drive is SSD or not.
|
||||
|
||||
## manualpart()
|
||||
|
||||
Select a Disk to open in cfdisk to create or modify partitions manually.
|
||||
|
||||
## diskpart()
|
||||
|
||||
Disk drive or partition selection to which Arch will be installed.
|
||||
Disk selection for drive to be used with installation.
|
||||
|
||||
## userinfo()
|
||||
|
||||
|
|
|
|||
|
|
@ -83,6 +83,7 @@ subvolumesetup () {
|
|||
mountallsubvol
|
||||
}
|
||||
|
||||
# @description Format and start mounting partitions.
|
||||
formatandmount () {
|
||||
if [[ "${FS}" == "btrfs" ]]; then
|
||||
mkfs.btrfs -L ROOT ${rootpartition} -f
|
||||
|
|
|
|||
|
|
@ -236,6 +236,7 @@ case ${options[$?]} in
|
|||
esac
|
||||
}
|
||||
|
||||
# @description Select a Disk to open in cfdisk to create or modify partitions manually.
|
||||
manualpart () {
|
||||
clear
|
||||
echo -ne "
|
||||
|
|
@ -256,7 +257,7 @@ manualpart () {
|
|||
cfdisk ${options[$?]%|*}
|
||||
}
|
||||
|
||||
# @description Disk selection for drive to be used with installation.
|
||||
# @description Disk drive or partition selection to which Arch will be installed.
|
||||
diskpart () {
|
||||
clear
|
||||
echo -ne "
|
||||
|
|
|
|||
Loading…
Reference in New Issue