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