我是新手,yocto 在imx6q
嵌入式系统上构建。
我想在 do_rootfs 之后覆盖 linux 系统文件。例如,目标系统文件如下。
- /etc/网络/接口
- /etc/问题
- /etc/init.d/rcS
- /home/root/mytest.sh
所以,我制作了自定义图层和自定义配方。helloworld 二进制文件可以复制。
但是,do_mytask 函数没有被调用。
我的代码有什么问题?或出于我的目的的任何其他方法。
#
# This file was derived from the 'Hello World!' example recipe in the
# Yocto Project Development Manual.
#
SUMMARY = "Simple helloworld application"
SECTION = "examples"
LICENSE = "MIT"
LIC_FILES_CHKSUM = "file://${COMMON_LICENSE_DIR}/MIT;md5=0835ade698e0bcf8506ecda2f7b4f302"
SRC_URI = "file://helloworld.c"
S = "${WORKDIR}"
do_compile() {
${CC} helloworld.c -o helloworld
}
do_install() {
install -d ${D}${bindir}
install -m 0755 helloworld ${D}${bindir}
}
FILESEXTRAPATHS_prepend := "${THISDIR}/files:"
SRC_URI += " \
file://interfaces \
file://issue \
file://mytest.sh \
"
addtask mytask after do_rootfs before do_image
do_mytask() {
install -d ${D}/etc/network
cp -af ${WORKDIR}/interfaces ${D}/etc/network/interfaces
cp -af ${WORKDIR}/issue ${D}/etc/issue
}