summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAlex Xu (Hello71) <alex_y_xu@yahoo.ca>2020-04-23 21:54:50 -0400
committerAlex Xu (Hello71) <alex_y_xu@yahoo.ca>2020-04-23 21:54:50 -0400
commit48f05811891fedf92c6482bd8b5e3492d42153b6 (patch)
treeb673bfb43fdfdf6d560a1c300158cdcc4ff9b2d4
parent81e371b654765e2929f46d6a563e78012d6c6138 (diff)
downloadminitramfs-48f05811891fedf92c6482bd8b5e3492d42153b6.tar.xz
minitramfs-48f05811891fedf92c6482bd8b5e3492d42153b6.zip
make: re-remove outfile
-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