[openwrt/openwrt] at91: create device specific sdcard images
LEDE Commits
lede-commits at lists.infradead.org
Thu Jan 11 12:49:52 PST 2018
hauke pushed a commit to openwrt/openwrt.git, branch master:
https://git.lede-project.org/31fca075c7e06153339449ba974a99cfa2f2d747
commit 31fca075c7e06153339449ba974a99cfa2f2d747
Author: Hauke Mehrtens <hauke at hauke-m.de>
AuthorDate: Mon Jan 8 23:58:40 2018 +0100
at91: create device specific sdcard images
Without this patch one sdcard image with the following name is created
for all devices:
openwrt-at91-sama5--sdcard.img.gz
This makes the build system create device specific versions like:
openwrt-at91-sama5-at91-sama5d2_xplained-sdcard.img.gz
Signed-off-by: Hauke Mehrtens <hauke at hauke-m.de>
---
target/linux/at91/image/sama5.mk | 8 ++++----
1 file changed, 4 insertions(+), 4 deletions(-)
diff --git a/target/linux/at91/image/sama5.mk b/target/linux/at91/image/sama5.mk
index d33a398..b251d71 100644
--- a/target/linux/at91/image/sama5.mk
+++ b/target/linux/at91/image/sama5.mk
@@ -20,16 +20,16 @@ define Build/at91-sdcard
mcopy -i $@.boot $(BIN_DIR)/BOOT.bin ::BOOT.bin;)
./gen_at91_sdcard_img.sh \
- $(dir $@)$(IMG_PREFIX)-$(PROFILE_SANITIZED)-sdcard.img \
+ $(dir $@)$(IMG_PREFIX)-$(DEVICE_NAME)-sdcard.img \
$@.boot \
$(KDIR)/root.ext4 \
$(AT91_SD_BOOT_PARTSIZE) \
$(CONFIG_TARGET_ROOTFS_PARTSIZE)
- gzip -nc9 $(dir $@)$(IMG_PREFIX)-$(PROFILE_SANITIZED)-sdcard.img \
- > $(dir $@)$(IMG_PREFIX)-$(PROFILE_SANITIZED)-sdcard.img.gz
+ gzip -nc9 $(dir $@)$(IMG_PREFIX)-$(DEVICE_NAME)-sdcard.img \
+ > $(dir $@)$(IMG_PREFIX)-$(DEVICE_NAME)-sdcard.img.gz
- $(CP) $(dir $@)$(IMG_PREFIX)-$(PROFILE_SANITIZED)-sdcard.img.gz \
+ $(CP) $(dir $@)$(IMG_PREFIX)-$(DEVICE_NAME)-sdcard.img.gz \
$(BIN_DIR)/
rm -f $(BIN_DIR)/BOOT.bin
More information about the lede-commits
mailing list