I am setting up a build system for the imx6ul with NXP's support in yocto. I can generate sd card images for the evk board. The next step I want to do is use a local, eventually Gerrit-hosted, branch of the kernel_imx , add custom kernel drivers and build locally using that rather than having it pulled in from the bb layers source. I should be able to do something like the following , where I have git cloned linux-imx from the NXP repo.
```
DEV_DIR = "/ebs_data/yocto-dev"
KERNEL_SRC = "git://${DEV_DIR}/linux-imx;protocol=file"
SRCBRANCH = "imx_4.9.11_1.0.0_ga"
SRCREV = "427eb8371fd5e9bceec18ca8838ac6eb1e51ad3a"
```
however the local.conf is not the place for it to be since, SRCREV and SRCBRANCH are getting picked up by many recipes and I want it localized to the kernel only. What is the appropriate .bb file to place this in? Thanks!