diff --git a/pmb/config/__init__.py b/pmb/config/__init__.py index fd4ffeea..73cc2fe0 100644 --- a/pmb/config/__init__.py +++ b/pmb/config/__init__.py @@ -66,6 +66,7 @@ defaults = { "config": os.path.expanduser("~") + "/.config/pmbootstrap.cfg", "device": "samsung-i9100", "extra_packages": "none", + "fork_alpine": False, "hostname": "", # A higher value is typically desired, but this can lead to VERY long open # times on slower devices due to host systems being MUCH faster than the diff --git a/test/test_aportgen_device_wizard.py b/test/test_aportgen_device_wizard.py index 03125a30..1e0366a1 100644 --- a/test/test_aportgen_device_wizard.py +++ b/test/test_aportgen_device_wizard.py @@ -35,7 +35,6 @@ def args(tmpdir, request): sys.argv = ["pmbootstrap.py", "build", "-i", "device-testsuite-testdevice"] args = pmb.parse.arguments() args.log = args.work + "/log_testsuite.txt" - args.fork_alpine = False pmb.helpers.logging.init(args) request.addfinalizer(args.logfd.close)