diff options
author | Thomas Petazzoni <thomas.petazzoni@free-electrons.com> | 2010-12-05 21:53:18 +0100 |
---|---|---|
committer | Peter Korsgaard <jacmet@sunsite.dk> | 2010-12-16 22:30:18 +0100 |
commit | 55b0a375eaf32728573e3c852d8712267e5c7812 (patch) | |
tree | 0a8b198d80d4b7eba6a6ece4697637a20b30cb46 /linux/Config.in | |
parent | fb358f7b38866b7e48ecc58b1a1f59c1aa95ce44 (diff) |
linux: support a space-separated list of patches
The kernel being a component that often needs a fairly important set
of changes to be adapted to a particular hardware platform, having
maximum flexibility on the patching process is a nice
thing. Therefore, as per the discussions from the Buildroot Developer
Day, we add a mechanism to apply a list of patches (that could come
either from URLs, local files or local directories).
Signed-off-by: Thomas Petazzoni <thomas.petazzoni@free-electrons.com>
Signed-off-by: Peter Korsgaard <jacmet@sunsite.dk>
Diffstat (limited to 'linux/Config.in')
-rw-r--r-- | linux/Config.in | 9 |
1 files changed, 5 insertions, 4 deletions
diff --git a/linux/Config.in b/linux/Config.in index 7b781a422..4ded38bb7 100644 --- a/linux/Config.in +++ b/linux/Config.in @@ -70,11 +70,12 @@ config BR2_LINUX_KERNEL_VERSION # config BR2_LINUX_KERNEL_PATCH - string "Custom kernel patch" + string "Custom kernel patches" help - The location can be an URL, a file path, or a directory. In - the case of a directory, all files matching linux-*.patch - will be applied. + A space-separated list of patches to apply to the + kernel. Each patch can be described as an URL, a local file + path, or a directory. In the case of a directory, all files + matching linux-*.patch in the directory will be applied. # # Configuration selection |