mirror of
git://projects.qi-hardware.com/openwrt-xburst.git
synced 2024-11-19 05:04:04 +02:00
add support for device type based package preselections
git-svn-id: svn://svn.openwrt.org/openwrt/trunk@8696 3c298f89-4303-0410-b956-a3cf2f4a3e73
This commit is contained in:
parent
ceee90ffd2
commit
076aaa3fda
@ -5,12 +5,22 @@
|
|||||||
# See /LICENSE for more information.
|
# See /LICENSE for more information.
|
||||||
#
|
#
|
||||||
|
|
||||||
# For target profile selection - the default set
|
# default device type
|
||||||
DEFAULT_PACKAGES:=base-files libgcc uclibc bridge busybox dnsmasq dropbear iptables mtd ppp ppp-mod-pppoe mtd kmod-ipt-nathelper
|
DEVICE_TYPE?=router
|
||||||
|
|
||||||
|
# Default packages - the really basic set
|
||||||
|
DEFAULT_PACKAGES:=base-files libgcc uclibc busybox dropbear mtd mtd
|
||||||
|
# For router targets
|
||||||
|
DEFAULT_PACKAGES.router:=dnsmasq iptables ppp ppp-mod-pppoe iptables kmod-ipt-nathelper bridge
|
||||||
|
|
||||||
|
# Additional packages for Linux 2.6
|
||||||
ifneq ($(KERNEL),2.4)
|
ifneq ($(KERNEL),2.4)
|
||||||
DEFAULT_PACKAGES+=udevtrigger hotplug2
|
DEFAULT_PACKAGES += udevtrigger hotplug2
|
||||||
endif
|
endif
|
||||||
|
|
||||||
|
# Add device specific packages
|
||||||
|
DEFAULT_PACKAGES += $(DEFAULT_PACKAGES.$(DEVICE_TYPE))
|
||||||
|
|
||||||
KERNELNAME=
|
KERNELNAME=
|
||||||
ifneq (,$(findstring x86,$(BOARD)))
|
ifneq (,$(findstring x86,$(BOARD)))
|
||||||
KERNELNAME="bzImage"
|
KERNELNAME="bzImage"
|
||||||
|
Loading…
Reference in New Issue
Block a user