summaryrefslogtreecommitdiff
path: root/make
diff options
context:
space:
mode:
Diffstat (limited to 'make')
-rwxr-xr-xmake5
1 files changed, 1 insertions, 4 deletions
diff --git a/make b/make
index 1abf52b..7621a6c 100755
--- a/make
+++ b/make
@@ -3,9 +3,6 @@
[ -n "$compressor" ] || compressor="lz4 --best --favor-decSpeed -l"
#[ -n "$compressor" ] || compressor="xz -c --check=crc32 --x86 --lzma2=preset=9e"
-# for comp_bench
-[ -n "$outfile" ] || outfile=initramfs.img
-
toppid=$$
die() {
fmt=$1
@@ -85,6 +82,6 @@ gen_dir_ents | \
sort -u | \
gen_depfile 3>initramfs.d | \
./gen_init_cpio -t 0 - | \
-$compressor > $outfile
+$compressor > initramfs.img
trap '' EXIT