summaryrefslogtreecommitdiff
path: root/target/linux/rdc/image
diff options
context:
space:
mode:
authorFlorian Fainelli <florian@openwrt.org>2009-11-28 11:33:04 +0000
committerFlorian Fainelli <florian@openwrt.org>2009-11-28 11:33:04 +0000
commitc74364cc38195b5e2d33743055bacf185f154b03 (patch)
treebb850f774ed02ee081c93aad745e1c4404703b70 /target/linux/rdc/image
parent6d2fa1c89648d9492714ca54c394e022af61adf6 (diff)
downloadmtk-20170518-c74364cc38195b5e2d33743055bacf185f154b03.zip
mtk-20170518-c74364cc38195b5e2d33743055bacf185f154b03.tar.gz
mtk-20170518-c74364cc38195b5e2d33743055bacf185f154b03.tar.bz2
add sitecom subtarget after the profiles->subtargets conversion (#6245)
SVN-Revision: 18576
Diffstat (limited to 'target/linux/rdc/image')
-rw-r--r--target/linux/rdc/image/Makefile6
1 files changed, 3 insertions, 3 deletions
diff --git a/target/linux/rdc/image/Makefile b/target/linux/rdc/image/Makefile
index 6f960ac..0de6dbc 100644
--- a/target/linux/rdc/image/Makefile
+++ b/target/linux/rdc/image/Makefile
@@ -34,7 +34,7 @@ define Image/Build/ar525w
$(STAGING_DIR_HOST)/bin/airlink -e -b 1 -j $(shell bash -c 'echo $$[$(3)]') $(KDIR)/bzImage $(KDIR)/root.$(1) $(BIN_DIR)/openwrt-$(BOARD)-$(1)-$(2)-web.img
endef
-define Image/Prepare/wl153/squashfs
+define Image/Prepare/sitecom/squashfs
dd if=/dev/null of=$(KDIR)/root.tmp seek=1 bs=32k
echo -n "0123456789abcdef0123" >> $(KDIR)/root.tmp
cat $(KDIR)/bzImage $(KDIR)/root.squashfs >> $(KDIR)/root.tmp
@@ -44,13 +44,13 @@ define Image/Prepare/wl153/squashfs
$(call add_jffs2_mark,$(KDIR)/root.squashfs)
endef
-define Image/Build/wl153
+define Image/Build/sitecom
echo -ne "\0\0" >> $(KDIR)/bzImage
dd if=$(KDIR)/bzImage of=$(KDIR)/bzImage.tmp bs=4 conv=sync
dd if=$(KDIR)/bzImage.tmp of=$(KDIR)/bzImage bs=1 count=$$$$(perl -we 'print((-s"$(KDIR)/bzImage.tmp")-2)')
perl -we 'while(<>){$$$$i.=$$$$_}print pack"v",-(unpack"%v*",$$$$i)' < $(KDIR)/bzImage.tmp >> $(KDIR)/bzImage
$(RM) $(KDIR)/bzImage.tmp
- $(call Image/Prepare/wl153/$(1))
+ $(call Image/Prepare/sitecom/$(1))
perl -we 'print "CSYS",pack("V",-s"$(KDIR)/bzImage"),pack("V",-s"$(KDIR)/root.$(1)"),"WRRM",pack("V",-s"$(KDIR)/bzImage")' > $(BIN_DIR)/openwrt-$(BOARD)-$(1)-$(2).img
cat $(KDIR)/bzImage $(KDIR)/root.$(1) >> $(BIN_DIR)/openwrt-$(BOARD)-$(1)-$(2).img
if [ `perl -we 'print -s"$(BIN_DIR)/openwrt-$(BOARD)-$(1)-$(2).img"'` -gt $$$$((0xffff0000-0xffe08000)) ]; then mv $(BIN_DIR)/openwrt-$(BOARD)-$(1)-$(2).img $(BIN_DIR)/openwrt-$(BOARD)-$(1)-$(2).img.too_big; echo "#ERR image too big"; fi