diff options
author | Gabor Juhos <juhosg@openwrt.org> | 2012-04-29 07:36:46 +0000 |
---|---|---|
committer | Gabor Juhos <juhosg@openwrt.org> | 2012-04-29 07:36:46 +0000 |
commit | 417185b33c0d07c6a8ef1818ececc1ff6bec7253 (patch) | |
tree | cc99050a1831a96fcf6593cb409e608ac64c234b /target/linux/adm5120/image/rb1xx.mk | |
parent | 7925eea45f63760841657e03630cb8434070cdd2 (diff) | |
download | upstream-417185b33c0d07c6a8ef1818ececc1ff6bec7253.tar.gz upstream-417185b33c0d07c6a8ef1818ececc1ff6bec7253.tar.bz2 upstream-417185b33c0d07c6a8ef1818ececc1ff6bec7253.zip |
adm5120: create a new subtarget for the RB1xx devices
SVN-Revision: 31513
Diffstat (limited to 'target/linux/adm5120/image/rb1xx.mk')
-rw-r--r-- | target/linux/adm5120/image/rb1xx.mk | 24 |
1 files changed, 24 insertions, 0 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 + |