Hi,
I'm trying to apply patches to source code of linux kernel.
With devtool (modify and finish commands), I could apply patches
sucessfully by specified each single patch with its file name, like:
===========================================
FILESEXTRAPATHS_prepend := "${THISDIR}/${PN}:"
SRC_URI += "\
file://0001-xxx-xxx-xxx.patch \
file://0002-xxx-xxx-xxx.patch \
"
===========================================
However, if I change files' name into wildcard in SRC_URI like:
===========================================
FILESEXTRAPATHS_prepend := "${THISDIR}/${PN}:"
SRC_URI += "file://*"
===========================================
or
===========================================
FILESEXTRAPATHS_prepend := "${THISDIR}/${PN}:"
SRC_URI += "file://*.patch"
===========================================
or even create a "patches" folder under ${PN} and modify bb file like
===========================================
FILESEXTRAPATHS_prepend := "${THISDIR}/${PN}:"
SRC_URI += "file://patches"
===========================================
patch files will not be applied either do_patch task or "devtool
modify" command.
I tried in the latest version (zeus) and earlier version (sumo), and
got the same proble,
Could anyone tell me how to apply patches by wildcard?
Thank you
Qian
-=-=-=-=-=-=-=-=-=-=-=-
Links: You receive all messages sent to this group.
View/Reply Online (#49237): https://lists.yoctoproject.org/g/yocto/message/49237
Mute This Topic: https://lists.yoctoproject.org/mt/73258946/21656
Mute #yocto: https://lists.yoctoproject.org/mk?hashtag=yocto&subid=6691583
Group Owner: [email protected]
Unsubscribe: https://lists.yoctoproject.org/g/yocto/unsub
[[email protected]]
-=-=-=-=-=-=-=-=-=-=-=-