From aae5bc4fc5736998212d06eb82efa81e843ad6ab Mon Sep 17 00:00:00 2001 From: Matt DeVillier Date: Thu, 14 Jul 2016 20:26:00 -0500 Subject: [PATCH] dual-boot/GaOS: use same size partition for kern-C/sda6 for both LE and GaOS Signed-off-by: Matt DeVillier --- kodi.sh | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/kodi.sh b/kodi.sh index 75a3af9..239495a 100644 --- a/kodi.sh +++ b/kodi.sh @@ -351,8 +351,8 @@ if [ "$ckern_size" = "1" -o "$croot_size" = "1" ]; then #calculate sector size for rootc rootc_size=$(($ubuntu_size*1024*1024*2)) - #kernc is always 16mb - kernc_size=32768 + #kernc is always 512mb + kernc_size=1024000 #new stateful size with rootc and kernc subtracted from original stateful_size=$(($state_size - $rootc_size - $kernc_size))