Append kernel recipe to support config fragments and add common kernel config fragments 27/8127/1
authorNathan Illerbrun <nathani@validmanufacturing.com>
Thu, 5 Jan 2017 21:46:13 +0000 (13:46 -0800)
committerNathan Illerbrun <nathani@validmanufacturing.com>
Mon, 9 Jan 2017 19:26:57 +0000 (11:26 -0800)
Add machine template for nitrogen6x

Change-Id: I63df939008a36d125f80d74d461453c63386e24e
Signed-off-by: Nathan Illerbrun <nathani@validmanufacturing.com>
meta-agl-bsp/meta-boundary/recipes-kernel/linux/files/ath9k_htc.cfg [new file with mode: 0644]
meta-agl-bsp/meta-boundary/recipes-kernel/linux/files/btusb.cfg [new file with mode: 0644]
meta-agl-bsp/meta-boundary/recipes-kernel/linux/files/hid.cfg [new file with mode: 0644]
meta-agl-bsp/meta-boundary/recipes-kernel/linux/files/rtl_sdr.cfg [new file with mode: 0644]
meta-agl-bsp/meta-boundary/recipes-kernel/linux/files/smack-default-lsm.cfg [new file with mode: 0644]
meta-agl-bsp/meta-boundary/recipes-kernel/linux/files/smack.cfg [new file with mode: 0644]
meta-agl-bsp/meta-boundary/recipes-kernel/linux/linux-boundary_4.1.15.bbappend [new file with mode: 0644]
templates/machine/nitrogen6x/50_bblayers.conf.inc [new file with mode: 0644]
templates/machine/nitrogen6x/50_local.conf.inc [new file with mode: 0644]
templates/machine/nitrogen6x/50_setup.sh [new file with mode: 0644]

diff --git a/meta-agl-bsp/meta-boundary/recipes-kernel/linux/files/ath9k_htc.cfg b/meta-agl-bsp/meta-boundary/recipes-kernel/linux/files/ath9k_htc.cfg
new file mode 100644 (file)
index 0000000..6f7d498
--- /dev/null
@@ -0,0 +1,4 @@
+CONFIG_CFG80211=m
+CONFIG_MAC80211=m
+CONFIG_ATH_CARDS=m
+CONFIG_ATH9K_HTC=m
diff --git a/meta-agl-bsp/meta-boundary/recipes-kernel/linux/files/btusb.cfg b/meta-agl-bsp/meta-boundary/recipes-kernel/linux/files/btusb.cfg
new file mode 100644 (file)
index 0000000..9c2a82d
--- /dev/null
@@ -0,0 +1,4 @@
+CONFIG_BT_INTEL=m
+CONFIG_BT_BCM=m
+CONFIG_BT_HCIBTUSB=m
+CONFIG_BT_HCIBTUSB_BCM=y
\ No newline at end of file
diff --git a/meta-agl-bsp/meta-boundary/recipes-kernel/linux/files/hid.cfg b/meta-agl-bsp/meta-boundary/recipes-kernel/linux/files/hid.cfg
new file mode 100644 (file)
index 0000000..327c753
--- /dev/null
@@ -0,0 +1 @@
+CONFIG_HID_MULTITOUCH=y
diff --git a/meta-agl-bsp/meta-boundary/recipes-kernel/linux/files/rtl_sdr.cfg b/meta-agl-bsp/meta-boundary/recipes-kernel/linux/files/rtl_sdr.cfg
new file mode 100644 (file)
index 0000000..df5a871
--- /dev/null
@@ -0,0 +1,5 @@
+CONFIG_I2C_MUX=y
+CONFIG_MEDIA_USB_SUPPORT=y
+CONFIG_MEDIA_DIGITAL_TV_SUPPORT=y
+CONFIG_DVB_USB_V2=m
+CONFIG_DVB_USB_RTL28XXU=m
diff --git a/meta-agl-bsp/meta-boundary/recipes-kernel/linux/files/smack-default-lsm.cfg b/meta-agl-bsp/meta-boundary/recipes-kernel/linux/files/smack-default-lsm.cfg
new file mode 100644 (file)
index 0000000..5914b3f
--- /dev/null
@@ -0,0 +1,6 @@
+CONFIG_DEFAULT_SECURITY="smack"
+CONFIG_DEFAULT_SECURITY_SMACK=y
+# CONFIG_DEFAULT_SECURITY_SELINUX is not set
+# CONFIG_DEFAULT_SECURITY_APPARMOR is not set
+# CONFIG_DEFAULT_SECURITY_YAMA is not set
+# CONFIG_DEFAULT_SECURITY_DAC is not set
\ No newline at end of file
diff --git a/meta-agl-bsp/meta-boundary/recipes-kernel/linux/files/smack.cfg b/meta-agl-bsp/meta-boundary/recipes-kernel/linux/files/smack.cfg
new file mode 100644 (file)
index 0000000..62f465a
--- /dev/null
@@ -0,0 +1,8 @@
+CONFIG_IP_NF_SECURITY=m
+CONFIG_IP6_NF_SECURITY=m
+CONFIG_EXT2_FS_SECURITY=y
+CONFIG_EXT3_FS_SECURITY=y
+CONFIG_EXT4_FS_SECURITY=y
+CONFIG_SECURITY=y
+CONFIG_SECURITY_SMACK=y
+CONFIG_TMPFS_XATTR=y
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 (file)
index 0000000..e2996f9
--- /dev/null
@@ -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
diff --git a/templates/machine/nitrogen6x/50_bblayers.conf.inc b/templates/machine/nitrogen6x/50_bblayers.conf.inc
new file mode 100644 (file)
index 0000000..2852303
--- /dev/null
@@ -0,0 +1,5 @@
+BBLAYERS =+ "\
+  ${METADIR}/meta-fsl-arm \
+  ${METADIR}/meta-fsl-arm-extra \
+  ${METADIR}/meta-boundary \
+  "
diff --git a/templates/machine/nitrogen6x/50_local.conf.inc b/templates/machine/nitrogen6x/50_local.conf.inc
new file mode 100644 (file)
index 0000000..fec3a7f
--- /dev/null
@@ -0,0 +1,2 @@
+MACHINE = "nitrogen6x"
+
diff --git a/templates/machine/nitrogen6x/50_setup.sh b/templates/machine/nitrogen6x/50_setup.sh
new file mode 100644 (file)
index 0000000..ea340a7
--- /dev/null
@@ -0,0 +1,2 @@
+find_and_ack_eula $METADIR/meta-fsl-arm EULA
+export EULA_FLAG_NAME="ACCEPT_FSL_EULA"