Displaying 2 results from an estimated 2 matches for "164e146".
Did you mean:
1649146
2017 Jul 10
7
[PATCH 0/5] various improvements for make-template.mk
Hi,
this series improves the generation of Debian templates, automating
basically almost all the steps needed.
Also, it fixes the generation of aarch64 images with NVRAM, which is
currently removed too soon, and thus not saved and compressed.
Thanks,
Pino Toscano (5):
builder: templates: update Debian preseed from Stretch
builder: templates: generalize debian location
builder: templates:
2017 Jul 10
0
[PATCH 5/5] builder: templates: pass empty proxy to d-i when not set
...proxy set, pass an empty string to the Debian
Installer. This way, the installer will not ask for a proxy.
---
builder/templates/make-template.ml | 6 +++++-
1 file changed, 5 insertions(+), 1 deletion(-)
diff --git a/builder/templates/make-template.ml b/builder/templates/make-template.ml
index 164e146..fe9a44f 100755
--- a/builder/templates/make-template.ml
+++ b/builder/templates/make-template.ml
@@ -726,7 +726,11 @@ and make_virt_install_command os arch ks tmpname tmpout tmpefivars location
let proxy =
let p = try Some (Sys.getenv "http_proxy") with Not_found -> None in...