> > now that -ac grows that huge, could you put out incremental patches?
>
> Takes me too much time. But if anyone else wants to, go ahead
This is what i use to diff 2 different kernels
- snip -
diffkernel)
mount none /d/kernel -t ramfs
cd /d/kernel
tar -zxf $1
cp -a linux linuxa
cd /d/kernel/linuxa
zcat $2 | patch -p1 -E -s
cd /d/kernel/linux
zcat $3 | patch -p1 -E -s
cd /d/kernel
diff -Nur linuxa linux
cd
umount /d/kernel
- snip -
This takes about 8 seconds (for 2.4 kernels) on my Dual PIII-933, 1Gig-RAM
Bis denn
--
Real Programmers consider "what you see is what you get" to be just as
bad a concept in Text Editors as it is in women. No, the Real Programmer
wants a "you asked for it, you got it" text editor -- complicated,
cryptic, powerful, unforgiving, dangerous.
-
To unsubscribe from this list: send the line "unsubscribe linux-kernel" in
the body of a message to [EMAIL PROTECTED]
Please read the FAQ at http://www.tux.org/lkml/