# Create loop devices in build environment.
#use_loop_devices = true
-# Use private network.
-# Setting this to true will result in the build
-# chroot having its own network - i.e. no network connection
-# to the outside world.
-#private_network = false
-
[ccache]
# Turn on compression to get more files into the cache.
#compress = true
"enable_loop_devices" : self.config.get_bool("builder", "use_loop_devices", True),
"enable_ccache" : self.config.get_bool("builder", "use_ccache", True),
"buildroot_tmpfs" : self.config.get_bool("builder", "use_tmpfs", False),
- "private_network" : self.config.get_bool("builder", "private_network", False),
}
# Get ccache settings.
# Run the transaction
transaction.run()
- def build(self, package, private_network=True, shell=True):
+ def build(self, package, shell=True):
# Install build environment
packages = [
"@Build",