diff options
author | Kim Hagen <kim.sidney@gmail.com> | 2019-04-15 16:30:35 +0200 |
---|---|---|
committer | Kim Hagen <kim.sidney@gmail.com> | 2019-04-15 16:34:41 +0200 |
commit | 7bf85ec35c9ccde62b066fb410b17a2526c150f6 (patch) | |
tree | 1ccb75633c52534a5ffc45cc8941fcab5776b73e /Makefile | |
parent | d28d36ac3a12e4bb9ce56767d50267801cea650b (diff) | |
download | vyos-build-7bf85ec35c9ccde62b066fb410b17a2526c150f6.tar.gz vyos-build-7bf85ec35c9ccde62b066fb410b17a2526c150f6.zip |
add debug build for GCE
Conflicts:
Makefile
Diffstat (limited to 'Makefile')
-rw-r--r-- | Makefile | 13 |
1 files changed, 13 insertions, 0 deletions
@@ -114,6 +114,19 @@ qcow2: clean prepare cd $(build_dir) @../scripts/build-qcow2-image +.PHONY: GCE-debug +.ONESHELL: +GCE-debug: clean prepare + @set -e + @echo "It's not like I'm building this specially for you or anything!" + mkdir -p build/config/includes.chroot/etc/cloud/cloud.cfg.d + cp tools/cloud-init/GCE/99-debug-user.chroot build/config/hooks/live/ + cp tools/cloud-init/GCE/90_dpkg.cfg build/config/includes.chroot/etc/cloud/cloud.cfg.d/ + cp tools/cloud-init/cloud-init.list.chroot build/config/package-lists/ + cp -f tools/cloud-init/GCE/config.boot.default-debug build/config/includes.chroot/opt/vyatta/etc/config.boot.default + cd $(build_dir) + @../scripts/build-GCE-image + .PHONY: AWS .ONESHELL: AWS: clean prepare |