I've tried freevo on a 2.6 kernel and the only differnence I've found is
that kernel is always using V4l2 interface.
So I've made a patch for that:

if os.uname()[0] == 'FreeBSD':
    TV_DRIVER = 'bsdbt848'
    TV_DEVICE = '/dev/bktr0'
    TV_INPUT = 1
else:
    TV_DEVICE = '/dev/video0'
    TV_INPUT = 0
    if os.uname()[2].find("2.6") != -1:
        TV_DRIVER = 'v4l2'
    else:
        TV_DRIVER = 'v4l'





-------------------------------------------------------
This SF.net email is sponsored by: IBM Linux Tutorials.
Become an expert in LINUX or just sharpen your skills.  Sign up for IBM's
Free Linux Tutorials.  Learn everything from the bash shell to sys admin.
Click now! http://ads.osdn.com/?ad_id=1278&alloc_id=3371&op=click
_______________________________________________
Freevo-devel mailing list
[EMAIL PROTECTED]
https://lists.sourceforge.net/lists/listinfo/freevo-devel

Reply via email to