diff --git a/DevTools/BuildConfig.py b/DevTools/BuildConfig.py index a393d65..be64e5b 100644 --- a/DevTools/BuildConfig.py +++ b/DevTools/BuildConfig.py @@ -5,7 +5,7 @@ # System General Include_Init_dir = False#Includes a Init configuration with pre set files... Can break some older versions -Include_JiboPackageManager = True #Bundle Jibo package manager (Grabs from git) +Include_JiboPackageManager = False#Bundle Jibo package manager (Grabs from git) Include_JiboBinaryWrappers = True #Bundle Wrappers for the jibo binaries inside the chroot Troposphere_Splash = "%/splash_0.png" #Set the Troposphere boot splash diff --git a/DevTools/Build_Project.py b/DevTools/Build_Project.py index 26c8ed1..db2aa55 100644 --- a/DevTools/Build_Project.py +++ b/DevTools/Build_Project.py @@ -169,6 +169,8 @@ def compress_directory( # Install Functions +def git_pull_jibo_wrappers(): + sll.warn("func git_pull_jibo_wrappers NEEDS to be implemented!") def add_startup_command(command): @@ -245,7 +247,7 @@ bundle_dualroot() sll.log("Continuing from BuildConfig ...") if BuildConfig.Include_Init_dir: copy_init_dir() if BuildConfig.Include_JiboPackageManager: git_pull_jpm() - +if BuildConfig.Include_JiboBinaryWrappers: git_pull_jibo_wrappers()