Gentoo Websites Logo
Go to: Gentoo Home Documentation Forums Lists Bugs Planet Store Wiki Get Gentoo!
Bug 26340 - mm-sources-2.6.0_beta3-r1 fails
Summary: mm-sources-2.6.0_beta3-r1 fails
Status: RESOLVED WONTFIX
Alias: None
Product: Gentoo Linux
Classification: Unclassified
Component: [OLD] Core system (show other bugs)
Hardware: x86 Linux
: High normal (vote)
Assignee: x86-kernel@gentoo.org (DEPRECATED)
URL:
Whiteboard:
Keywords:
Depends on:
Blocks:
 
Reported: 2003-08-10 10:38 UTC by merwan kashouty
Modified: 2003-08-10 15:43 UTC (History)
0 users

See Also:
Package list:
Runtime testing required: ---


Attachments

Note You need to log in before you can comment on or make changes to this bug.
Description merwan kashouty 2003-08-10 10:38:52 UTC
JaiBaba linux-2.6.0-test3-mm1 # make 
  HOSTCC  scripts/modpost.o 
  HOSTLD  scripts/modpost 
make[1]: `arch/i386/kernel/asm-offsets.s' is up to date. 
  CHK     include/linux/compile.h 
  CC [M]  drivers/media/video/videodev.o 
drivers/media/video/videodev.c:398: `video_proc_entry' undeclared here (not in a 
function) 
drivers/media/video/videodev.c:398: initializer element is not constant 
drivers/media/video/videodev.c:398: (near initialization for 
`__ksymtab_video_proc_entry.value') 
make[3]: *** [drivers/media/video/videodev.o] Error 1 
make[2]: *** [drivers/media/video] Error 2 
make[1]: *** [drivers/media] Error 2 
make: *** [drivers] Error 2 
 
 
make finishes with the vanilla 2.6.0_beta3  

Reproducible: Always
Steps to Reproduce:
1.run make 
2. 
3.
Comment 1 handsomepete 2003-08-10 13:06:16 UTC
Andrew Morton sez, "Just delete that line." 
(drivers/media/video/videodev.c:398).  

http://marc.theaimsgroup.com/?l=linux-kernel&m=106050668829093&w=2
Comment 2 Tim Yamin (RETIRED) gentoo-dev 2003-08-10 15:43:36 UTC
WONTFIX, this isn't really an official release which we support [ pfeifer ]. Fix is here for anybody who wants it.

Patch to ebuild:
----------------

add:

sed '398d' drivers/media/video/videodev.c > temp
mv temp drivers/media/video/videodev.c

after: 

bzcat ${DISTDIR}/${KV}.bz2 | patch -p1 || die "mm patch failed"

[ Or just remove the line manually ]