Improve n810 profile

git-svn-id: svn://svn.openwrt.org/openwrt/trunk@22817 3c298f89-4303-0410-b956-a3cf2f4a3e73
master
Michael Büsch 2010-08-26 19:54:08 +00:00
parent 85bd82d06f
commit 0a67de680b
3 changed files with 37 additions and 7 deletions

View File

@ -9,7 +9,7 @@ include $(TOPDIR)/rules.mk
ARCH:=arm ARCH:=arm
BOARD:=omap24xx BOARD:=omap24xx
BOARDNAME:=TI OMAP-24xx BOARDNAME:=TI OMAP-24xx
FEATURES:=squashfs jffs2 usb usbgadget FEATURES:=targz squashfs jffs2 usb usbgadget display gpio audio
LINUX_VERSION:=2.6.35.3 LINUX_VERSION:=2.6.35.3

View File

@ -5,13 +5,21 @@
# See /LICENSE for more information. # See /LICENSE for more information.
# #
define Profile/n810 define Profile/n810-base
NAME:=Nokia n810 NAME:=Nokia n810 (base)
PACKAGES:= PACKAGES:= \
block-hotplug \
gpsd \
ip iw wireless-tools kmod-p54-spi wpa-supplicant \
dnsmasq dropbear \
kmod-fs-vfat kmod-fs-msdos \
kmod-input-evdev \
kmod-leds-gpio \
kmod-usb-tahvo kmod-usb-eth-gadget kmod-usb-net kmod-usb-net-cdc-ether
endef endef
define Profile/n810/Description define Profile/n810-base/Description
Package set compatible with Nokia n810 hardware Minimal package set for Nokia n810 hardware.
endef endef
$(eval $(call Profile,n810)) $(eval $(call Profile,n810-base))

View File

@ -0,0 +1,22 @@
#
# Copyright (C) 2010 OpenWrt.org
#
# This is free software, licensed under the GNU General Public License v2.
# See /LICENSE for more information.
#
define Profile/n810-gui
$(call Profile/n810-base)
NAME:=Nokia n810 (GUI)
PACKAGES+= \
xserver-xorg xinit xauth xterm \
xf86-video-omapfb xf86-input-tslib xf86-input-evdev \
openbox lxpanel \
pwrtray
endef
define Profile/n810-gui/Description
Graphical user interface package set for Nokia n810 hardware.
endef
$(eval $(call Profile,n810-gui))