aboutsummaryrefslogtreecommitdiffstats
path: root/package/apex
Commit message (Collapse)AuthorAgeFilesLines
* only support EABI on ARM targetsImre Kaloz2011-03-071-3/+2
| | | | SVN-Revision: 25928
* package/apex: fix a compile issueAlexandros C. Couloumbis2010-11-021-0/+20
| | | | SVN-Revision: 23768
* package/apex: update apex to version 1.6.9Alexandros C. Couloumbis2010-09-044-20/+20
| | | | SVN-Revision: 22900
* package/apex: refresh patchesGabor Juhos2010-03-265-24/+32
| | | | SVN-Revision: 20451
* Various Makefile cleanup.Hauke Mehrtens2009-06-131-1/+0
| | | | | | Thanks to swalker. SVN-Revision: 16437
* get rid of $Id$ - it has never helped us and it has broken too many patches ;)Felix Fietkau2009-04-171-1/+0
| | | | SVN-Revision: 15242
* ixp4xx: make apex optional, clean up the makefile - fixes spurious ↵Felix Fietkau2009-04-066-0/+164
recompilation issues SVN-Revision: 15115
r.Integer */ .highlight .mo { color: #0000DD; font-weight: bold } /* Literal.Number.Oct */ .highlight .sa { color: #dd2200; background-color: #fff0f0 } /* Literal.String.Affix */ .highlight .sb { color: #dd2200; background-color: #fff0f0 } /* Literal.String.Backtick */ .highlight .sc { color: #dd2200; background-color: #fff0f0 } /* Literal.String.Char */ .highlight .dl { color: #dd2200; background-color: #fff0f0 } /* Literal.String.Delimiter */ .highlight .sd { color: #dd2200; background-color: #fff0f0 } /* Literal.String.Doc */ .highlight .s2 { color: #dd2200; background-color: #fff0f0 } /* Literal.String.Double */ .highlight .se { color: #0044dd; background-color: #fff0f0 } /* Literal.String.Escape */ .highlight .sh { color: #dd2200; background-color: #fff0f0 } /* Literal.String.Heredoc */ .highlight .si { color: #3333bb; background-color: #fff0f0 } /* Literal.String.Interpol */ .highlight .sx { color: #22bb22; background-color: #f0fff0 } /* Literal.String.Other */ .highlight .sr { color: #008800; background-color: #fff0ff } /* Literal.String.Regex */ .highlight .s1 { color: #dd2200; background-color: #fff0f0 } /* Literal.String.Single */ .highlight .ss { color: #aa6600; background-color: #fff0f0 } /* Literal.String.Symbol */ .highlight .bp { color: #003388 } /* Name.Builtin.Pseudo */ .highlight .fm { color: #0066bb; font-weight: bold } /* Name.Function.Magic */ .highlight .vc { color: #336699 } /* Name.Variable.Class */ .highlight .vg { color: #dd7700 } /* Name.Variable.Global */ .highlight .vi { color: #3333bb } /* Name.Variable.Instance */ .highlight .vm { color: #336699 } /* Name.Variable.Magic */ .highlight .il { color: #0000DD; font-weight: bold } /* Literal.Number.Integer.Long */
#
# Copyright (C) 2007 OpenWrt.org
#
# This is free software, licensed under the GNU General Public License v2.
# See /LICENSE for more information.
#
# $Id: $

include $(TOPDIR)/rules.mk
include $(INCLUDE_DIR)/kernel.mk

PKG_NAME:=broadcom-mmc
PKG_VERSION:=0.1
PKG_RELEASE:=1

include $(INCLUDE_DIR)/package.mk

MAKEFLAGS_KMOD:= -C "$(LINUX_DIR)" \
                CROSS_COMPILE="$(TARGET_CROSS)" \
                ARCH="$(LINUX_KARCH)" \
                PATH="$(TARGET_PATH)" \
                SUBDIRS="$(PKG_BUILD_DIR)"

define KernelPackage/broadcom-mmc
  SUBMENU:=Other modules
  DEPENDS:=@TARGET_brcm_2_4
  TITLE:=Kernel driver for the Linksys WRT54G MM/SD-Card Mod
  URL:=http://kiel.kool.dk/
  FILES:=$(PKG_BUILD_DIR)/mmc.$(LINUX_KMOD_SUFFIX)
  AUTOLOAD:=$(call AutoLoad,80,mmc)
endef 

define KernelPackage/broadcom-mmc/description
	Kernel driver for the Linksys WRT54G MM/SD-Card Mod
endef

define Build/Prepare
	mkdir -p $(PKG_BUILD_DIR)
	$(CP) ./src/* $(PKG_BUILD_DIR)/
endef

define Build/Compile
	$(MAKE) $(MAKEFLAGS_KMOD) \
		modules
endef

$(eval $(call KernelPackage,broadcom-mmc))