imx8mp configuration fragments not applied

キャンセル
次の結果を表示 
表示  限定  | 次の代わりに検索 
もしかして: 

imx8mp configuration fragments not applied

202件の閲覧回数
MJD
Contributor II

Hi,

i am trying to add .cfg 

SRC_URI += "file://8250.cfg"

do_configure_append() {
# This is run from

cat ../*.cfg >> ${B}/.config
}

CONFIG_PAHOLE_VERSION=123
CONFIG_SND_SOC_TLV320AIC3X=y
CONFIG_SND_SOC_TLV320AIC3X_I2C=y
CONFIG_PAHOLE_HAS_SPLIT_BTF=y

lab3@daikokunw-Server:~/YY/imx-yocto-bsp/build/tmp/deploy/images/imx8mp-lpddr4-evk$ bitbake linux-imx
Loaded 5339 entries from dependency cache.
ERROR: /home/lab3/YY/imx-yocto-bsp/sources/meta-freescale/recipes-kernel/linux/linux-imx_6.1.bb: Variable do_configure_append contains an operation using the old override syntax. Please convert this layer/metadata before attempting to use with a newer bitbake. | ETA: --:--:--
ERROR: /home/lab3/YY/imx-yocto-bsp/sources/meta-imx/meta-bsp/recipes-kernel/linux/linux-imx_6.1.bb: Variable do_configure_append contains an operation using the old override syntax. Please convert this layer/metadata before attempting to use with a newer bitbake.
ERROR: Parsing halted due to errors, see error messages above

Summary: There were 3 ERROR messages, returning a non-zero exit code.

I have tried through bellow steps 

lab3@daikokunw-Server:~/YY/imx-yocto-bsp/sources/meta-daikoku/recipes-kernel/linux$ cat linux-imx_6.1.bbappend
SRC_URI += "file://8250.cfg"

do_configure_append() {
# This is run from
# ./tmp/work/imx8mp_lpddr4_evk-poky-linux/linux-imx/6.1.y+gitAUTOINC+770c5fe2c1-r0/git
cat ../*.cfg >> ${B}/.config
}

lab3@daikokunw-Server:~/YY/imx-yocto-bsp/sources/meta-daikoku/recipes-kernel/linux$ vi linux-imx_6.1.bbappend
lab3@daikokunw-Server:~/YY/imx-yocto-bsp/sources/meta-daikoku/recipes-kernel/linux$ cat linux-imx_6.1.bbappend
SRC_URI += "file://8250.cfg"
do_configure_append() {
for i in ../*.cfg; do
[ -f "$i" ] || break
bbdebug 2 "applying $i file contents to .config"
cat ../*.cfg >> ${B}/.config
done
}

lab3@daikokunw-Server:~/YY/imx-yocto-bsp/sources/meta-daikoku/recipes-kernel/linux$ cat linux-imx_6.1.bbappend
FILESEXTRAPATHS_prepend := "${THISDIR}/${PN}:"
SRC_URI += "file://8250.cfg"
lab3@daikokunw-Server:~/YY/imx

lab3@daikokunw-Server:~/YY/imx-yocto-bsp/sources/meta-daikoku/recipes-kernel/linux$ cat linux-imx_6.1.bbappend
FILESEXTRAPATHS_prepend := "${THISDIR}/$files:"
SRC_URI += "file://8250.cfg"
lab3@daikokunw-Server:~/YY/imx

lab3@daikokunw-Server:~/YY/imx-yocto-bsp/build/tmp/deploy/images/imx8mp-lpddr4-evk$ bitbake linux-imx

Loaded 5339 entries from dependency cache.
ERROR: /home/lab3/YY/imx-yocto-bsp/sources/meta-imx/meta-bsp/recipes-kernel/linux/linux-imx_6.1.bb: Variable FILESEXTRAPATHS_prepend file: /home/lab3/YY/imx-yocto-bsp/sources/meta-daikoku/recipes-kernel/linux/linux-imx_6.1.bbappend line: 1 contains an operation using the old override syntax. Please convert this layer/metadata before attempting to use with a newer bitbake.
ERROR: /home/lab3/YY/imx-yocto-bsp/sources/meta-freescale/recipes-kernel/linux/linux-imx_6.1.bb: Variable FILESEXTRAPATHS_prepend file: /home/lab3/YY/imx-yocto-bsp/sources/meta-daikoku/recipes-kernel/linux/linux-imx_6.1.bbappend line: 1 contains an operation using the old override syntax. Please convert this layer/metadata before attempting to use with a newer bitbake.
ERROR: Parsing halted due to errors, see error messages above

Summary: There were 3 ERROR messages, returning a non-zero exit code.
lab3@daikokunw-Server:~/YY/imx-yocto-bsp/build/tmp/deploy/images/imx8mp-lpddr4-evk$

@gusarambula 

 



0 件の賞賛
返信
0 返答(返信)