>  Hello, 
>  i would like to boot my PC directly on TV. (with a default lilo
>  configuration on TV)
>   
>  anyone has an idea how i can deal with this problem? 

Write up a shell script and boot it using the init= kernel arg

  Gerd

-----------------------------------------------------------------------
#! /bin/bash

# nice for debugging
set -ex
trap "exec /bin/bash" EXIT

# setup environment
export PATH="/sbin:/usr/sbin:/bin:/usr/bin:/usr/local/bin:/usr/X11R6/bin"
export HOME="/root"             # find ~/.xawtv

# need /usr
mount -o ro /usr

# load+init drivers
modprobe bttv                   # v4l
modprobe saa7134                # v4l
modprobe es1370                 # sound
modprobe matroxfb_base          # fb
fbset tv

# watch tv
fbtv </dev/tty1 >/dev/tty1 -c /dev/video1

# reboot when done
reboot -f



_______________________________________________
Video4linux-list mailing list
[EMAIL PROTECTED]
https://listman.redhat.com/mailman/listinfo/video4linux-list

Reply via email to