aboutsummaryrefslogtreecommitdiffstats
path: root/target/linux/rb532/files/include
Commit message (Collapse)AuthorAgeFilesLines
* change the way ./files* and the generic kernel files are applied. ./files ↵Felix Fietkau2008-10-1812-1923/+0
| | | | | | now applies to *ALL* kernel versions, and is copied along with ./files-* - this gets rid of quite a bit of redundancy in the extra kernel drivers. SVN-Revision: 13010
* Add basic 2.6.24 support for rb532, korina napi code has to be adapted to workFlorian Fainelli2008-07-151-0/+25
| | | | SVN-Revision: 11844
* GPIO code updates, make the cf-mips driver compile against this gpio versionFlorian Fainelli2008-04-071-121/+29
| | | | SVN-Revision: 10768
* Upgrade rb532 to .23, provide generic GPIO API to this boardFlorian Fainelli2008-01-112-32/+64
| | | | SVN-Revision: 10171
* watchdog driver for RB 532Felix Fietkau2007-12-241-0/+76
| | | | | | | | | | | | Here is the driver for the hardware watchdog timer integrated in RB 532 (as part of the SoC IDT 79RC32434). File include/asm-mips/rc32434/integ.h is taken from Mikrotik RB 532 kernel patch. Signed-off-by: Ondrej Zajicek <santiago@crfreenet.org> SVN-Revision: 9896
* strip the kernel version suffix from target directories, except for brcm-2.4 ↵Felix Fietkau2007-09-0610-0/+1882
(the -2.4 will be included in the board name here). CONFIG_LINUX_<ver>_<board> becomes CONFIG_TARGET_<board>, same for profiles. SVN-Revision: 8653
.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) 2006 OpenWrt.org
#
# This is free software, licensed under the GNU General Public License v2.
# See /LICENSE for more information.
#
include $(TOPDIR)/rules.mk

PKG_NAME:=pkg-config
PKG_VERSION:=0.25

PKG_SOURCE:=$(PKG_NAME)-$(PKG_VERSION).tar.gz
PKG_SOURCE_URL:=http://pkgconfig.freedesktop.org/releases/
PKG_MD5SUM:=a3270bab3f4b69b7dc6dbdacbcae9745

HOST_BUILD_PARALLEL:=1

include $(INCLUDE_DIR)/host-build.mk

HOST_LDFLAGS += $(HOST_STATIC_LINKING)

define Host/Install
	$(MAKE) -C $(HOST_BUILD_DIR) install \
		AM_LDFLAGS="$(if $(HOST_STATIC_LINKING),-all-static)"
	mv $(STAGING_DIR_HOST)/bin/pkg-config $(STAGING_DIR_HOST)/bin/pkg-config.real
	$(INSTALL_BIN) ./files/pkg-config $(STAGING_DIR_HOST)/bin/pkg-config
endef

define Host/Clean
	-$(MAKE) -C $(HOST_BUILD_DIR) uninstall
	$(call Host/Clean/Default)
endef

$(eval $(call HostBuild))