]> git.ipfire.org Git - thirdparty/openembedded/openembedded-core-contrib.git/commitdiff
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:43:12 +0000 (16:43 +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.

Signed-off-by: Tom Zanussi <tom.zanussi@intel.com>
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
scripts/lib/bsp/kernel.py

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