From c8c08e7ca40c230fb0c23df103109acfe2517c0c Mon Sep 17 00:00:00 2001 From: Alex Dubois Date: Wed, 6 Mar 2013 22:23:49 +0000 Subject: [PATCH] QubesBuilder changed --- QubesBuilder.md | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/QubesBuilder.md b/QubesBuilder.md index 9993f475..7d85d158 100644 --- a/QubesBuilder.md +++ b/QubesBuilder.md @@ -33,16 +33,16 @@ The build system is configured via builder.conf file -- one should copy the atta cp builder.conf.default builder.conf # edit the builder.conf file and set the following variables: # (make sure to leave no spaces around '=' sign!) -# NO_SIGN="1" +NO_SIGN=1 # As time of writing this, the default for Qubes 1 VMs is fc15, # but latest supported is fc17, so switch to newer one -DISTS_VM="fc17" +DISTS_VM=fc17 # As time of writing this, the default for Qubes 2 Dom0 is fc18 # and VMs is fc18 so if you want to build Qubes 2 -DIST_DOM0="fc18" -DISTS_VM="fc18" +DIST_DOM0=fc18 +DISTS_VM=fc18 ``` One additional useful requirement is that 'sudo root' work without any prompt, which is default on most distros (e.g. 'sudo bash' brings you the root shell without asking for any password). This is important as the builder needs to switch to root and then back to user several times during the build process.