Boot time driver conflict


 
Thread Tools Search this Thread
Top Forums Shell Programming and Scripting Boot time driver conflict
# 1  
Old 09-08-2010
Boot time driver conflict

I have a Microdia web cam. Some times it won't work if and only if there is a "HV7131R image sensor detected" statement in the boot up.
In this case when I try to get a .png snapshot all I get is a frame full of what appears to be white noise only it is mostly green.
Here is the command I am using:
TV="-tv driver=v4l2:device=/dev/video${vd}:width=320:height=240:norm=NTSC:chanlist=us-cable:input=0:noaudioSmilieutfmt=i420"
OUT="-fps 30 -cache 128"
PIC="-hue 0 -brightness 0 -contrast 0 -saturation 0 -aspect 4:3"
mplayer tv:// $TV $OUT $PIC -vf screenshot -vo xv,x11,
This does not work when ${vd} is 0 or 1 and it is using HV7131R.
If it is not using HV7131R it works properly.
I think I am getting either gspca or HV7131R usage defined at boot time. Is there a way to force either one so I can test?
Hope it is OK here as the problem occurs in my script.
Login or Register to Ask a Question

Previous Thread | Next Thread

9 More Discussions You Might Find Interesting

1. UNIX for Advanced & Expert Users

Help with adding a new driver in initrd at install time

I have a really old distro (FC7) that I am trying to make compatible with some new hardware (ie. new RAID drivers)... I put the RAID driver into the ISO so that the installer can detect the RAID set... but post-install (aka: first boot) it appears that the Anaconda-generated initrd does not have... (0 Replies)
Discussion started by: jjinno
0 Replies

2. Hardware

Difference between platform driver,codec driver and Machine driver

In general terms what are the differences platform driver,codec driver and Machine driver? (1 Reply)
Discussion started by: rupeshkp728
1 Replies

3. UNIX for Dummies Questions & Answers

boot option Available partitions 0b00 1048575 sr0 driver:sr 0800 488386584 sda driver:sd

Help, suspect hacked via serial or electric! any ideas on error "Pid:1, comm:swapper Tainted:G W 2.6.35-22 generic #33 -unbutu device = "(null)" or unknown-blocklist(8.1) please append a correct "root"boot option Available partitions 0b00 1048575 sr0 driver:sr 0800 488386584 sda driver:sd. Thanks... (3 Replies)
Discussion started by: kryclear
3 Replies

4. Solaris

Solaris 10 crashes upon boot after TUN driver installed

Hey! I compiled TUN 1.1 driver on my Solaris 10 64bit, and everything was working fine, all the commands for installation were successfull (add_drv, devfsadm -i tun ... etc.) and the driver was working fine as I got OpenVPN server up and running with successful clients attached. My only problem... (2 Replies)
Discussion started by: TomSu
2 Replies

5. HP-UX

I want to get machine boot up time

I use the uptime command,but it only show how long system has been up up 18 days but I want the this format machine boot time YYYY-MM-DD hh:mm:ss does any command can get that or how to i use program to do this (6 Replies)
Discussion started by: alert0919
6 Replies

6. HP-UX

HP UX start process at boot time

When I get start program at boot I read which run level /sbin/rcx.d runlevel=0.....x only read directory which directory name has UpperCase 'S' is not enough someone says that I need to reference another file which file I need to reference 1)/etc/rc.config.d/all file which parameter... (4 Replies)
Discussion started by: alert0919
4 Replies

7. Programming

How to get time since last boot?

How do I get the number of tics or seconds since the last boot? How do I convert tics to seconds? Thanks, Siegfried (3 Replies)
Discussion started by: siegfried
3 Replies

8. UNIX for Advanced & Expert Users

start a process at boot up time

Hi, I have a program that check the IP address and automatic update it to the DNS server. I would like to run this program when the computer bootup after pppd get a connection. How do I add it to the init file. Does any one have any information of how to do it. I run a Linux Mandrake as a... (1 Reply)
Discussion started by: vtran4270
1 Replies

9. UNIX for Dummies Questions & Answers

Defining variables at boot time

Hi, I'm looking for advice on where is the best place on Solaris to put a script that will setup system vairables prior to any users loging in. I've tried /etc/rc3.d without much success as the variables do not appear in the output from an env command. I want the system to have these... (7 Replies)
Discussion started by: ianf
7 Replies
Login or Register to Ask a Question
MKIMAGE(1)						      General Commands Manual							MKIMAGE(1)

NAME
mkimage - Generate image for U-Boot SYNOPSIS
mkimage [options] DESCRIPTION
The mkimage command is used to create images for use with the U-Boot boot loader. These images can contain the linux kernel, device tree blob, root file system image, firmware images etc., either separate or combined. mkimage supports two different formats: The old legacy image format concatenates the individual parts (for example, kernel image, device tree blob and ramdisk image) and adds a 64 bytes header containing information about target architecture, operating system, image type, compression method, entry points, time stamp, checksums, etc. The new FIT (Flattened Image Tree) format allows for more flexibility in handling images of various types and also enhances integrity pro- tection of images with stronger checksums. OPTIONS
List image information: -l [uimage file name] mkimage lists the information contained in the header of an existing U-Boot image. Create old legacy image: -A [architecture] Set architecture. Pass -h as the architecture to see the list of supported architectures. -O [os] Set operating system. bootm command of u-boot changes boot method by os type. Pass -h as the OS to see the list of supported OS. -T [image type] Set image type. Pass -h as the image to see the list of supported image type. -C [compression type] Set compression type. Pass -h as the compression to see the list of supported compression type. -a [load addess] Set load address with a hex number. -e [entry point] Set entry point with a hex number. -n [image name] Set image name to 'image name'. -d [image data file] Use image data from 'image data file'. -x Set XIP (execute in place) flag. Create FIT image: -D [dtc options] Provide special options to the device tree compiler that is used to create the image. -f [image tree source file] Image tree source file that describes the structure and contents of the FIT image. EXAMPLES
List image information: mkimage -l uImage Create legacy image with compressed PowerPC Linux kernel: mkimage -A powerpc -O linux -T kernel -C gzip -a 0 -e 0 -n Linux -d vmlinux.gz uImage Create FIT image with compressed PowerPC Linux kernel: mkimage -f kernel.its kernel.itb HOMEPAGE
http://www.denx.de/wiki/U-Boot/WebHome AUTHOR
This manual page was written by Nobuhiro Iwamatsu <iwamatsu@nigauri.org> and Wolfgang Denk <wd@denx.de> 2010-05-16 MKIMAGE(1)