From 8cd75fd7afe47b0a3902b21da5212611b5871129 Mon Sep 17 00:00:00 2001 From: marcsello Date: Mon, 19 Jul 2021 17:29:28 +0200 Subject: [PATCH] Updated build.sh --- build.sh | 14 +++++++++++--- 1 file changed, 11 insertions(+), 3 deletions(-) diff --git a/build.sh b/build.sh index b868ed8..ff17d95 100755 --- a/build.sh +++ b/build.sh @@ -1,8 +1,16 @@ +#!/bin/bash + +# We add all kernel modules, then use udev to load them dynamically +# we leave 30mb empty space at the end of each partition + +mkdir -p $PWD/output + docker run --rm -it \ + --security-opt seccomp=unconfined \ -v $PWD/output:/output -v $PWD/input:/input \ -e "DEFAULT_KERNEL_MODULES=*" \ - -e "SIZE_ROOT_PART=750M" \ - -e "SIZE_ROOT_FS=700M" \ + -e "SIZE_ROOT_PART=7680M" \ + -e "SIZE_ROOT_FS=7650M" \ -e "DEFAULT_TIMEZONE=Europe/Budapest" \ - builder # <- don't forgetti to build this + builder ${@} # <- don't forgetti to build this