aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJeremy Edwards <jeremyedwards@google.com>2015-02-12 09:00:09 +0000
committerJeremy Edwards <jeremyedwards@google.com>2015-02-12 09:00:09 +0000
commit04d570bc5718ecbac252227d9f7eb4d8ef9d50d2 (patch)
tree45ad03ebaa40b04734f291d6345f7df3f5b6568a
parentf0f7d6405556862932c5d2fa1f95097200585bdc (diff)
downloadcompute-archlinux-image-builder-04d570bc5718ecbac252227d9f7eb4d8ef9d50d2.tar.xz
Remove debugging information
-rwxr-xr-xarch-image.py5
-rwxr-xr-xbuild-arch-on-gce.sh2
2 files changed, 2 insertions, 5 deletions
diff --git a/arch-image.py b/arch-image.py
index 0d07044..e6cbb04 100755
--- a/arch-image.py
+++ b/arch-image.py
@@ -343,10 +343,7 @@ def InstallBootloader(device, uuid, debugmode):
'systemd.log_target=console',
'systemd.journald.forward_to_syslog=yes',
'systemd.journald.forward_to_kmsg=yes',
- 'systemd.journald.forward_to_console=yes',
- 'initcall_debug',
- 'printk.time=y',
- 'init=/usr/lib/systemd/systemd-bootchart',]
+ 'systemd.journald.forward_to_console=yes',]
boot_params = ' '.join(boot_params)
boot_spec = ' APPEND root=UUID=%s rw append %s' % (uuid, boot_params)
utils.ReplaceLine('/boot/syslinux/syslinux.cfg',
diff --git a/build-arch-on-gce.sh b/build-arch-on-gce.sh
index 632586d..3f136b0 100755
--- a/build-arch-on-gce.sh
+++ b/build-arch-on-gce.sh
@@ -19,7 +19,7 @@ INSTANCE_ID=${RANDOM}
INSTANCE_NAME=archbuilder${INSTANCE_ID}
ZONE_NAME=us-central1-f
MACHINE_TYPE=n1-standard-2
-GIT_SOURCE_URI=https://github.com/jeremyje/compute-archlinux-image-builder.git
+GIT_SOURCE_URI=https://github.com/GoogleCloudPlatform/compute-archlinux-image-builder.git
SCRIPT_PARAMS="$*"
function GcloudNotConfiguredHelp() {