On Thursday 05 December 2013 11:33:58 Bruce Ashfield wrote: > You can absolutely change the SRC_URI on a per-board basis. Just use > the technique that I showed above, and do it in a bbappend to your > linux recipe. > > i.e. something like: SRC_URI_qemux86 += "file://myfancypatch.patch"
overrides and += do not play well. You must use _append in this case i.e. SRC_URI_append_qemux86 = " file://myfancypatch.patch" (remembering leading spaces, as usual with _append and variables that are space-separated lists) Cheers, Paul -- Paul Eggleton Intel Open Source Technology Centre _______________________________________________ yocto mailing list [email protected] https://lists.yoctoproject.org/listinfo/yocto
