From 8b24197f0938106afb6811a1848f5d5f3bef4237 Mon Sep 17 00:00:00 2001 From: Nathan Illerbrun Date: Thu, 5 Jan 2017 13:46:13 -0800 Subject: Append kernel recipe to support config fragments and add common kernel config fragments Add machine template for nitrogen6x Change-Id: I63df939008a36d125f80d74d461453c63386e24e Signed-off-by: Nathan Illerbrun --- .../linux/linux-boundary_4.1.15.bbappend | 35 ++++++++++++++++++++++ 1 file changed, 35 insertions(+) create mode 100644 meta-agl-bsp/meta-boundary/recipes-kernel/linux/linux-boundary_4.1.15.bbappend (limited to 'meta-agl-bsp/meta-boundary/recipes-kernel/linux/linux-boundary_4.1.15.bbappend') diff --git a/meta-agl-bsp/meta-boundary/recipes-kernel/linux/linux-boundary_4.1.15.bbappend b/meta-agl-bsp/meta-boundary/recipes-kernel/linux/linux-boundary_4.1.15.bbappend new file mode 100644 index 000000000..ab9db0183 --- /dev/null +++ b/meta-agl-bsp/meta-boundary/recipes-kernel/linux/linux-boundary_4.1.15.bbappend @@ -0,0 +1,35 @@ +FILESEXTRAPATHS_prepend := "${THISDIR}/files:" + +# Enable support for AR9271 +SRC_URI_append = " file://ath9k_htc.cfg" + +# Enable support for Bluetooth HCI USB devices +SRC_URI_append = " file://btusb.cfg" + +# Enable support for Bluetooth HCI USB devices +SRC_URI_append = " file://btusb.cfg" + +# Enable support for HID multitouch +SRC_URI_append = " file://hid.cfg" + +# Enable support for RTLSDR +SRC_URI_append = " file://rtl_sdr.cfg" + +# Set security default to SMACK +SRC_URI_append = " file://smack.cfg" +SRC_URI_append = " file://smack-default-lsm.cfg" + +# returns all the elements from the src uri that are .cfg files +def find_cfgs(d): + sources=src_patches(d, True) + sources_list=[] + for s in sources: + if s.endswith('.cfg'): + sources_list.append(s) + + return sources_list + +do_configure_prepend () { + cp -a ${WORKDIR}/defconfig .config + merge_config.sh -m .config ${@" ".join(find_cfgs(d))} +} \ No newline at end of file -- cgit 1.2.3-korg