From: Eugene K. <ek...@hi...> - 2000-07-16 00:52:48
|
Jeff Dike wrote: > > ek...@hi... said: > > I get some errors compiling 2.4.0-test4 with patch-2.4.0-test4.bz2. > > It's my first time trying to compile a kernel with the uml patch, so > > please forgive me if I missed something obvious. > > It looks like the patch went in ok. 'make dep' isn't really necessary on the > first build because it's a full build, so full dependencies don't buy you > anything. > > Can we see the contents of include/linux/version.h, include/linux/compile.h, > and include/linux/uts.h from that pool? > > Jeff Thanks for your reply. Here are those three files : include/linux/version.h : -------------- #define UTS_RELEASE "2.4.0-test4-1um" #define LINUX_VERSION_CODE 132096 #define KERNEL_VERSION(a,b,c) (((a) << 16) + ((b) << 8) + (c)) include/linux/compile.h : -------------- #define UTS_VERSION "#1 Sat Jul 15 17:59:50 PDT 2000" #define LINUX_COMPILE_TIME "17:59:50" #define LINUX_COMPILE_BY "ekoontz" #define LINUX_COMPILE_HOST "hiro-tan.dhs.org" #define LINUX_COMPILE_DOMAIN "dhs.org" #define LINUX_COMPILER "gcc version 2.95 19990728 (release)" include/linux/uts.h : --------------- #ifndef _LINUX_UTS_H #define _LINUX_UTS_H /* * Defines for what uname() should return */ #ifndef UTS_SYSNAME #define UTS_SYSNAME "Linux" #endif #ifndef UTS_MACHINE #define UTS_MACHINE "unknown" #endif #ifndef UTS_NODENAME #define UTS_NODENAME "(none)" /* set by sethostname() */ #endif #ifndef UTS_DOMAINNAME #define UTS_DOMAINNAME "(none)" /* set by setdomainname() */ #endif #endif |