diff options
author | Andy Nichols <andy.nichols@theqtcompany.com> | 2015-04-07 12:12:16 +0200 |
---|---|---|
committer | Andy Nichols <andy.nichols@theqtcompany.com> | 2015-04-23 18:23:55 +0300 |
commit | 85f2d8624ba68be8817de43c88c18265c2a5d026 (patch) | |
tree | e0c1542badb1880f3937b463272970eb74d9c990 /meta-toradex-extras/recipes | |
parent | 23b9e8808352dfb90d70265a19d66f62cae40e28 (diff) | |
download | meta-boot2qt-85f2d8624ba68be8817de43c88c18265c2a5d026.tar.gz |
colibri-vf: Fix added kernel modules
config_script only worked with the freescale kernel recipes, so
moving to do_configure_prepend. Why must this be different for each
kernel recipe!
Change-Id: I21d2d6ca5912bb57c7cfdb08e5c084ec868336ba
Reviewed-by: Samuli Piippo <samuli.piippo@theqtcompany.com>
Diffstat (limited to 'meta-toradex-extras/recipes')
-rw-r--r-- | meta-toradex-extras/recipes/linux/linux-toradex-vf_3.18.bbappend | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/meta-toradex-extras/recipes/linux/linux-toradex-vf_3.18.bbappend b/meta-toradex-extras/recipes/linux/linux-toradex-vf_3.18.bbappend index a723ab8..0ceceeb 100644 --- a/meta-toradex-extras/recipes/linux/linux-toradex-vf_3.18.bbappend +++ b/meta-toradex-extras/recipes/linux/linux-toradex-vf_3.18.bbappend | |||
@@ -26,8 +26,8 @@ SRC_URI += " \ | |||
26 | file://0001-Enable-Fusion-7-and-10-multi-touch-controller.patch \ | 26 | file://0001-Enable-Fusion-7-and-10-multi-touch-controller.patch \ |
27 | " | 27 | " |
28 | 28 | ||
29 | config_script () { | 29 | do_configure_prepend () { |
30 | # FunctionFS for adb | 30 | # FunctionFS for adb |
31 | echo "CONFIG_USB_FUNCTIONFS=m" >> ${S}/.config | 31 | echo "CONFIG_USB_FUNCTIONFS=m" >> ${WORKDIR}/defconfig |
32 | echo "TOUCHSCREEN_FUSION_F0710A=y" >> ${S}/.config | 32 | echo "TOUCHSCREEN_FUSION_F0710A=y" >> ${WORKDIR}/defconfig |
33 | } | 33 | } |