From: <One...@ao...> - 2004-03-11 20:20:47
|
It seems that PPC OS X computers seem to have some troubles with the kernel version I assume due to big endian numbers. This is how I was able to bypass the problem: The error I recieve is: "KERNELRELEASE "2.4.24-uc0" exceeds 64 characters" If you receive that warning go into the Makefile in the root directory of the linux source and replace: @expr length "$(KERNELRELEASE)" \<= $(uts_len) > /dev/null || \ with: @expr `expr "$(KERNELRELEASE)" : '.*'` \<= $(uts_len) > /dev/null || \ Cheers, Jeff |