source: freewrt/mk/targets.mk@ bd6091b

Last change on this file since bd6091b was bd6091b, checked in by Waldemar Brodkorb <wbx@…>, 19 years ago

add massive update

git-svn-id: svn://www.freewrt.org/branches/wbx-target-cleanup@546 afb5a338-a214-0410-bd46-81f09a774fd1

  • Property mode set to 100644
File size: 701 bytes
Line 
1# $FreeWRT$
2#-
3# This file is part of the FreeWRT project. FreeWRT is copyrighted
4# material, please see the LICENCE file in the top-level directory
5# or at http://www.freewrt.org/license for details.
6
7define target_template
8ifeq ($(FWRT_LINUX_$(4)),y)
9KERNEL:=$(1)
10BOARD:=$(2)
11MODEL:=$(3)
12endif
13endef
14
15$(eval $(call target_template,2.4,brcm,asus-wl500g,2_4_BRCM_ASUS_WL500G))
16$(eval $(call target_template,2.4,brcm,linksys-wrt54gs-10,2_4_BRCM_LINKSYS_WRT54GS_10))
17
18export BOARD
19export KERNEL
20export MODEL
21
22define rootfs_template
23ifeq ($(FWRT_TARGET_ROOTFS_$(2)),y)
24FS:=$(1)
25endif
26endef
27
28$(eval $(call rootfs_template,jffs2,JFFS2))
29$(eval $(call rootfs_template,squashfs,SQUASHFS_OVERLAY))
30
31export FS
Note: See TracBrowser for help on using the repository browser.