Michael Raskin
44457a9ad7
Fixing a typo in options
...
svn path=/nixpkgs/trunk/; revision=19563
2010-01-20 11:06:20 +00:00
Michael Raskin
d2795e889c
Force CFS in zen-kernel not specified as BFS
...
svn path=/nixpkgs/trunk/; revision=19557
2010-01-20 06:24:29 +00:00
Michael Raskin
c0bca28b2f
Do not insist on using CONFIG_PAE if we are trying to build a non-PAE kernel
...
svn path=/nixpkgs/trunk/; revision=19454
2010-01-15 05:30:00 +00:00
Michael Raskin
5bf63365d2
Update options according to renaming of them in Zen
...
svn path=/nixpkgs/trunk/; revision=19407
2010-01-13 16:19:48 +00:00
Michael Raskin
fdc45114a7
Remove tabs
...
svn path=/nixpkgs/trunk/; revision=19403
2010-01-13 15:42:08 +00:00
Michael Raskin
77c9077f0a
Adding a attrSet to import configuration chunks from
...
svn path=/nixpkgs/trunk/; revision=19398
2010-01-13 15:16:08 +00:00
Eelco Dolstra
0f38401813
* Latest and greatest kernels.
...
svn path=/nixpkgs/trunk/; revision=19287
2010-01-07 14:10:39 +00:00
Eelco Dolstra
ed4447febd
* Urgh - generic.nix doesn't expect a `extraConfig' argument.
...
svn path=/nixpkgs/trunk/; revision=19205
2010-01-04 13:14:39 +00:00
Eelco Dolstra
e3c2b77c11
* Add the gcov patch to patches.nix.
...
svn path=/nixpkgs/trunk/; revision=19190
2010-01-03 17:57:08 +00:00
Eelco Dolstra
ea5a440d42
* Linux 2.6.32.2, 2.6.27.42.
...
svn path=/nixpkgs/trunk/; revision=19091
2009-12-24 12:48:01 +00:00
Eelco Dolstra
c122c7a5ba
* Hm, I thought I tested this...
...
svn path=/nixpkgs/trunk/; revision=19032
2009-12-18 12:23:13 +00:00
Eelco Dolstra
cfd6dd29fe
* Linux 2.6.32.1.
...
svn path=/nixpkgs/branches/kernel-config/; revision=19000
2009-12-16 19:22:42 +00:00
Eelco Dolstra
f833d465e6
* Enable Kernel Samepage Merging.
...
svn path=/nixpkgs/branches/kernel-config/; revision=18949
2009-12-14 19:30:25 +00:00
Eelco Dolstra
2e5908b1df
* Use the kernel config generator for Linux 2.6.25.
...
svn path=/nixpkgs/branches/kernel-config/; revision=18948
2009-12-14 19:08:20 +00:00
Eelco Dolstra
00c641d336
* Use the kernel config generator for Linux 2.6.28.
...
* Get rid of Linux 2.6.20 and 2.6.26 (the former was only used for
building UML).
svn path=/nixpkgs/branches/kernel-config/; revision=18945
2009-12-14 18:34:46 +00:00
Eelco Dolstra
ec2fd60f88
* Doh!
...
svn path=/nixpkgs/branches/kernel-config/; revision=18944
2009-12-14 18:30:52 +00:00
Eelco Dolstra
c3e80cbc9f
* Get User-Mode Linux to build with a newer kernel. Yes, SHELL really
...
has to be "/bin/sh" - other values such as "sh" or "bash" or "$(type
-tP sh)" cause a build error:
LD .tmp_vmlinux1
/nix/store/1yv8i1m76cvwk5w5i5wrk4gj5zyfj6vh-binutils-2.19.1/bin/ld:arch/um/kernel/vmlinux.lds:1: ignoring invalid character `#' in expression
/nix/store/1yv8i1m76cvwk5w5i5wrk4gj5zyfj6vh-binutils-2.19.1/bin/ld:arch/um/kernel/vmlinux.lds:1: syntax error
collect2: ld returned 1 exit status
This is caused by Bash 4.0
(http://bugzilla.kernel.org/show_bug.cgi?id=13343 ).
svn path=/nixpkgs/branches/kernel-config/; revision=18941
2009-12-14 17:22:38 +00:00
Eelco Dolstra
03b4efe9c8
* Use the kernel config generator for Linux 2.6.27.
...
* Move kernel patches out of all-packages.nix to
os-specific/linux/kernel/patches.nix.
* Make the kernel config available under $out/config (it's also in
$out/lib/modules/$version/build/.config, but that's kind of hard to
find).
svn path=/nixpkgs/branches/kernel-config/; revision=18937
2009-12-14 15:28:55 +00:00
Eelco Dolstra
98101f9cb1
* Linux 2.6.32.
...
svn path=/nixpkgs/branches/kernel-config/; revision=18932
2009-12-14 10:15:52 +00:00
Eelco Dolstra
15c6ede144
* Allow options to be ignored if they don't exist by marking them with
...
a "?".
svn path=/nixpkgs/branches/kernel-config/; revision=18931
2009-12-14 09:27:15 +00:00
Eelco Dolstra
71ed6194e1
* Get fbcondecor to work.
...
* Barf on ignored options.
svn path=/nixpkgs/branches/kernel-config/; revision=18914
2009-12-12 18:55:17 +00:00
Eelco Dolstra
03e45e0cb4
* Added a script to generate the kernel configuration.
...
`generate-config.pl' runs `make config' to generate a Linux kernel
configuration file. For each question (i.e. kernel configuration
option), unless an override is provided, it answers "m" if possible,
and otherwise uses the default answer (as determined by the default
config for the architecture). This is safer than allmodconfig,
which answers "y" everywhere it can't answer "m" and thus ends up
enabling a lot of experimental or debug options. (For this reason,
a configuration generated by allmodconfig must be carefully checked
with every new release to ensure that nothing dangerous is enabled.
The default config should be safer wrt new kernel releases.)
Overrides are specified in the `config' argument to generic.nix,
which is a string that contains lines such as `EXT2_FS_POSIX_ACL y'.
The script warns about ignored options, and aborts if `make config'
selects an answer inconsistent with the one in `config'. This
allows us to be sure that `make config' doesn't silently override
our configuration values (e.g., depending on other options, it will
set FB_TILEBLITTING to "y" even if we want it to be "n").
svn path=/nixpkgs/branches/kernel-config/; revision=18910
2009-12-12 13:51:07 +00:00
Eelco Dolstra
ebeacec489
* Linux 2.6.27.39.
...
svn path=/nixpkgs/trunk/; revision=18838
2009-12-08 11:38:19 +00:00
Michael Raskin
84eb2eadef
Apply patch from Lluis needed for future ARM merge..
...
svn path=/nixpkgs/trunk/; revision=18776
2009-12-03 07:08:51 +00:00
Eelco Dolstra
45ba16864f
* Deleted some obsolete kernels (2.6.20, 2.6.21, 2.6.22, 2.6.23 and
...
the 2.6.31rcs).
svn path=/nixpkgs/trunk/; revision=18065
2009-11-01 17:17:40 +00:00
Eelco Dolstra
41879a5c74
* Linux 2.6.27.38.
...
svn path=/nixpkgs/trunk/; revision=17985
2009-10-28 12:07:00 +00:00
Ludovic Courtès
37b42b3ab7
Linux: Enable `sdhci', for Ricoh SD readers.
...
svn path=/nixpkgs/trunk/; revision=17954
2009-10-25 15:22:54 +00:00
Eelco Dolstra
21ddf5e52e
* Linux 2.6.27.37.
...
svn path=/nixpkgs/trunk/; revision=17909
2009-10-21 13:07:09 +00:00
Eelco Dolstra
213519d327
* Linux 2.6.27.35.
...
svn path=/nixpkgs/trunk/; revision=17422
2009-09-25 18:59:07 +00:00
Michael Raskin
f4162c9716
Turn off more debug options not needed by default
...
svn path=/nixpkgs/trunk/; revision=17103
2009-09-13 20:22:37 +00:00
Michael Raskin
a8fa3e9cc9
Removing more debugging options from default 2.6.31 config
...
svn path=/nixpkgs/trunk/; revision=17101
2009-09-13 20:10:19 +00:00
Michael Raskin
01063c854b
Remove option stopping 2.6.31 from booting
...
svn path=/nixpkgs/trunk/; revision=17094
2009-09-13 16:24:44 +00:00
Michael Raskin
0462878b22
Fixing a typo
...
svn path=/nixpkgs/trunk/; revision=17067
2009-09-12 07:33:55 +00:00
Michael Raskin
a5023cf381
Adding 2.6.31 kernel and trying to generate config for it without manual operations
...
svn path=/nixpkgs/trunk/; revision=17065
2009-09-12 07:13:20 +00:00
Michael Raskin
491255bbb3
Trying to add Zen Linux Kernel
...
svn path=/nixpkgs/trunk/; revision=17050
2009-09-11 13:16:18 +00:00
Eelco Dolstra
2dffe66c92
* Linux 2.6.27.31.
...
svn path=/nixpkgs/trunk/; revision=16754
2009-08-18 09:29:03 +00:00
Eelco Dolstra
e8dbd26bee
* Linux 2.6.27.29.
...
svn path=/nixpkgs/trunk/; revision=16554
2009-08-03 10:04:20 +00:00
Michael Raskin
be5fc98c97
Really non-PAE configuration this time
...
svn path=/nixpkgs/trunk/; revision=16552
2009-08-03 09:25:57 +00:00
Michael Raskin
3baa3663c9
Try newer -RC kernel
...
svn path=/nixpkgs/trunk/; revision=16504
2009-07-29 18:10:26 +00:00
Michael Raskin
15bec036fa
Add 2.6.31-rc2 kernel for now : rc3 has a BtrFS stability regression
...
svn path=/nixpkgs/trunk/; revision=16384
2009-07-16 06:30:25 +00:00
Michael Raskin
8eefb03231
Fix typo
...
svn path=/nixpkgs/trunk/; revision=16383
2009-07-15 21:09:17 +00:00
Michael Raskin
0865385a29
Add a config for older x86 processors without PAE support. Turn off PAT for a good measure, too
...
svn path=/nixpkgs/trunk/; revision=16382
2009-07-15 21:01:24 +00:00
Michael Raskin
57c8392eee
Fixed cmdline override in 2.6.31-rc3 kernel config
...
svn path=/nixpkgs/trunk/; revision=16362
2009-07-14 19:24:10 +00:00
Michael Raskin
a310f4f2a0
Forgot to turn off debugging options in all-mod-config..
...
svn path=/nixpkgs/trunk/; revision=16347
2009-07-14 10:23:45 +00:00
Michael Raskin
396ae631ea
Add AMD64 config for 2.6.31-rc3
...
svn path=/nixpkgs/trunk/; revision=16346
2009-07-14 09:57:51 +00:00
Michael Raskin
64c89c7532
Oops, mixed up hashes
...
svn path=/nixpkgs/trunk/; revision=16345
2009-07-14 09:18:22 +00:00
Michael Raskin
ad2f62980a
Try building a really full-featured configuration of the fresh Linux kernel pre-release
...
svn path=/nixpkgs/trunk/; revision=16344
2009-07-14 09:13:59 +00:00
Eelco Dolstra
bfadd94cec
* Kernel updates.
...
svn path=/nixpkgs/trunk/; revision=16155
2009-07-03 09:11:46 +00:00
Eelco Dolstra
85479e92d1
* Linux 2.6.29.5.
...
* Build the PC speaker as a module. This allows people who are
annoyed by beeps (e.g. users of Dell Latitude D6xx laptops) to get
rid of them :-)
svn path=/nixpkgs/trunk/; revision=15983
2009-06-17 12:26:22 +00:00
Eelco Dolstra
588eb7a351
* Linux 2.6.27.25.
...
svn path=/nixpkgs/trunk/; revision=15962
2009-06-15 15:05:42 +00:00