From b38ef1b0bd22ef016a29bc1e7cd4de9469c26fff Mon Sep 17 00:00:00 2001 From: Kevin Date: Wed, 29 Jul 2026 14:50:39 +0300 Subject: [PATCH] Build config import --- DevTools/BuildConfig.py | 35 +++++++++++++++++++++++++++++++++++ DevTools/Build_Project.py | 3 ++- 2 files changed, 37 insertions(+), 1 deletion(-) create mode 100644 DevTools/BuildConfig.py diff --git a/DevTools/BuildConfig.py b/DevTools/BuildConfig.py new file mode 100644 index 0000000..c9c1e57 --- /dev/null +++ b/DevTools/BuildConfig.py @@ -0,0 +1,35 @@ +# ========================================== # +# Troposphere Build config +# + +# System Files + +Include_Init_dir = True + +# System patches +Include_Faster_Boot_Configs = True + +# Really leave this as is pls + +Include_stdlib = True +Include_TroposphereLib = True + +# Root Mout Endpoints +Mount_Bind = [ + "dev/pts:STD", + "tmpfs:ALL", + "dev/shm:STD", + "dev:STD", + + ] + + +# Device Cofig: +Mount_Devices = [ + "tmpfs:ALL" + ] + + + + + diff --git a/DevTools/Build_Project.py b/DevTools/Build_Project.py index 563596d..ec9d681 100644 --- a/DevTools/Build_Project.py +++ b/DevTools/Build_Project.py @@ -5,6 +5,7 @@ import os import shutil import TreeLib import tarfile +import BuildConfig @@ -141,7 +142,7 @@ sll.log(f"Creating output dump -> {OUTPUT_DIR}") sll.log("Checking required source tree") bundle_dualroot() - +sll.log("Grabbing Config")