diff options
author | Stephane Desneux <stephane.desneux@iot.bzh> | 2017-10-11 16:12:22 +0200 |
---|---|---|
committer | Jan-Simon Moeller <jsmoeller@linuxfoundation.org> | 2017-10-11 19:37:52 +0000 |
commit | 321a41a7cae61d074e686cc9966f6774a3f45b9e (patch) | |
tree | 897b2fe1988cc53f051c384c424552b6c1bd43c4 /meta-agl-bsp | |
parent | a5f69d3d31e7d75351f0e2abfc36d35ba39ce304 (diff) |
Revert kernel-devsrc fix on linux-ti
This reverts commit 4bfc821810cdee47611c6d3e94d771971f51fa75.
The fix on linux-ti-staging is superseeded by https://gerrit.automotivelinux.org/gerrit/#/c/11209/
Bug-AGL: SPEC-933
Change-Id: Ic41ba32451ef2c16a34c9e3879d4f86630ede058
Signed-off-by: Stephane Desneux <stephane.desneux@iot.bzh>
Reviewed-on: https://gerrit.automotivelinux.org/gerrit/11227
Tested-by: Jenkins Job builder account <agl-jobbuilder@automotivelinux.org>
ci-image-build: Jenkins Job builder account <agl-jobbuilder@automotivelinux.org>
ci-image-boot-test: Jenkins Job builder account <agl-jobbuilder@automotivelinux.org>
Reviewed-by: Jan-Simon Moeller <jsmoeller@linuxfoundation.org>
Diffstat (limited to 'meta-agl-bsp')
-rw-r--r-- | meta-agl-bsp/meta-ti/recipes-kernel/linux/linux-ti-staging_%.bbappend | 11 |
1 files changed, 0 insertions, 11 deletions
diff --git a/meta-agl-bsp/meta-ti/recipes-kernel/linux/linux-ti-staging_%.bbappend b/meta-agl-bsp/meta-ti/recipes-kernel/linux/linux-ti-staging_%.bbappend index 43fa494a2..b2e543140 100644 --- a/meta-agl-bsp/meta-ti/recipes-kernel/linux/linux-ti-staging_%.bbappend +++ b/meta-agl-bsp/meta-ti/recipes-kernel/linux/linux-ti-staging_%.bbappend @@ -31,14 +31,3 @@ KERNEL_CONFIG_FRAGMENTS_append_smack = "\ # file comes out of meta-agl-bsp/recipes-kernel/linux/linux_%.bbappend KERNEL_CONFIG_FRAGMENTS_append = " ${WORKDIR}/can-bus.cfg" - -# fix issue in kernel-devsrc meta pkg wrt /bin/awk vs /usr/bin/awk -do_configure_append(){ - -# enforce all scripts to use /usr/bin/awk . This fixes the rpm dependency failure on install of kernel-devsrc -cd ${S} || true -( for i in `git grep "\!/bin/awk" | cut -d":" -f1 ` ; do sed -i -e "s#\!/bin/awk#\!/usr/bin/awk#g" $i ; done ) || true -cd ${B} || true -( for i in `git grep "\!/bin/awk" | cut -d":" -f1 ` ; do sed -i -e "s#\!/bin/awk#\!/usr/bin/awk#g" $i ; done ) || true - -} |