diff options
author | Tom Zanussi <tom.zanussi@intel.com> | 2012-12-12 22:56:31 -0600 |
---|---|---|
committer | Richard Purdie <richard.purdie@linuxfoundation.org> | 2012-12-13 16:54:32 +0000 |
commit | 4dc96e3629f3bb6e8478b95b9f4613a467c2f6bb (patch) | |
tree | 81fdc16d841f27e2571d43176df5ed54ed6e35ee /scripts/lib/bsp | |
parent | 9753196c77d7b65ae172333a81c18d4dea34f2ca (diff) | |
download | poky-4dc96e3629f3bb6e8478b95b9f4613a467c2f6bb.tar.gz |
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>
Diffstat (limited to 'scripts/lib/bsp')
-rw-r--r-- | scripts/lib/bsp/kernel.py | 2 |
1 files changed, 2 insertions, 0 deletions
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): | |||
623 | filename = filename[idx + len(CLOSE_TAG):].strip() | 623 | filename = filename[idx + len(CLOSE_TAG):].strip() |
624 | kernels.append(filename) | 624 | kernels.append(filename) |
625 | 625 | ||
626 | kernels.append("custom") | ||
627 | |||
626 | return kernels | 628 | return kernels |
627 | 629 | ||
628 | 630 | ||