https:/git.yoctoproject.orgcgitcgit.cgipokytreemetarecipes-extendedethtoolethtool_5.4.bb#n32。
do_install_ptest () {
cp ${B}/Makefile ${D}${PTEST_PATH}
install ${B}/test-cmdline ${D}${PTEST_PATH}
install ${B}/test-features ${D}${PTEST_PATH}
install ${B}/ethtool ${D}${PTEST_PATH}/ethtool
sed -i 's/^Makefile/_Makefile/' ${D}${PTEST_PATH}/Makefile
}
在最后一行。
sed -i 's/^Makefile/_Makefile/' ${D}${PTEST_PATH}/Makefile
我不知道把Makefile中的 "Makefile "换成"_Makefile "的目的是什么。
这可能是关于 Makefile 本身工作的一些细节,你必须阅读 Makefile 的详细内容才能弄清楚。