Implement partitioning using a function
This commit is contained in:
parent
dea9095573
commit
87a25ce378
2 changed files with 30 additions and 29 deletions
|
@ -1,4 +1,5 @@
|
|||
#!/bin/bash
|
||||
function dualbootPartition() {
|
||||
{
|
||||
# Delete placeholders for swap and Linux partition
|
||||
echo "d";
|
||||
|
@ -29,3 +30,4 @@
|
|||
|
||||
echo "w";
|
||||
} | fdisk "$OS_DISK";
|
||||
}
|
||||
|
|
|
@ -1,5 +1,6 @@
|
|||
#!/bin/bash -e
|
||||
pushd "${BASH_SOURCE%/*}" > /dev/null;
|
||||
. "./partition.sh";
|
||||
|
||||
extraMounts()
|
||||
{
|
||||
|
@ -8,9 +9,7 @@ extraMounts()
|
|||
}
|
||||
|
||||
function initializePartitions() {
|
||||
pushd "${BASH_SOURCE%/*}" > /dev/null;
|
||||
. "./partition.sh";
|
||||
popd > /dev/null;
|
||||
dualbootPartition;
|
||||
}
|
||||
|
||||
SKIP_FORMAT_EFI=1 \
|
||||
|
|
Loading…
Reference in a new issue