diff options
author | Rafał Miłecki <rafal@milecki.pl> | 2021-04-06 00:03:31 +0200 |
---|---|---|
committer | Rafał Miłecki <rafal@milecki.pl> | 2021-04-08 13:16:12 +0200 |
commit | d91054a521de18e36ea1ff63ad63170876444dce (patch) | |
tree | 6f8cf0c01a307aab8da4e20854363ad8fd909d2b | |
parent | 6d6fd7f13a0bbe4af3f7cb937b76c4543841a9cc (diff) | |
download | upstream-d91054a521de18e36ea1ff63ad63170876444dce.tar.gz upstream-d91054a521de18e36ea1ff63ad63170876444dce.tar.bz2 upstream-d91054a521de18e36ea1ff63ad63170876444dce.zip |
bcm4908: rename bootfs dummy file to the 1-openwrt
The purpose of that dummy file is to make CFE work properly with OpenWrt
bootfs. CFE for some reason ignores JFFS2 files with ino 0.
Rename it to 1-openwrt so:
1. It's consistent with bcm63xx
2. It's OpenWrt specific so sysupgrade can distinguish it from vendor
images
Signed-off-by: Rafał Miłecki <rafal@milecki.pl>
(cherry picked from commit 880c8b44223c9cbce3dd14da78c33676c6f1a8a6)
-rw-r--r-- | target/linux/bcm4908/image/Makefile | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/target/linux/bcm4908/image/Makefile b/target/linux/bcm4908/image/Makefile index 59284d7b63..c7714ecf59 100644 --- a/target/linux/bcm4908/image/Makefile +++ b/target/linux/bcm4908/image/Makefile @@ -15,7 +15,7 @@ define Build/bcm4908img rm -fr $@-bootfs mkdir -p $@-bootfs cp -r $(DEVICE_NAME)/* $@-bootfs/ - touch $@-bootfs/1-dummy + touch $@-bootfs/1-openwrt cp $(DTS_DIR)/$(firstword $(DEVICE_DTS)).dtb $@-bootfs/94908.dtb cp $(KDIR)/bcm63xx-cfe/$(subst _,$(comma),$(DEVICE_NAME))/cferam.000 $@-bootfs/ cp $(IMAGE_KERNEL) $@-bootfs/vmlinux.lz |