aboutsummaryrefslogtreecommitdiffstats
path: root/recipes/hal/hal_0.5.11.bb
blob: 898ad07c928014f6c5499555a85cb0bf30264aea (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
require hal.inc

PR = "r6"

SRC_URI += " file://hal-right-input-h.patch;patch=1 \
             file://fix-configure.diff;patch=1 \
             file://wifi-2.6.27.diff;patch=1"

# The following code finds the right linux/input.h,
# which also works with external-toolchain/SDK
do_configure() {
	linux_input_h=`echo "#include <linux/input.h>" | ${CPP} - | \
		grep "linux\/input.h" | head -n 1 | awk -F '"' '{print $2}'`
	autotools_do_configure --with-linux-input-header=${linux_input_h}
}