summaryrefslogtreecommitdiffstats
path: root/patches/fuel-agent
diff options
context:
space:
mode:
authorAlexandru Avadanii <Alexandru.Avadanii@enea.com>2016-06-10 22:33:00 +0200
committerAlexandru Avadanii <Alexandru.Avadanii@enea.com>2016-06-12 11:27:57 +0000
commit76bab46026741f401ae8501dd458d90182781b1f (patch)
tree038b011e1acdb22bbc44e8b219c83571c682d202 /patches/fuel-agent
parent3d6d13ffb4d44c27837884fcb4be337615acc514 (diff)
Rework: Move xz/gzip switch to post-install.
This is highly unlikely to be upstreamed in any other form than this. Signed-off-by: Alexandru Avadanii <Alexandru.Avadanii@enea.com>
Diffstat (limited to 'patches/fuel-agent')
-rw-r--r--patches/fuel-agent/0008-bootstrap-Use-gzip-instead-of-xz-compression.patch35
1 files changed, 0 insertions, 35 deletions
diff --git a/patches/fuel-agent/0008-bootstrap-Use-gzip-instead-of-xz-compression.patch b/patches/fuel-agent/0008-bootstrap-Use-gzip-instead-of-xz-compression.patch
deleted file mode 100644
index 19176c90..00000000
--- a/patches/fuel-agent/0008-bootstrap-Use-gzip-instead-of-xz-compression.patch
+++ /dev/null
@@ -1,35 +0,0 @@
-From: Alexandru Avadanii <Alexandru.Avadanii@enea.com>
-Date: Wed, 9 Mar 2016 23:02:17 +0100
-Subject: [PATCH] bootstrap: Use gzip instead of xz compression.
-
-bootstrap mksquashfs using qemu-user-static is extremely slow,
-taking up to one hour. gzip, on the other hand, is reasonably fast.
-According to [1], xz is slower, with not much size gain.
-
-[1] https://jonathancarter.org/2015/04/06/squashfs-performance-testing/
----
- contrib/fuel_bootstrap/fuel_bootstrap_cli/fuel_bootstrap/consts.py | 4 ++--
- 1 file changed, 2 insertions(+), 2 deletions(-)
-
-diff --git a/contrib/fuel_bootstrap/fuel_bootstrap_cli/fuel_bootstrap/consts.py b/contrib/fuel_bootstrap/fuel_bootstrap_cli/fuel_bootstrap/consts.py
-index d507156..688197d 100644
---- a/contrib/fuel_bootstrap/fuel_bootstrap_cli/fuel_bootstrap/consts.py
-+++ b/contrib/fuel_bootstrap/fuel_bootstrap_cli/fuel_bootstrap/consts.py
-@@ -24,7 +24,7 @@ COMPRESSED_CONTAINER_FORMAT = "tar.gz"
- UNCOMPRESSED_CONTAINER_FORMAT = "directory"
- ROOTFS = {'name': 'rootfs',
- 'mask': 'rootfs',
-- 'compress_format': 'xz',
-+ 'compress_format': 'gzip',
- 'uri': 'http://127.0.0.1:8080/bootstraps/{uuid}/root.squashfs',
- 'format': 'ext4',
- 'container': 'raw'}
-@@ -34,7 +34,7 @@ BOOTSTRAP_MODULES = [
- 'uri': 'http://127.0.0.1:8080/bootstraps/{uuid}/vmlinuz'},
- {'name': 'initrd',
- 'mask': 'initrd',
-- 'compress_format': 'xz',
-+ 'compress_format': 'gzip',
- 'uri': 'http://127.0.0.1:8080/bootstraps/{uuid}/initrd.img'},
- ROOTFS
- ]