diff options
author | juhosg <juhosg@3c298f89-4303-0410-b956-a3cf2f4a3e73> | 2012-04-29 07:36:46 +0000 |
---|---|---|
committer | juhosg <juhosg@3c298f89-4303-0410-b956-a3cf2f4a3e73> | 2012-04-29 07:36:46 +0000 |
commit | 3fa66527915c1a35e965e6b8d04401313468235c (patch) | |
tree | 0ea0d60eeb09cc293ac62139bd035841cb993a56 /target/linux/adm5120/image | |
parent | d50d82ab6e4c688dbd5770968aea817dd019eba6 (diff) |
adm5120: create a new subtarget for the RB1xx devices
git-svn-id: svn://svn.openwrt.org/openwrt/trunk@31513 3c298f89-4303-0410-b956-a3cf2f4a3e73
Diffstat (limited to 'target/linux/adm5120/image')
-rw-r--r-- | target/linux/adm5120/image/rb1xx.mk | 24 | ||||
-rw-r--r-- | target/linux/adm5120/image/router_le.mk | 20 |
2 files changed, 24 insertions, 20 deletions
diff --git a/target/linux/adm5120/image/rb1xx.mk b/target/linux/adm5120/image/rb1xx.mk new file mode 100644 index 0000000000..333adce805 --- /dev/null +++ b/target/linux/adm5120/image/rb1xx.mk @@ -0,0 +1,24 @@ +# +# Copyright (C) 2007,2008 OpenWrt.org +# +# This is free software, licensed under the GNU General Public License v2. +# See /LICENSE for more information. +# + + +define Image/cmdline/yaffs2 + root=/dev/mtdblock3 rootfstype=yaffs2 +endef + +define Image/BuildKernel/RouterBoard + $(CP) $(KDIR)/vmlinux.elf $(call imgname,kernel,rb1xx) + $(STAGING_DIR_HOST)/bin/patch-cmdline $(call imgname,kernel,rb1xx) \ + '$(strip $(call Image/cmdline/yaffs2))' +endef + +ifneq ($(CONFIG_TARGET_ROOTFS_INITRAMFS),y) + define Image/BuildKernel + $(call Image/BuildKernel/RouterBoard) + endef +endif + diff --git a/target/linux/adm5120/image/router_le.mk b/target/linux/adm5120/image/router_le.mk index 7c4bf1d81b..6df6dcd8cc 100644 --- a/target/linux/adm5120/image/router_le.mk +++ b/target/linux/adm5120/image/router_le.mk @@ -399,23 +399,3 @@ define Image/Build/Profile/Generic $(call Image/Build/Experimental,$(1)) endef - -ifeq ($(PROFILE),RouterBoard) - define Image/cmdline/yaffs2 - root=/dev/mtdblock3 rootfstype=yaffs2 - endef - - define Image/BuildKernel/RouterBoard - $(CP) $(KDIR)/vmlinux.elf $(call imgname,kernel,rb1xx) - $(STAGING_DIR_HOST)/bin/patch-cmdline $(call imgname,kernel,rb1xx) \ - '$(strip $(call Image/cmdline/yaffs2))' - endef - - ifneq ($(CONFIG_TARGET_ROOTFS_INITRAMFS),y) - define Image/BuildKernel - $(call Image/BuildKernel/RouterBoard) - endef - endif - -endif - |