Attention is currently required from: Felix Singer, Martin L Roth.
Nicholas Chin has posted comments on this change. ( https://review.coreboot.org/c/coreboot/+/69863 )
Change subject: util/kconfig: Fix patch to be compatible with quilt ......................................................................
Patch Set 1:
(1 comment)
Patchset:
PS1: Hmm, looks like quilt actually can work with patches that use git diff formatting if you give it the correct `patch -p` option. I was reading through the quilt manpage, and it turns out you can specify patch options after the filename in the series file. So in the case of the original git patch that this commit concerns, the appropriate option would be `-p3` to strip the `a/util/kconfig` and `b/util/kconfig/ parts of the git path. So in `util/kconfig/patches/series`:
``` 0014-util-kconfig-Move-Kconfig-deps-back-into-build-confi.patch -p3 ``` So I supposed I could abandon this patch in favor of the above mentioned simpler fix, and then create a new patch to document this. What do others think?