yocto-bsp: add 'custom' choice to kernels()

Add a synthetic choice for linux-yocto-custom to the list of available
kernels.  Choosing this will lead the user down the path of options
needed to specify a custom kernel.

(From meta-yocto rev: 220ad83b5ccc241d7b5b2c3321f2a6a59813e3d6)

Signed-off-by: Tom Zanussi <tom.zanussi@intel.com>
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
This commit is contained in:
Tom Zanussi 2012-12-12 22:56:31 -06:00 committed by Richard Purdie
parent 9753196c77
commit 4dc96e3629
1 changed files with 2 additions and 0 deletions

View File

@ -623,6 +623,8 @@ def kernels(context):
filename = filename[idx + len(CLOSE_TAG):].strip()
kernels.append(filename)
kernels.append("custom")
return kernels