[kbuild-devel] Re: Request for comment -- a better attribution system

2001-04-22 Thread Russell King
solution with no obvious advantages. And what would: C: CONFIG_ARM tell you? Nothing that is not described in the rest of the ARM PORT entry. -- Russell King ([EMAIL PROTECTED])The developer of ARM Linux http://www.arm.linux.org.uk/personal/aboutme.html

Re: [kbuild-devel] Re: State of the new config build system

2001-12-29 Thread Russell King
'Use ICS DMA by default' CONFIG_IDEDMA_ICS_AUTO $CONFIG_BLK_DEV_IDEDMA_ICS define_bool CONFIG_BLK_DEV_IDEDMA $CONFIG_BLK_DEV_IDEDMA_ICS dep_bool 'RapIDE interface support' CONFIG_BLK_DEV_IDE_RAPIDE $CONFIG_ARCH_ACORN fi So I guess I've found a bug. -- Russell

Re: [kbuild-devel] Re: State of the new config build system

2001-12-30 Thread Russell King
- that shouldn't be done at the same time as introducing CML2. Existing rules allow non-PCI/ISA IDE. Its a bug, not a change of behaviour. -- Russell King ([EMAIL PROTECTED])The developer of ARM Linux http://www.arm.linux.org.uk/personal/aboutme.html

[kbuild-devel] Re: CML2-2.1.3 is available

2002-01-15 Thread Russell King
for breaking the ability to configure the kernel for a completely different machine to the one that you're running the configuration/build on? Answers including Aunt Tillies or Penelopes won't be accepted. 8) -- Russell King ([EMAIL PROTECTED])The developer of ARM Linux

[kbuild-devel] Re: Announce: Kernel Build for 2.5, Release 2.0 is available

2002-04-06 Thread Russell King
On Sat, Apr 06, 2002 at 12:03:15PM +1000, Keith Owens wrote: The timings above were for exactly the same .config on the same build machine, Can you provide details of this machine? -- Russell King ([EMAIL PROTECTED])The developer of ARM Linux http

[kbuild-devel] Re: [patch] kernel config 3/N - move sound into drivers/media

2002-08-14 Thread Russell King
on the per-driver stuff, where its sane to do so. There's no way we can special case all the drivers out there for each machine type in the generic config files. That is the route to madness. -- Russell King ([EMAIL PROTECTED])The developer of ARM Linux http

[kbuild-devel] [BUG] 2.6.0: make gconfig broken

2003-12-25 Thread Russell King
-- Russell King Linux kernel2.6 ARM Linux - http://www.arm.linux.org.uk/ maintainer of: 2.6 PCMCIA - http://pcmcia.arm.linux.org.uk/ 2.6 Serial core --- This SF.net email is sponsored by: IBM Linux Tutorials. Become

[kbuild-devel] Fwd: RE: [BUG] 2.6.0: ARM won't build without CONFIG_CPU_FREQ_GOV_USERSPACE=y

2003-12-26 Thread Russell King
. Dominik - End forwarded message - -- Russell King Linux kernel2.6 ARM Linux - http://www.arm.linux.org.uk/ maintainer of: 2.6 PCMCIA - http://pcmcia.arm.linux.org.uk/ 2.6 Serial core

[kbuild-devel] Re: [PATCH] Pointer cast warnings in scripts/

2005-06-22 Thread Russell King
char if your data type does not require negative char values, especially if it makes use of the positive values not present in the signed char range. IOW, use signed/unsigned when you need to explicitly state your requirements, but omit it for true strings and characters. -- Russell King