X-Git-Url: http://git.rohieb.name/openwrt.git/blobdiff_plain/2350f3555e781d0ffd035edf7b28e010de9e1235..c95ec7a92d473eef9cc09bbd0289571486daa5c3:/openwrt/target/squashfs/squashfsroot.mk diff --git a/openwrt/target/squashfs/squashfsroot.mk b/openwrt/target/squashfs/squashfsroot.mk index f3d280859..f97b6419a 100644 --- a/openwrt/target/squashfs/squashfsroot.mk +++ b/openwrt/target/squashfs/squashfsroot.mk @@ -4,6 +4,8 @@ # ############################################################# +ROOTFSTYPE=squashfs + SQUASHFS_DIR=$(BUILD_DIR)/squashfs2.1-r2 SQUASHFS_SOURCE=squashfs2.1-r2.tar.gz SQUASHFS_SITE=http://dl.sourceforge.net/sourceforge/squashfs @@ -38,7 +40,7 @@ squashfs-dirclean: squashfsroot: squashfs @rm -rf $(TARGET_DIR)/usr/man @rm -rf $(TARGET_DIR)/usr/info - $(SQUASHFS_DIR)/squashfs-tools/mksquashfs $(TARGET_DIR) $(IMAGE).squashfs -noappend -root-owned -le + $(SQUASHFS_DIR)/squashfs-tools/mksquashfs $(TARGET_DIR) $(IMAGE).$(ROOTFSTYPE) -noappend -root-owned -le squashfsroot-source: squashfs-source @@ -48,3 +50,13 @@ squashfsroot-clean: squashfsroot-dirclean: rm -rf $(SQUASHFS_DIR) +openwrt-linux.trx.$(ROOTFSTYPE): + $(BUILD_DIR)/trx -o openwrt-linux.trx.$(ROOTFSTYPE) $(LINUX_DIR)/$(LINUX_BINLOC) $(IMAGE).$(ROOTFSTYPE) + +openwrt-gs-code.bin.$(ROOTFSTYPE): openwrt-linux.trx.$(ROOTFSTYPE) + $(BUILD_DIR)/addpattern -2 -i openwrt-linux.trx.$(ROOTFSTYPE) -o openwrt-gs-code.bin.$(ROOTFSTYPE) -g + +openwrt-g-code.bin.$(ROOTFSTYPE): openwrt-gs-code.bin.$(ROOTFSTYPE) + sed -e "1s,^W54S,W54G," < openwrt-gs-code.bin.$(ROOTFSTYPE) > openwrt-g-code.bin.$(ROOTFSTYPE) + +openwrt-image: openwrt-g-code.bin.$(ROOTFSTYPE)