summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorbill-auger <mr.j.spam.me@gmail.com>2023-08-16 09:27:52 -0400
committerbill-auger <mr.j.spam.me@gmail.com>2023-08-17 20:49:49 -0400
commit33a5eb3311ff935c37d6d1ec8b451c96bee8c531 (patch)
treefc7a6d352e7a548600ac239021b82c1ac68a4d5f
parent2996f9eab6bbe6cd577a9507322579fe9e41610c (diff)
increase minimum filesystem sizes
-rwxr-xr-xsrc/pvmbootstrap.sh8
1 files changed, 4 insertions, 4 deletions
diff --git a/src/pvmbootstrap.sh b/src/pvmbootstrap.sh
index 288d4eb..f1e3189 100755
--- a/src/pvmbootstrap.sh
+++ b/src/pvmbootstrap.sh
@@ -24,14 +24,14 @@
readonly PKG_SET_MIN='minimal'
readonly PKG_SET_STD='standard'
readonly PKG_SET_DEV='devel' ; readonly DEF_PKG_SET=$PKG_SET_STD ;
-readonly MIN_PKGS=('base' ) ; readonly ROOT_MB_MIN=800 ;
-readonly STD_PKGS=('base' 'parabola-base' ) ; readonly ROOT_MB_STD=1000 ;
-readonly DEV_PKGS=('base' 'parabola-base' 'base-devel') ; readonly ROOT_MB_DEV=1250 ;
+readonly MIN_PKGS=('base' ) ; readonly ROOT_MB_MIN=1125 ; # 841 (pacstrap)
+readonly STD_PKGS=('base' 'parabola-base' ) ; readonly ROOT_MB_STD=1250 ; # 898 (pacstrap)
+readonly DEV_PKGS=('base' 'parabola-base' 'base-devel') ; readonly ROOT_MB_DEV=1500 ; # 1163 (pacstrap)
readonly DEF_PKGS=(${STD_PKGS[@]} ) ; readonly DEF_MIN_MB=$ROOT_MB_STD ;
readonly DEF_KERNEL='linux-libre' # ASSERT: must be 'linux-libre', per 'parabola-base'
readonly DEF_MIRROR=https://repo.parabola.nu
readonly DEF_ROOT_MB=32000
-readonly DEF_BOOT_MB=100
+readonly DEF_BOOT_MB=150
readonly DEF_SWAP_MB=0
readonly PKGS_MANDATORY_ALL=( )
readonly PKGS_MANDATORY_armv7h=( haveged net-tools )