diff options
author | Tomasz Maciej Nowak <tomek_n@o2.pl> | 2018-01-24 15:32:58 +0100 |
---|---|---|
committer | Hauke Mehrtens <hauke@hauke-m.de> | 2018-03-02 21:33:07 +0100 |
commit | e10ea566cc8fcf51ef0bceff05db374fae8f7e12 (patch) | |
tree | 793ba1062a75e7e4f78a55a669c618b94ba49bc9 /target/linux/mvebu/image/Makefile | |
parent | 652a13e920af843908b150a7927272ab1a09b3ce (diff) | |
download | upstream-e10ea566cc8fcf51ef0bceff05db374fae8f7e12.tar.gz upstream-e10ea566cc8fcf51ef0bceff05db374fae8f7e12.tar.bz2 upstream-e10ea566cc8fcf51ef0bceff05db374fae8f7e12.zip |
mvebu: fix partition type and signature for sdcard
Previously the partition signature was assigned from provided type. Now
both are corrected wherein signature is always generated from
SOURCE_DATE_EPOCH. With that the root file system can be identified
by PARTUUID string, without relying on static declaration of device node.
This commit also does some cosmetics, removing trailing whitespace and
replacing spaces with tab.
Signed-off-by: Tomasz Maciej Nowak <tomek_n@o2.pl>
Diffstat (limited to 'target/linux/mvebu/image/Makefile')
-rw-r--r-- | target/linux/mvebu/image/Makefile | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/target/linux/mvebu/image/Makefile b/target/linux/mvebu/image/Makefile index 45ef45abdb..a78269bf1f 100644 --- a/target/linux/mvebu/image/Makefile +++ b/target/linux/mvebu/image/Makefile @@ -13,8 +13,10 @@ include $(INCLUDE_DIR)/image.mk KERNEL_LOADADDR := 0x00008000 +SIGNATURE:=$(shell printf "%.8s" $(SOURCE_DATE_EPOCH)) + define Build/dtb - $(call Image/BuildDTB,$(DTS_DIR)/$(DEVICE_DTS).dts,$@.dtb) + $(call Image/BuildDTB,$(DTS_DIR)/$(DEVICE_DTS).dts,$@.dtb) endef # SD-Card Images: @@ -43,6 +45,7 @@ endef define Build/sdcard-img ROOTFS_SIZE=$$(( $(CONFIG_TARGET_ROOTFS_PARTSIZE) * 1024 * 2 )); \ + SIGNATURE="$(SIGNATURE)" \ ./gen_mvebu_sdcard_img.sh $@ \ "$(STAGING_DIR_IMAGE)/clearfog-u-boot-spl.kwb" \ c 32768 $@.boot \ |