From 8c3fea610a663522a48df3a921547c8730eee974 Mon Sep 17 00:00:00 2001 From: probonopd Date: Sat, 3 Dec 2022 06:57:29 +0100 Subject: [PATCH] Added `-b 75% -f 75%` to the `makefs` call in `build.sh` Causing the filesytem image to having sufficient free space, but without adding a significant size increase of the ISO because the filesystem image is compressed https://github.com/helloSystem/hello/issues/413 --- build.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/build.sh b/build.sh index e52c7790..fa51fc4d 100755 --- a/build.sh +++ b/build.sh @@ -458,7 +458,7 @@ developer() uzip() { install -o root -g wheel -m 755 -d "${cdroot}" - ( cd "${uzip}" ; makefs "${cdroot}/rootfs.ufs" ../spec.user ) + ( cd "${uzip}" ; makefs -b 75% -f 75% "${cdroot}/rootfs.ufs" ../spec.user ) mkdir -p "${cdroot}/boot/" if [ $MAJOR -gt 13 ] ; then mkuzip -o "${cdroot}/boot/rootfs.uzip" "${cdroot}/rootfs.ufs"