yocto-bsp: add 'custom' choice to kernels()
authorTom Zanussi <tom.zanussi@intel.com>
Thu, 13 Dec 2012 04:56:31 +0000 (22:56 -0600)
committerRichard Purdie <richard.purdie@linuxfoundation.org>
Thu, 13 Dec 2012 16:54:32 +0000 (16:54 +0000)
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>
scripts/lib/bsp/kernel.py

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