aboutsummaryrefslogtreecommitdiff
path: root/config/kernel/linux_headers_install.in
Commit message (Collapse)AuthorAgeFilesLines
* Move all the Linux kernel config options to a single file (to ease ↵Yann E. MORIN"2008-09-151-211/+0
| | | | | | | | | | | | supporting more than one kernel). Rename some Linux kernel config options (ditto). Update the addToolsVersion.sh script. /trunk/scripts/build/kernel/linux.sh | 13 6 7 0 +-- /trunk/tools/addToolVersion.sh | 105 37 68 0 +++++++-------------- /trunk/config/kernel/linux.in | 211 189 22 0 ++++++++++++++++++++++++++++++++++++++---- 3 files changed, 232 insertions(+), 97 deletions(-)
* Introduce a new EXPERIMENTAL feature: BARE_METAL.Yann E. MORIN"2008-09-141-37/+27
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | This should ultimately llow to build bare-metal compilers, for targets that have no kernel and no C library. Move the C library build script to their own sub-directory; introduce an empty build script for bare-metal. Move the compiler build script to its own sub-directory. Move the kernel build script to its own sub-directory; introduce an empty build script for bare-metal. Update the ARM target tuples to enable bare-metal targets. Add two ARM bare-metal samples. Add latest Linux kernel versions. /trunk/scripts/build/kernel/none.sh | 77 6 71 0 +---- /trunk/scripts/build/cc/gcc.sh | 58 41 17 0 ++- /trunk/scripts/build/libc/none.sh | 513 9 504 0 +----------------------------- /trunk/scripts/crosstool.sh | 17 9 8 0 + /trunk/scripts/functions | 6 4 2 0 + /trunk/scripts/showSamples.sh | 6 3 3 0 /trunk/samples/arm-unknown-elf/crosstool.config | 225 225 0 0 +++++++++++++ /trunk/samples/arm-unknown-eabi/crosstool.config | 223 223 0 0 +++++++++++++ /trunk/config/kernel/linux_headers_install.in | 64 27 37 0 ++-- /trunk/config/kernel.in | 9 8 1 0 + /trunk/config/toolchain.in | 1 1 0 0 + /trunk/config/cc/gcc.in | 3 3 0 0 + /trunk/config/debug/dmalloc.in | 1 1 0 0 + /trunk/config/debug/gdb.in | 4 3 1 0 + /trunk/config/debug/strace.in | 1 1 0 0 + /trunk/config/debug/duma.in | 1 1 0 0 + /trunk/config/cc.in | 8 8 0 0 + /trunk/config/target.in | 13 13 0 0 + /trunk/config/binutils.in | 1 1 0 0 + /trunk/config/gmp_mpfr.in | 1 1 0 0 + /trunk/config/libc.in | 17 11 6 0 + /trunk/arch/arm/functions | 3 1 2 0 - 22 files changed, 600 insertions(+), 652 deletions(-)
* Add linux-2.6.26.3.Yann E. MORIN"2008-09-011-0/+6
| | | | | /trunk/config/kernel/linux_headers_install.in | 6 6 0 0 ++++++ 1 file changed, 6 insertions(+)
* Default to check installed kernel headers by default.Yann E. MORIN"2008-08-191-1/+1
| | | | | /trunk/config/kernel/linux_headers_install.in | 2 1 1 0 +- 1 file changed, 1 insertion(+), 1 deletion(-)
* Add latest Linux kernel versions.Yann E. MORIN"2008-08-091-0/+24
| | | | | /trunk/config/kernel/linux_headers_install.in | 24 24 0 0 ++++++++++++++++++++++++ 1 file changed, 24 insertions(+)
* Add latest Linux kernel headers.Yann E. MORIN"2008-08-041-0/+6
| | | | | /trunk/config/kernel/linux_headers_install.in | 6 6 0 0 ++++++ 1 file changed, 6 insertions(+)
* Add latest headers from Linux kernel 2.6.25.1{1,2}.Yann E. MORIN"2008-07-281-0/+12
| | | | | /trunk/config/kernel/linux_headers_install.in | 12 12 0 0 ++++++++++++ 1 file changed, 12 insertions(+)
* Add latest Linux 2.6.26 headers.Yann E. MORIN"2008-07-151-0/+5
| | | | | /trunk/config/kernel/linux_headers_install.in | 5 5 0 0 +++++ 1 file changed, 5 insertions(+)
* Add latest linux kernel 2.6.25.10.Yann E. MORIN"2008-07-031-0/+6
| | | | | /trunk/config/kernel/linux_headers_install.in | 6 6 0 0 ++++++ 1 file changed, 6 insertions(+)
* Add latest Linux kernel versions.Yann E. MORIN"2008-06-251-0/+12
| | | | | /trunk/config/kernel/linux_headers_install.in | 12 12 0 0 ++++++++++++ 1 file changed, 12 insertions(+)
* Add altest linux kernel versions.Yann E. MORIN"2008-06-171-2/+14
| | | | | /trunk/config/kernel/linux_headers_install.in | 16 14 2 0 ++++++++++++++-- 1 file changed, 14 insertions(+), 2 deletions(-)
* Latest linux version for headers isntall.Yann E. MORIN"2008-06-091-0/+6
| | | | | /trunk/config/kernel/linux_headers_install.in | 6 6 0 0 ++++++ 1 file changed, 6 insertions(+)
* Add latest linux kernel versions for installing headers.Yann E. MORIN"2008-05-151-0/+24
| | | | | /trunk/config/kernel/linux_headers_install.in | 24 24 0 0 ++++++++++++++++++++++++ 1 file changed, 24 insertions(+)
* Add latest linux kernel versions.Yann E. MORIN"2008-05-021-103/+26
| | | | | | | Remove old ones, keeping only the latest 'Y' in each 2.6.X.Y series. /trunk/config/kernel/linux_headers_install.in | 129 26 103 0 +++++++-------------------------- 1 file changed, 26 insertions(+), 103 deletions(-)
* Add latest Linux kernel versions.Yann E. MORIN"2008-04-171-0/+17
| | | | | /trunk/config/kernel/linux_headers_install.in | 17 17 0 0 +++++++++++++++++ 1 file changed, 17 insertions(+)
* Moving around the files in config/ broke the tools/addToolVersion.sh script.Yann E. MORIN"2008-04-171-0/+168
Fix that. /trunk/tools/addToolVersion.sh | 26 13 13 0 +++++++++++++------------- /trunk/config/kernel/linux.in | 6 3 3 0 +++--- /trunk/config/kernel.in | 2 1 1 0 +- /trunk/config/cc.in | 2 1 1 0 +- /trunk/config/libc.in | 4 2 2 0 ++-- 5 files changed, 20 insertions(+), 20 deletions(-)