Applying patches before build_kernel.sh?

If I’m using Robert C. Nelson’s build scripts: (ie: git clone https://github.com/RobertCNelson/ti-linux-kernel-dev.git, git checkout tags/4.4.54-ti-r93 and then build_kernel.sh), what is the appropriate file/place/repository to inject patches to be picked up.

Do I modify the repo in /ignore? Do I patch the one in KERNEL? Do I modify local_patch in patch.sh?

Thanks.

You can stick them really anywhere, it's probably easiest at the end..

create your own dir: patches/my_patches/

then at the end of patch.sh just add:

dir 'my_patches'

and it'll work it's way from 0001-<>.patch -> 0XYZ-<>.patch

Regards,

Thank you, Robert.