[Date Prev][Date Next] [Thread Prev][Thread Next] [Date Index] [Thread Index]

Re: kernel or syskold not supporting flavours



Hi,

	I am not sure what happened, since I have previously tried the
 kernel-flavours option and definitely saw it work with syslogd. I
 shall try again, and let you know.

	However, I tried to find where that message could be printed
 from in the kernel sources, to no avail. Me thinks this does not come
 from the kernel. Proof follows.

______________________________________________________________________
__> cd /usr/local/src/
__> find kernel-source-2.0.33/  -type f | xargs grep 'Cannot find map file'
grep: kernel-source-2.0.33/drivers/sound/.indent.pro: Permission denied
__> find kernel-source-2.1.88/ -type f | xargs grep 'Cannot find map file'
grep: kernel-source-2.1.88/drivers/sound/.indent.pro: Permission denied
__> find kernel-source-2.1.88/ -type f | xargs grep 'Loaded '
kernel-source-2.1.88/fs/ncpfs/ncplib_kernel.c:  ncp_add_byte(server, 24);      /* Subfunction: Get Name Spaces Loaded */
kernel-source-2.1.88/drivers/block/xd.c:                printk(KERN_INFO "XD: Loaded as a module.\n");
kernel-source-2.1.88/drivers/block/rd.c:                printk(KERN_INFO "RAMDISK: Loaded as module.\n");
kernel-source-2.1.88/drivers/scsi/BusLogic.c:           Loaded Interrupts.  Command Complete Interrupts are noted,
grep: kernel-source-2.1.88/drivers/sound/.indent.pro: Permission denied
kernel-source-2.1.88/drivers/sbus/audio/amd7930.c: *   >  - Loaded a single char into the Dchan xmit FIFO
kernel-source-2.1.88/drivers/ap1000/ap.c:               printk(KERN_INFO "APBLOCK: Loaded as module.\n");
kernel-source-2.1.88/drivers/ap1000/ddv.c:              printk(KERN_INFO "DDV: Loaded as module.\n");
kernel-source-2.1.88/arch/m68k/mac/config.c:void *mac_env;              /* Loaded by the boot asm */
__> find kernel-source-2.1.88/ -type f | xargs grep 'symbols from'
kernel-source-2.1.88/drivers/char/apm_bios.c:   /* Arguments, with symbols from linux/apm_bios.h.  Information is
kernel-source-2.1.88/drivers/scsi/53c7,8xx.c: * which undefine's all #define'd CPP symbols from the script.h
kernel-source-2.1.88/drivers/scsi/advansys.c:            overhead, and remove unneeded symbols from the kernel symbol
kernel-source-2.1.88/drivers/scsi/53c7xx.c: * which undefine's all #define'd CPP symbols from the script.h
grep: kernel-source-2.1.88/drivers/sound/.indent.pro: Permission denied
kernel-source-2.1.88/scripts/ksymoops.cc:// This is a simple filter to resolve EIP and call-trace symbols from
______________________________________________________________________

	As far as I can see, everything relevant in the kernel uses
 UTS_RELEASE. 

______________________________________________________________________
__> find kernel-source-2.0.33/  -type f | xargs grep UTS_RELEASE           
kernel-source-2.0.33/Makefile:  @echo \#define UTS_RELEASE \"$(VERSION).$(PATCHLEVEL).$(SUBLEVEL)\" > .ver
kernel-source-2.0.33/init/version.c:    UTS_SYSNAME, UTS_NODENAME, UTS_RELEASE, UTS_VERSION,
kernel-source-2.0.33/init/version.c:    "Linux version " UTS_RELEASE " (" LINUX_COMPILE_BY "@"
kernel-source-2.0.33/include/linux/config.h: * The definitions for UTS_RELEASE and UTS_VERSION are now defined
kernel-source-2.0.33/include/linux/module.h:char kernel_version[]=UTS_RELEASE;
kernel-source-2.0.33/drivers/net/atp.c:char kernel_version[] = UTS_RELEASE;
kernel-source-2.0.33/drivers/net/tulip.c:char kernel_version[] = UTS_RELEASE;
kernel-source-2.0.33/drivers/net/tulip.c:char kernel_version[] = UTS_RELEASE;
kernel-source-2.0.33/drivers/net/smc9194.c:char kernel_version[] = UTS_RELEASE;
kernel-source-2.0.33/drivers/net/eepro100.c:char kernel_version[] = UTS_RELEASE;
grep: kernel-source-2.0.33/drivers/sound/.indent.pro: Permission denied
kernel-source-2.0.33/drivers/sound/soundcard.c:char            kernel_version[] = UTS_RELEASE;
kernel-source-2.0.33/arch/i386/boot/setup.S:kernel_version:     .ascii  UTS_RELEASE
kernel-source-2.0.33/arch/alpha/boot/main.c:    printk("Linux/AXP bootloader for Linux " UTS_RELEASE "\n");
______________________________________________________________________

	The kernel version is only coded in one other macro, namely,
 LINUX_VERSION_CODE. That macro is only used in cpp #if tests, as
 shown below.

	So, if the macro UTS_RELEASE has been patched in the kernel
 Makfile, the kernel shall never complain.

	manoj
______________________________________________________________________
__> find kernel-source-2.0.33/  -type f | xargs grep LINUX_VERSION_CODE
kernel-source-2.0.33/Makefile:	@echo \#define LINUX_VERSION_CODE `expr $(VERSION) \\* 65536 + $(PATCHLEVEL) \\* 256 + $(SUBLEVEL)` >> .ver
kernel-source-2.0.33/fs/autofs/autofs_i.h:#if LINUX_VERSION_CODE < kver(2,1,0)
kernel-source-2.0.33/fs/autofs/init.c:#if LINUX_VERSION_CODE < kver(2,1,36)
kernel-source-2.0.33/fs/autofs/root.c:#if LINUX_VERSION_CODE < kver(2,1,0)
kernel-source-2.0.33/fs/autofs/root.c:#if LINUX_VERSION_CODE < kver(2,1,0)
kernel-source-2.0.33/init/version.c:int version_string(LINUX_VERSION_CODE) = 0;
kernel-source-2.0.33/include/linux/isdn.h:#if (LINUX_VERSION_CODE < 0x02010F)
kernel-source-2.0.33/include/linux/isdn.h:#if (LINUX_VERSION_CODE < 0x2011E)
kernel-source-2.0.33/include/linux/isdnif.h:#ifndef LINUX_VERSION_CODE
kernel-source-2.0.33/include/linux/isdnif.h:#if (LINUX_VERSION_CODE < 0x020100)
kernel-source-2.0.33/include/linux/isdnif.h:#if (LINUX_VERSION_CODE < 0x02010F)
kernel-source-2.0.33/include/linux/isdnif.h:#if (LINUX_VERSION_CODE < 0x02011F)
kernel-source-2.0.33/include/linux/isdnif.h:#if (LINUX_VERSION_CODE < 0x020125)
kernel-source-2.0.33/drivers/net/atp.c:#if defined (LINUX_VERSION_CODE) && LINUX_VERSION_CODE < 0x10300
kernel-source-2.0.33/drivers/net/atp.c:#if defined (LINUX_VERSION_CODE) && LINUX_VERSION_CODE < 0x10338
kernel-source-2.0.33/drivers/net/atp.c:#if (LINUX_VERSION_CODE >= 0x10344)
kernel-source-2.0.33/drivers/net/atp.c:#if LINUX_VERSION_CODE >= 0x10300
kernel-source-2.0.33/drivers/net/de4x5.c:#if	LINUX_VERSION_CODE < ((2 << 16) | (1 << 8))
kernel-source-2.0.33/drivers/net/de4x5.c:#endif  /* LINUX_VERSION_CODE */
kernel-source-2.0.33/drivers/net/de4x5.c:#if	LINUX_VERSION_CODE >= ((2 << 16) | (1 << 8))
kernel-source-2.0.33/drivers/net/de4x5.c:#if	LINUX_VERSION_CODE >= ((2 << 16) | (1 << 8))
kernel-source-2.0.33/drivers/net/de4x5.c:#if	LINUX_VERSION_CODE >= ((2 << 16) | (1 << 8))
kernel-source-2.0.33/drivers/net/tulip.c:#if defined (LINUX_VERSION_CODE) && LINUX_VERSION_CODE < 0x10300
kernel-source-2.0.33/drivers/net/tulip.c:#if defined (LINUX_VERSION_CODE) && LINUX_VERSION_CODE < 0x10338
kernel-source-2.0.33/drivers/net/tulip.c:#if (LINUX_VERSION_CODE >= 0x10344)
kernel-source-2.0.33/drivers/net/tulip.c:#if (LINUX_VERSION_CODE >= 0x20100)
kernel-source-2.0.33/drivers/net/tulip.c:#if (LINUX_VERSION_CODE < 0x20123)
kernel-source-2.0.33/drivers/net/tulip.c:#if LINUX_VERSION_CODE > 0x20139
kernel-source-2.0.33/drivers/net/tulip.c:#if LINUX_VERSION_CODE > 0x10300
kernel-source-2.0.33/drivers/net/tulip.c:#if LINUX_VERSION_CODE > 0x10300
kernel-source-2.0.33/drivers/net/tulip.c:#if LINUX_VERSION_CODE < 0x20100
kernel-source-2.0.33/drivers/net/tulip.c:#if LINUX_VERSION_CODE > 0x20118
kernel-source-2.0.33/drivers/net/dgrs.c:#if LINUX_VERSION_CODE >= 0x20100
kernel-source-2.0.33/drivers/net/hp100.c:#if LINUX_VERSION_CODE < 0x020100
kernel-source-2.0.33/drivers/net/3c59x.c:#ifndef LINUX_VERSION_CODE
kernel-source-2.0.33/drivers/net/3c59x.c:#if LINUX_VERSION_CODE < 0x10300
kernel-source-2.0.33/drivers/net/3c59x.c:#if (LINUX_VERSION_CODE >= 0x10344)
kernel-source-2.0.33/drivers/net/3c59x.c:#if (LINUX_VERSION_CODE < 0x20123)
kernel-source-2.0.33/drivers/net/3c59x.c:#if LINUX_VERSION_CODE >= 0x10300
kernel-source-2.0.33/drivers/net/3c59x.c:#if LINUX_VERSION_CODE > 0x10300
kernel-source-2.0.33/drivers/net/3c59x.c:#if LINUX_VERSION_CODE > 0x10300
kernel-source-2.0.33/drivers/net/3c59x.c:#if LINUX_VERSION_CODE < 0x20100
kernel-source-2.0.33/drivers/net/eepro100.c:   LINUX_VERSION_CODE in version.h, but that triggers recompiles w/'make'. */
kernel-source-2.0.33/drivers/net/eepro100.c:#if (LINUX_VERSION_CODE < VERSION(1,3,0))
kernel-source-2.0.33/drivers/net/eepro100.c:#if (LINUX_VERSION_CODE >= VERSION(1,3,44))
kernel-source-2.0.33/drivers/net/eepro100.c:#if (LINUX_VERSION_CODE >= 0x10344)
kernel-source-2.0.33/drivers/net/eepro100.c:#if (LINUX_VERSION_CODE < VERSION(1,3,44))
kernel-source-2.0.33/drivers/net/eepro100.c:#if LINUX_VERSION_CODE < 0x10300
kernel-source-2.0.33/drivers/net/eepro100.c:#if (LINUX_VERSION_CODE < 0x20123)
kernel-source-2.0.33/drivers/net/eepro100.c:#if (LINUX_VERSION_CODE < 0x10300)	/* Kernel v1.2.*. */
kernel-source-2.0.33/drivers/net/eepro100.c:#if (LINUX_VERSION_CODE >= VERSION(1,3,44))
kernel-source-2.0.33/drivers/net/eepro100.c:#if (LINUX_VERSION_CODE >= VERSION(1,3,44))
kernel-source-2.0.33/drivers/net/eepro100.c:#if LINUX_VERSION_CODE >= 0x10300
kernel-source-2.0.33/drivers/net/eepro100.c:#if LINUX_VERSION_CODE < 0x10300
kernel-source-2.0.33/drivers/net/eepro100.c:#if (LINUX_VERSION_CODE >= VERSION(1,3,44))
kernel-source-2.0.33/drivers/net/eepro100.c:#if (LINUX_VERSION_CODE < VERSION(1,3,38))	/* 1.3.38 and later */
kernel-source-2.0.33/drivers/net/eepro100.c:#if LINUX_VERSION_CODE > 0x20118
kernel-source-2.0.33/drivers/char/specialix.c:#if LINUX_VERSION_CODE < 131328    /* Less than 2.1.0 */
kernel-source-2.0.33/drivers/char/specialix.c:#if LINUX_VERSION_CODE < 131368   /* less than 2.1.40 */
kernel-source-2.0.33/drivers/scsi/53c7,8xx.c:#if LINUX_VERSION_CODE > 65536 + 3 * 256
kernel-source-2.0.33/drivers/scsi/53c7,8xx.h:#if LINUX_VERSION_CODE > 65536 + 3 * 256
kernel-source-2.0.33/drivers/scsi/eata.c:#if LINUX_VERSION_CODE >= LinuxVersionCode(2,1,26)
kernel-source-2.0.33/drivers/scsi/eata.c:#if LINUX_VERSION_CODE >= LinuxVersionCode(2,1,36)
kernel-source-2.0.33/drivers/scsi/u14-34f.c:#if LINUX_VERSION_CODE >= LinuxVersionCode(2,1,26)
kernel-source-2.0.33/drivers/scsi/u14-34f.c:#if LINUX_VERSION_CODE >= LinuxVersionCode(2,1,36)
kernel-source-2.0.33/drivers/scsi/ncr53c8xx.c:#if LINUX_VERSION_CODE >= LinuxVersionCode(1,3,0)
kernel-source-2.0.33/drivers/scsi/ncr53c8xx.c:#if LINUX_VERSION_CODE >= LinuxVersionCode(2,1,35)
kernel-source-2.0.33/drivers/scsi/ncr53c8xx.c:#if LINUX_VERSION_CODE >= LinuxVersionCode(1,3,0)
kernel-source-2.0.33/drivers/scsi/ncr53c8xx.c:#if LINUX_VERSION_CODE >= LinuxVersionCode(2,1,0)
kernel-source-2.0.33/drivers/scsi/ncr53c8xx.c:#if LINUX_VERSION_CODE >= LinuxVersionCode(2,1,0)
kernel-source-2.0.33/drivers/scsi/ncr53c8xx.c:#if LINUX_VERSION_CODE >= LinuxVersionCode(1,3,0)
kernel-source-2.0.33/drivers/scsi/ncr53c8xx.c:#if LINUX_VERSION_CODE >= LinuxVersionCode(2,0,0)
kernel-source-2.0.33/drivers/scsi/ncr53c8xx.c:#if LINUX_VERSION_CODE >= LinuxVersionCode(1,3,70)
kernel-source-2.0.33/drivers/scsi/ncr53c8xx.c:#if LINUX_VERSION_CODE >= LinuxVersionCode(1,3,0)
kernel-source-2.0.33/drivers/scsi/ncr53c8xx.c:#if LINUX_VERSION_CODE >= LinuxVersionCode(2,0,0)
kernel-source-2.0.33/drivers/scsi/ncr53c8xx.c:#if LINUX_VERSION_CODE >= LinuxVersionCode(1,3,70)
kernel-source-2.0.33/drivers/scsi/ncr53c8xx.c:#if LINUX_VERSION_CODE >= LinuxVersionCode(1,3,70)
kernel-source-2.0.33/drivers/scsi/ncr53c8xx.c:#if LINUX_VERSION_CODE >= LinuxVersionCode(1,3,0)
kernel-source-2.0.33/drivers/scsi/ncr53c8xx.c:#if LINUX_VERSION_CODE >= LinuxVersionCode(1,3,0)
kernel-source-2.0.33/drivers/scsi/ncr53c8xx.c:#if LINUX_VERSION_CODE >= LinuxVersionCode(1,3,0)
kernel-source-2.0.33/drivers/scsi/ncr53c8xx.c:#if LINUX_VERSION_CODE >= LinuxVersionCode(2,0,0)
kernel-source-2.0.33/drivers/scsi/ncr53c8xx.c:#if LINUX_VERSION_CODE >= LinuxVersionCode(1,3,70)
kernel-source-2.0.33/drivers/scsi/ncr53c8xx.c:#if LINUX_VERSION_CODE >= LinuxVersionCode(1,3,70)
kernel-source-2.0.33/drivers/scsi/advansys.c:/* Convert Linux Version, Patch-level, Sub-level to LINUX_VERSION_CODE. */
kernel-source-2.0.33/drivers/scsi/advansys.c:#ifndef LINUX_VERSION_CODE
kernel-source-2.0.33/drivers/scsi/advansys.c:#endif /* LINUX_VERSION_CODE */
kernel-source-2.0.33/drivers/scsi/advansys.c:#if LINUX_VERSION_CODE >= ASC_LINUX_VERSION(1,3,0)
kernel-source-2.0.33/drivers/scsi/advansys.c:#if LINUX_VERSION_CODE >= ASC_LINUX_VERSION(1,3,0)
kernel-source-2.0.33/drivers/scsi/advansys.c:#if LINUX_VERSION_CODE < ASC_LINUX_VERSION(1,3,0)
kernel-source-2.0.33/drivers/scsi/advansys.c:#if LINUX_VERSION_CODE < ASC_LINUX_VERSION(1,3,0)
kernel-source-2.0.33/drivers/scsi/advansys.c:#if LINUX_VERSION_CODE >= ASC_LINUX_VERSION(1,3,0)
kernel-source-2.0.33/drivers/scsi/advansys.c:#if LINUX_VERSION_CODE >= ASC_LINUX_VERSION(1,3,0)
kernel-source-2.0.33/drivers/scsi/advansys.c:#if LINUX_VERSION_CODE >= ASC_LINUX_VERSION(1,3,0)
kernel-source-2.0.33/drivers/scsi/advansys.c:#if LINUX_VERSION_CODE < ASC_LINUX_VERSION(1,3,70)
kernel-source-2.0.33/drivers/scsi/advansys.c:#if LINUX_VERSION_CODE >= ASC_LINUX_VERSION(1,3,89)
kernel-source-2.0.33/drivers/scsi/advansys.c:#if LINUX_VERSION_CODE >= ASC_LINUX_VERSION(1,3,0)
kernel-source-2.0.33/drivers/scsi/advansys.c:#if LINUX_VERSION_CODE >= ASC_LINUX_VERSION(1,3,0)
kernel-source-2.0.33/drivers/scsi/advansys.c:#if LINUX_VERSION_CODE >= ASC_LINUX_VERSION(1,3,0)
kernel-source-2.0.33/drivers/scsi/advansys.c:#if LINUX_VERSION_CODE >= ASC_LINUX_VERSION(1,3,0)
kernel-source-2.0.33/drivers/scsi/advansys.c:#if LINUX_VERSION_CODE >= ASC_LINUX_VERSION(1,3,0)
kernel-source-2.0.33/drivers/scsi/advansys.c:#if LINUX_VERSION_CODE >= ASC_LINUX_VERSION(1,3,89)
kernel-source-2.0.33/drivers/scsi/advansys.c:#if LINUX_VERSION_CODE < ASC_LINUX_VERSION(1,3,89)
kernel-source-2.0.33/drivers/scsi/advansys.c:#if LINUX_VERSION_CODE >= ASC_LINUX_VERSION(1,3,0)
kernel-source-2.0.33/drivers/scsi/advansys.c:#if LINUX_VERSION_CODE < ASC_LINUX_VERSION(1,3,70)
kernel-source-2.0.33/drivers/scsi/advansys.c:#if LINUX_VERSION_CODE >= ASC_LINUX_VERSION(1,3,0)
kernel-source-2.0.33/drivers/scsi/advansys.c:#if LINUX_VERSION_CODE >= ASC_LINUX_VERSION(1,3,0)
kernel-source-2.0.33/drivers/scsi/advansys.c:#if LINUX_VERSION_CODE < ASC_LINUX_VERSION(1,3,70)
kernel-source-2.0.33/drivers/scsi/advansys.c:#if LINUX_VERSION_CODE < ASC_LINUX_VERSION(1,3,70)
kernel-source-2.0.33/drivers/scsi/advansys.c:#if LINUX_VERSION_CODE >= ASC_LINUX_VERSION(1,3,0)
kernel-source-2.0.33/drivers/scsi/advansys.c:#if LINUX_VERSION_CODE >= ASC_LINUX_VERSION(1,3,89)
kernel-source-2.0.33/drivers/scsi/advansys.c:#if LINUX_VERSION_CODE < ASC_LINUX_VERSION(1,3,89)
kernel-source-2.0.33/drivers/scsi/advansys.c:#if LINUX_VERSION_CODE >= ASC_LINUX_VERSION(1,3,89)
kernel-source-2.0.33/drivers/scsi/advansys.c:#if LINUX_VERSION_CODE >= ASC_LINUX_VERSION(1,3,89)
kernel-source-2.0.33/drivers/scsi/advansys.c:#if LINUX_VERSION_CODE >= ASC_LINUX_VERSION(1,3,89)
kernel-source-2.0.33/drivers/scsi/advansys.c:#if LINUX_VERSION_CODE < ASC_LINUX_VERSION(1,3,0)
kernel-source-2.0.33/drivers/scsi/advansys.c:#if LINUX_VERSION_CODE < ASC_LINUX_VERSION(1,3,70)
kernel-source-2.0.33/drivers/scsi/advansys.c:#if LINUX_VERSION_CODE >= ASC_LINUX_VERSION(1,3,89)
kernel-source-2.0.33/drivers/scsi/advansys.c:#if LINUX_VERSION_CODE < ASC_LINUX_VERSION(2,0,0)
kernel-source-2.0.33/drivers/scsi/advansys.c:#if LINUX_VERSION_CODE < ASC_LINUX_VERSION(2,0,0)
kernel-source-2.0.33/drivers/scsi/advansys.c:#if LINUX_VERSION_CODE < ASC_LINUX_VERSION(2,0,0)
kernel-source-2.0.33/drivers/scsi/advansys.c:#if LINUX_VERSION_CODE >= ASC_LINUX_VERSION(1,3,89)
kernel-source-2.0.33/drivers/scsi/advansys.c:#if LINUX_VERSION_CODE < ASC_LINUX_VERSION(1,3,89)
kernel-source-2.0.33/drivers/scsi/advansys.c:#if LINUX_VERSION_CODE < ASC_LINUX_VERSION(1,3,57)
kernel-source-2.0.33/drivers/scsi/advansys.c:#if LINUX_VERSION_CODE < ASC_LINUX_VERSION(1,3,57)
kernel-source-2.0.33/drivers/scsi/advansys.c:#if LINUX_VERSION_CODE >= ASC_LINUX_VERSION(1,3,89)
kernel-source-2.0.33/drivers/scsi/advansys.c:#if LINUX_VERSION_CODE >= ASC_LINUX_VERSION(1,3,0)
kernel-source-2.0.33/drivers/scsi/advansys.c:#if LINUX_VERSION_CODE < ASC_LINUX_VERSION(2,0,0)
kernel-source-2.0.33/drivers/scsi/advansys.c:#if LINUX_VERSION_CODE < ASC_LINUX_VERSION(2,0,0)
kernel-source-2.0.33/drivers/scsi/advansys.c:#if LINUX_VERSION_CODE < ASC_LINUX_VERSION(1,3,0)
kernel-source-2.0.33/drivers/scsi/advansys.c:#if LINUX_VERSION_CODE < ASC_LINUX_VERSION(1,3,89)
kernel-source-2.0.33/drivers/scsi/advansys.h:/* Convert Linux Version, Patch-level, Sub-level to LINUX_VERSION_CODE. */
kernel-source-2.0.33/drivers/scsi/advansys.h:#ifndef LINUX_VERSION_CODE
kernel-source-2.0.33/drivers/scsi/advansys.h:#endif /* LINUX_VERSION_CODE */
kernel-source-2.0.33/drivers/scsi/advansys.h:#if LINUX_VERSION_CODE < ASC_LINUX_VERSION(1,3,89)
kernel-source-2.0.33/drivers/scsi/advansys.h:#if LINUX_VERSION_CODE < ASC_LINUX_VERSION(1,3,0)
kernel-source-2.0.33/drivers/scsi/advansys.h:#if LINUX_VERSION_CODE < ASC_LINUX_VERSION(1,3,0)
kernel-source-2.0.33/drivers/scsi/wd33c93.h:#if LINUX_VERSION_CODE >= 0x010300
kernel-source-2.0.33/drivers/scsi/wd33c93.c:#if LINUX_VERSION_CODE >= 0x010300
kernel-source-2.0.33/drivers/scsi/wd33c93.c:#if LINUX_VERSION_CODE >= 0x010300
kernel-source-2.0.33/drivers/scsi/ncr53c8xx.h:#if !defined(LINUX_VERSION_CODE)
kernel-source-2.0.33/drivers/scsi/ncr53c8xx.h:**	During make dep of linux-1.2.13, LINUX_VERSION_CODE is undefined
kernel-source-2.0.33/drivers/scsi/ncr53c8xx.h:#if !defined(LINUX_VERSION_CODE)
kernel-source-2.0.33/drivers/scsi/ncr53c8xx.h:#define LINUX_VERSION_CODE LinuxVersionCode(1,2,13)
kernel-source-2.0.33/drivers/scsi/ncr53c8xx.h:#if	LINUX_VERSION_CODE < LinuxVersionCode(1,3,0)
kernel-source-2.0.33/drivers/scsi/ncr53c8xx.h:#if	LINUX_VERSION_CODE >= LinuxVersionCode(1,3,0)
kernel-source-2.0.33/drivers/scsi/ncr53c8xx.h:#if	LINUX_VERSION_CODE >= LinuxVersionCode(1,3,72)
kernel-source-2.0.33/drivers/scsi/ncr53c8xx.h:#if	LINUX_VERSION_CODE >= LinuxVersionCode(1,3,98)
kernel-source-2.0.33/drivers/scsi/ncr53c8xx.h:#if	LINUX_VERSION_CODE >= LinuxVersionCode(1,3,98)
kernel-source-2.0.33/drivers/scsi/ncr53c8xx.h:#if	LINUX_VERSION_CODE >= LinuxVersionCode(1,3,0)
kernel-source-2.0.33/drivers/scsi/ncr53c8xx.h:#endif /* LINUX_VERSION_CODE >= LinuxVersionCode(1,3,0) */
kernel-source-2.0.33/drivers/scsi/ncr53c8xx.h:#if	LINUX_VERSION_CODE >= LinuxVersionCode(1,3,0)
kernel-source-2.0.33/drivers/scsi/ChangeLog.ncr53c8xx:	During "make dep" of linux-1.2.13, LINUX_VERSION_CODE is undefined.
kernel-source-2.0.33/drivers/scsi/gdth.c:#if LINUX_VERSION_CODE >= 0x010300
kernel-source-2.0.33/drivers/scsi/gdth.c:#if LINUX_VERSION_CODE >= 0x010346
kernel-source-2.0.33/drivers/scsi/gdth.c:#if LINUX_VERSION_CODE >= 0x010300
kernel-source-2.0.33/drivers/scsi/gdth.c:#if LINUX_VERSION_CODE >= 0x010300
kernel-source-2.0.33/drivers/scsi/gdth.c:#if LINUX_VERSION_CODE >= 0x010300
kernel-source-2.0.33/drivers/scsi/gdth.c:#if LINUX_VERSION_CODE >= 0x010300
kernel-source-2.0.33/drivers/scsi/gdth.c:#if LINUX_VERSION_CODE >= 0x010300
kernel-source-2.0.33/drivers/scsi/gdth.c:#if LINUX_VERSION_CODE >= 0x010300
kernel-source-2.0.33/drivers/scsi/gdth.c:#if LINUX_VERSION_CODE >= 0x010300
kernel-source-2.0.33/drivers/scsi/gdth.c:#if LINUX_VERSION_CODE >= 0x010346
kernel-source-2.0.33/drivers/scsi/gdth.c:#if LINUX_VERSION_CODE >= 0x010400
kernel-source-2.0.33/drivers/scsi/gdth.c:#if LINUX_VERSION_CODE >= 0x010300
kernel-source-2.0.33/drivers/scsi/gdth.c:#if LINUX_VERSION_CODE >= 0x010400
kernel-source-2.0.33/drivers/scsi/gdth.c:#if LINUX_VERSION_CODE >= 0x010300
kernel-source-2.0.33/drivers/scsi/gdth.c:#if LINUX_VERSION_CODE >= 0x010346
kernel-source-2.0.33/drivers/scsi/gdth.c:#if LINUX_VERSION_CODE >= 0x010400
kernel-source-2.0.33/drivers/scsi/gdth.c:#if LINUX_VERSION_CODE >= 0x010346 
kernel-source-2.0.33/drivers/scsi/gdth.c:#if LINUX_VERSION_CODE >= 0x010346 
kernel-source-2.0.33/drivers/scsi/gdth.c:#if LINUX_VERSION_CODE >= 0x010346 
kernel-source-2.0.33/drivers/scsi/gdth.c:#if LINUX_VERSION_CODE >= 0x010400
kernel-source-2.0.33/drivers/scsi/gdth.c:#if LINUX_VERSION_CODE >= 0x010346 
kernel-source-2.0.33/drivers/scsi/gdth.c:#if LINUX_VERSION_CODE >= 0x010346 
kernel-source-2.0.33/drivers/scsi/gdth.c:#if LINUX_VERSION_CODE >= 0x010400
kernel-source-2.0.33/drivers/scsi/gdth.c:#if LINUX_VERSION_CODE >= 0x010346 
kernel-source-2.0.33/drivers/scsi/gdth.c:#if LINUX_VERSION_CODE >= 0x010346 
kernel-source-2.0.33/drivers/scsi/gdth.c:#if LINUX_VERSION_CODE >= 0x010400
kernel-source-2.0.33/drivers/scsi/gdth.c:#if LINUX_VERSION_CODE >= 0x010346
kernel-source-2.0.33/drivers/scsi/gdth.c:#if LINUX_VERSION_CODE >= 0x010346
kernel-source-2.0.33/drivers/scsi/gdth.c:#if LINUX_VERSION_CODE >= 0x010300
kernel-source-2.0.33/drivers/scsi/gdth.c:#if LINUX_VERSION_CODE >= 0x010300
kernel-source-2.0.33/drivers/scsi/dc390.h:/* Convert Linux Version, Patch-level, Sub-level to LINUX_VERSION_CODE. */
kernel-source-2.0.33/drivers/scsi/dc390.h:#if LINUX_VERSION_CODE < ASC_LINUX_VERSION(1,3,50)
kernel-source-2.0.33/drivers/scsi/dc390.h:#elseif LINUX_VERSION_CODE < ASC_LINUX_VERSION(1,3,95)
kernel-source-2.0.33/drivers/scsi/gdth.h:#if LINUX_VERSION_CODE >= 0x010346
kernel-source-2.0.33/drivers/scsi/gdth.h:#if LINUX_VERSION_CODE >= 0x010300
kernel-source-2.0.33/drivers/scsi/gdth_proc.c:        piord->iu.osvers.version = (unchar)(LINUX_VERSION_CODE >> 16);
kernel-source-2.0.33/drivers/scsi/gdth_proc.c:        piord->iu.osvers.subversion = (unchar)(LINUX_VERSION_CODE >> 8);
kernel-source-2.0.33/drivers/scsi/gdth_proc.c:        piord->iu.osvers.revision = (ushort)(LINUX_VERSION_CODE & 0xff);
kernel-source-2.0.33/drivers/scsi/gdth_proc.c:#if LINUX_VERSION_CODE >= 0x010400
kernel-source-2.0.33/drivers/scsi/gdth_proc.c:#if LINUX_VERSION_CODE >= 0x010400
kernel-source-2.0.33/drivers/scsi/gdth_proc.c:#if LINUX_VERSION_CODE >= 0x010400
kernel-source-2.0.33/drivers/scsi/gdth_proc.c:#if LINUX_VERSION_CODE >= 0x010400
kernel-source-2.0.33/drivegrep: kernel-source-2.0.33/drivers/sound/.indent.pro: Permission denied
rs/scsi/tmscsim.c:#if LINUX_VERSION_CODE < 66354 /* 1.3.50 */
kernel-source-2.0.33/drivers/isdn/icn/icn.c:#if (LINUX_VERSION_CODE < 0x020111)
kernel-source-2.0.33/drivers/isdn/icn/icn.h:#if (LINUX_VERSION_CODE > 0x020111)
kernel-source-2.0.33/drivers/isdn/isdn_common.c:#if (LINUX_VERSION_CODE >= 0x020117)
kernel-source-2.0.33/drivers/isdn/isdn_common.c:#if (LINUX_VERSION_CODE < 0x020117)
kernel-source-2.0.33/drivers/isdn/isdn_common.c:#if (LINUX_VERSION_CODE < 0x020117)
kernel-source-2.0.33/drivers/isdn/isdn_common.h:#if (LINUX_VERSION_CODE < 0x020111)
kernel-source-2.0.33/drivers/isdn/isdn_net.c:#if (LINUX_VERSION_CODE < 0x02010f)	/* 2.1.15 */
kernel-source-2.0.33/drivers/isdn/isdn_net.c:#if (LINUX_VERSION_CODE < 0x02010F)
kernel-source-2.0.33/drivers/isdn/isdn_net.c:#if (LINUX_VERSION_CODE < 0x02010F)
kernel-source-2.0.33/drivers/isdn/isdn_net.c:#if (LINUX_VERSION_CODE < 0x02010F)
kernel-source-2.0.33/drivers/isdn/isdn_net.c:#if (LINUX_VERSION_CODE < 0x02010F)
kernel-source-2.0.33/drivers/isdn/isdn_net.c:#if (LINUX_VERSION_CODE < 0x02010F)
kernel-source-2.0.33/drivers/isdn/isdn_net.c:#if (LINUX_VERSION_CODE < 0x02010F)
kernel-source-2.0.33/drivers/isdn/isdn_ppp.c:#if (LINUX_VERSION_CODE >= 0x020117)
kernel-source-2.0.33/drivers/isdn/isdn_ppp.c:#if (LINUX_VERSION_CODE < 0x020117)
kernel-source-2.0.33/drivers/isdn/isdn_ppp.h:#if (LINUX_VERSION_CODE < 0x020117)
kernel-source-2.0.33/drivers/isdn/pcbit/module.c:#if (LINUX_VERSION_CODE > 0x020111)
kernel-source-2.0.33/drivers/isdn/pcbit/module.c:#if (LINUX_VERSION_CODE < 0x020111)
kernel-source-2.0.33/drivers/isdn/avmb1/capi.c:#if (LINUX_VERSION_CODE >= 0x020117)
kernel-source-2.0.33/drivers/isdn/avmb1/capi.c:#if LINUX_VERSION_CODE < 0x020100
kernel-source-2.0.33/drivers/isdn/avmb1/capi.c:#if LINUX_VERSION_CODE < 0x020100
kernel-source-2.0.33/drivers/isdn/avmb1/capi.c:#if LINUX_VERSION_CODE < 0x020100
kernel-source-2.0.33/drivers/isdn/avmb1/capi.c:#if (LINUX_VERSION_CODE < 0x020117)
kernel-source-2.0.33/drivers/isdn/avmb1/capi.c:#if LINUX_VERSION_CODE < 0x020100
kernel-source-2.0.33/drivers/isdn/avmb1/capi.c:#if (LINUX_VERSION_CODE < 0x020117)
kernel-source-2.0.33/drivers/isdn/avmb1/compat.h:#if LINUX_VERSION_CODE >= 0x020112	/* 2.1.18 */
kernel-source-2.0.33/drivers/isdn/hisax/callc.c:#if (LINUX_VERSION_CODE < 0x020111)
kernel-source-2.0.33/drivers/isdn/hisax/callc.c:#if (LINUX_VERSION_CODE < 0x020111)
kernel-source-2.0.33/drivers/isdn/hisax/config.c:#if (LINUX_VERSION_CODE > 0x020111)
kernel-source-2.0.33/drivers/isdn/hisax/config.c:#if (LINUX_VERSION_CODE < 0x020111)
kernel-source-2.0.33/drivers/isdn/isdn_syms.c:#if (LINUX_VERSION_CODE < 0x020111)
kernel-source-2.0.33/drivers/isdn/sc/debug.c:#if LINUX_VERSION_CODE < 66363	/* Linux 1.3.59 there was a change to interrupts */
kernel-source-2.0.33/drivers/isdn/sc/debug.h:#if LINUX_VERSION_CODE < 131072
kernel-source-2.0.33/drivers/isdn/sc/init.c:#if (LINUX_VERSION_CODE > 0x020111)
kernel-source-2.0.33/Documentation/IO-mapping.txt:	#if LINUX_VERSION_CODE < 0x020100                                     
/bin/bash: -c: line 2: syntax error: unexpected end of file


-- 
 Program: Any assignment that cannot be completed with one telephone
 call. Kelvin Throop III, "The Management Dictionary"
Manoj Srivastava  <srivasta@acm.org> <http://www.datasync.com/%7Esrivasta/>
Key C7261095 fingerprint = CB D9 F4 12 68 07 E4 05  CC 2D 27 12 1D F5 E8 6E


--
E-mail the word "unsubscribe" to debian-devel-request@lists.debian.org
TO UNSUBSCRIBE FROM THIS MAILING LIST. Trouble?  E-mail to listmaster@debian.org .


Reply to: