diff options
author | John Crispin <john@openwrt.org> | 2007-06-17 02:53:53 +0000 |
---|---|---|
committer | John Crispin <john@openwrt.org> | 2007-06-17 02:53:53 +0000 |
commit | 2e9625a4adbcf1502050b288d0b24158f8fde037 (patch) | |
tree | 459b7fb6b83b2c778862d064ac716a9bcf19ac5d /target/linux/etrax-2.6/profiles | |
parent | 86ce31570c106108210d31d25506911dc604b740 (diff) | |
download | upstream-2e9625a4adbcf1502050b288d0b24158f8fde037.tar.gz upstream-2e9625a4adbcf1502050b288d0b24158f8fde037.tar.bz2 upstream-2e9625a4adbcf1502050b288d0b24158f8fde037.zip |
initial merge for vhdl support on the foxboard
SVN-Revision: 7652
Diffstat (limited to 'target/linux/etrax-2.6/profiles')
-rw-r--r-- | target/linux/etrax-2.6/profiles/100-generic.mk | 16 | ||||
-rw-r--r-- | target/linux/etrax-2.6/profiles/101-vhdl-nofb.mk | 17 |
2 files changed, 33 insertions, 0 deletions
diff --git a/target/linux/etrax-2.6/profiles/100-generic.mk b/target/linux/etrax-2.6/profiles/100-generic.mk new file mode 100644 index 0000000000..9d0fc72f88 --- /dev/null +++ b/target/linux/etrax-2.6/profiles/100-generic.mk @@ -0,0 +1,16 @@ +# +# Copyright (C) 2006 OpenWrt.org +# +# This is free software, licensed under the GNU General Public License v2. +# See /LICENSE for more information. +# + +define Profile/default + NAME:=Normal (default) +endef + +define Profile/default/Description + Normal Foxboard setup (no vhdl) +endef +$(eval $(call Profile,default)) + diff --git a/target/linux/etrax-2.6/profiles/101-vhdl-nofb.mk b/target/linux/etrax-2.6/profiles/101-vhdl-nofb.mk new file mode 100644 index 0000000000..620db4209a --- /dev/null +++ b/target/linux/etrax-2.6/profiles/101-vhdl-nofb.mk @@ -0,0 +1,17 @@ +# +# Copyright (C) 2006 OpenWrt.org +# +# This is free software, licensed under the GNU General Public License v2. +# See /LICENSE for more information. +# + +define Profile/vhdl_no_fb + NAME:=FOXVHDL no fb +# PACKAGES:=kmod-madwifi +endef + +define Profile/vhdl_no_fb/Description + Setup the Foxboard for FOXVHDL support with no framebuffer +endef +$(eval $(call Profile,vhdl_no_fb)) + |