Changeset dcc2c5d in mainline for boot/Makefile.build


Ignore:
Timestamp:
2018-10-12T17:44:35Z (6 years ago)
Author:
Jiří Zárevúcky <zarevucky.jiri@…>
Branches:
lfn, master, serial, ticket/834-toolchain-update, topic/msim-upgrade, topic/simplify-dev-export
Children:
68a0d60
Parents:
d4eba6d
git-author:
Jiří Zárevúcky <zarevucky.jiri@…> (2018-10-12 17:38:51)
git-committer:
Jiří Zárevúcky <zarevucky.jiri@…> (2018-10-12 17:44:35)
Message:

Make bootimage compression optional

Fixes issue #411

File:
1 edited

Legend:

Unmodified
Added
Removed
  • boot/Makefile.build

    rd4eba6d rdcc2c5d  
    6969DEPENDS := $(addsuffix .d,$(basename $(SOURCES)))
    7070
     71ifeq ($(CONFIG_COMPRESSED_INIT),y)
     72        COMPONENTS := $(addsuffix .gz, $(COMPONENTS))
     73endif
     74
    7175all: $(VERSION_DEF) $(COMMON_MAKEFILE) $(COMMON_HEADER) $(CONFIG_MAKEFILE) $(CONFIG_HEADER) $(BOOT_OUTPUT)
    7276
     
    101105        gzip -n -k -f $<
    102106
    103 $(COMPS).tar: $(addsuffix .gz, $(COMPONENTS))
     107$(COMPS).tar: $(COMPONENTS)
    104108        tar --mtime='2032-01-01 00:00:00' --group=0 --owner=0 --no-acls --no-selinux --no-xattrs --format=ustar --transform 's/.*\///g' -cvf $@ $^
    105109
Note: See TracChangeset for help on using the changeset viewer.