1
0
mirror of git://projects.qi-hardware.com/openwrt-xburst.git synced 2024-07-19 12:05:41 +03:00
openwrt-xburst/target/linux/adm5120/image/rb1xx.mk
juhosg 3fa6652791 adm5120: create a new subtarget for the RB1xx devices
git-svn-id: svn://svn.openwrt.org/openwrt/trunk@31513 3c298f89-4303-0410-b956-a3cf2f4a3e73
2012-04-29 07:36:46 +00:00

25 lines
569 B
Makefile

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