Re: List of SCO files

From: Dick Streefland
Date: Sun Nov 16 2003 - 11:07:34 EST


Dax Kelson <dax@xxxxxxxxxxxx> wrote:
| http://www.groklaw.net/article.php?story=2003111203544653
|
| "I used it for comparison to file listings of different kernel versions,
| and my conclusion is that this list is either based on 2.5.68 (released
| April 20, 2003) or on 2.5.69 (released May 5, 2003). Those are the only
| two versions that contain all of the listed files." -- Groklaw reader
| "Lev"

I think they used 2.5.69. Their list includes net/bridge/br_if.c, and
patch 2.5.69 adds code containing the word "rcu", which is probably
one of the keywords they searched for. The following script generates
a list very close to SCOs list:

#!/bin/sh
# to be run in the linux-2.5.69 kernel tree
(
find * -name '*.[ch]' |
egrep -v '^(drivers|sound)|(arch/|include/asm-)(sparc|alpha|parisc)' |
xargs egrep -iwl '(smp|numa|rcu)'
ls fs/jfs/*.[ch]
) |
sort -u

The only files not on SCOs list are:

arch/um/drivers/harddog_kern.c
arch/um/drivers/harddog_user.c
arch/um/drivers/mconsole_kern.c
include/asm-h8300/smplock.h

--
Dick Streefland //// De Bilt
dick.streefland@xxxxxxxxx (@ @) The Netherlands
------------------------------oOO--(_)--OOo------------------

-
To unsubscribe from this list: send the line "unsubscribe linux-kernel" in
the body of a message to majordomo@xxxxxxxxxxxxxxx
More majordomo info at http://vger.kernel.org/majordomo-info.html
Please read the FAQ at http://www.tux.org/lkml/