adm5120: create a new subtarget for the RB1xx devices

SVN-Revision: 31513
This commit is contained in:
Gabor Juhos
2012-04-29 07:36:46 +00:00
parent 7925eea45f
commit 417185b33c
9 changed files with 90 additions and 50 deletions

View File

@@ -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

View File

@@ -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