From: Tom Zanussi Date: Thu, 13 Dec 2012 04:56:31 +0000 (-0600) Subject: yocto-bsp: add 'custom' choice to kernels() X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=220ad83b5ccc241d7b5b2c3321f2a6a59813e3d6;p=thirdparty%2Fopenembedded%2Fopenembedded-core-contrib.git 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. Signed-off-by: Tom Zanussi Signed-off-by: Richard Purdie --- diff --git a/scripts/lib/bsp/kernel.py b/scripts/lib/bsp/kernel.py index 128fad0dfaa..a953372e8f5 100644 --- a/scripts/lib/bsp/kernel.py +++ b/scripts/lib/bsp/kernel.py @@ -623,6 +623,8 @@ def kernels(context): filename = filename[idx + len(CLOSE_TAG):].strip() kernels.append(filename) + kernels.append("custom") + return kernels