diff options
author | Florian Fainelli <florian@openwrt.org> | 2007-04-16 21:46:44 +0000 |
---|---|---|
committer | Florian Fainelli <florian@openwrt.org> | 2007-04-16 21:46:44 +0000 |
commit | 1612bd2f9170c5aa96d96bac7ce71699f5ccdc70 (patch) | |
tree | 58033f487c2ae349052428a1372e3896b264ef62 /target/linux/rdc-2.6/Makefile | |
parent | 53a2bf0f5927d763e06e9a435261988371b610ee (diff) | |
download | mtk-20170518-1612bd2f9170c5aa96d96bac7ce71699f5ccdc70.zip mtk-20170518-1612bd2f9170c5aa96d96bac7ce71699f5ccdc70.tar.gz mtk-20170518-1612bd2f9170c5aa96d96bac7ce71699f5ccdc70.tar.bz2 |
No longer mark rdc-2.6 as broken, squashfs is now working, thanks sn9
SVN-Revision: 6976
Diffstat (limited to 'target/linux/rdc-2.6/Makefile')
-rw-r--r-- | target/linux/rdc-2.6/Makefile | 12 |
1 files changed, 10 insertions, 2 deletions
diff --git a/target/linux/rdc-2.6/Makefile b/target/linux/rdc-2.6/Makefile index 40d6b75..df920dd 100644 --- a/target/linux/rdc-2.6/Makefile +++ b/target/linux/rdc-2.6/Makefile @@ -9,15 +9,23 @@ include $(TOPDIR)/rules.mk ARCH:=i386 BOARD:=rdc BOARDNAME:=RDC x86 -FEATURES:=broken squashfs jffs2 +FEATURES:=squashfs define Target/Description Build firmware images for RDC3211 based routers - (e.g. Airlink101 AR525W) + (e.g. Airlink101 AR525W, Linksys WRT54R) endef include $(INCLUDE_DIR)/kernel-build.mk +ifneq ($(CONFIG_TARGET_ROOTFS_INITRAMFS),y) + define Kernel/SetInitramfs + rm -f $(BUILD_DIR)/root/sbin/init + $(CP) $(GENERIC_PLATFORM_DIR)/files/init $(BUILD_DIR)/root/sbin/ + $(CP) $(PLATFORM_DIR)/image/preinit.arch $(BUILD_DIR)/root/etc/ + endef +endif + # include the profiles -include profiles/*.mk |