From 4dc96e3629f3bb6e8478b95b9f4613a467c2f6bb Mon Sep 17 00:00:00 2001 From: Tom Zanussi Date: Wed, 12 Dec 2012 22:56:31 -0600 Subject: 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 Signed-off-by: Richard Purdie --- scripts/lib/bsp/kernel.py | 2 ++ 1 file changed, 2 insertions(+) (limited to 'scripts') diff --git a/scripts/lib/bsp/kernel.py b/scripts/lib/bsp/kernel.py index 128fad0dfa..a953372e8f 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 -- cgit v1.2.3-54-g00ecf