2026-07-29 14:50:39 +03:00
|
|
|
# ========================================== #
|
|
|
|
|
# Troposphere Build config
|
|
|
|
|
#
|
|
|
|
|
|
2026-07-29 15:14:01 +03:00
|
|
|
# System General
|
|
|
|
|
|
2026-07-29 16:13:29 +03:00
|
|
|
Include_Init_dir = False#Includes a Init configuration with pre set files... Can break some older versions
|
2026-07-29 16:18:04 +03:00
|
|
|
Include_JiboPackageManager = False#Bundle Jibo package manager (Grabs from git)
|
2026-07-29 15:14:01 +03:00
|
|
|
Include_JiboBinaryWrappers = True #Bundle Wrappers for the jibo binaries inside the chroot
|
|
|
|
|
|
|
|
|
|
Troposphere_Splash = "%/splash_0.png" #Set the Troposphere boot splash
|
|
|
|
|
Setup_Init_Entry = True #If you wanna do everything manually leave this off
|
|
|
|
|
Setup_Init_Startup_Entry = True #If you want troposphere to start with the system
|
2026-07-29 14:50:39 +03:00
|
|
|
|
|
|
|
|
|
|
|
|
|
# System patches
|
2026-07-29 15:14:01 +03:00
|
|
|
Include_Faster_Boot_Configs = True #Change with patches to make startup times faster & async!
|
2026-07-29 14:50:39 +03:00
|
|
|
|
|
|
|
|
# Really leave this as is pls
|
|
|
|
|
|
2026-07-29 15:14:01 +03:00
|
|
|
Include_stdlib = True #Installs standard libraries on first boot
|
|
|
|
|
Include_TroposphereLib = True #Bundles Troposphere lib
|
2026-07-29 14:50:39 +03:00
|
|
|
|
|
|
|
|
# Root Mout Endpoints
|
|
|
|
|
Mount_Bind = [
|
|
|
|
|
"dev/pts:STD",
|
|
|
|
|
"tmpfs:ALL",
|
|
|
|
|
"dev/shm:STD",
|
|
|
|
|
"dev:STD",
|
|
|
|
|
|
|
|
|
|
]
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
# Device Cofig:
|
|
|
|
|
Mount_Devices = [
|
|
|
|
|
"tmpfs:ALL"
|
|
|
|
|
]
|
|
|
|
|
|
|
|
|
|
|
2026-07-29 15:14:01 +03:00
|
|
|
# Init.d Files to replace (Under Faster Boot Configs):
|
2026-07-29 14:50:39 +03:00
|
|
|
|
2026-07-29 15:14:01 +03:00
|
|
|
Staged_Init_FBC = [
|
|
|
|
|
"S09wifi-enable",
|
|
|
|
|
"S18udev",
|
|
|
|
|
"S36sshd",
|
|
|
|
|
"rcS"
|
|
|
|
|
]
|
2026-07-29 14:50:39 +03:00
|
|
|
|
2026-07-29 15:14:01 +03:00
|
|
|
if Include_JiboBinaryWrappers:
|
|
|
|
|
Staged_Jibo_Binary_Wrappers = []
|
2026-07-29 14:50:39 +03:00
|
|
|
|