summaryrefslogtreecommitdiff
path: root/v4l
AgeCommit message (Collapse)Author
2006-03-08Add mxb, dpc7146, hexium_orion and hexium_gemini to the MakefileMichael Hunold
From: Michael Hunold <hunold@linuxtv.org> Signed-off-by: Michael Hunold <hunold@linuxtv.org>
2006-03-08Fixed a small bug at hghead.plMauro Carvalho Chehab
From: Mauro Carvalho Chehab <mchehab@infradead.org> Commiter name were not preserved by mailimport at the way it was. Now, commiter name will be the HGUSER, and from: line will be included at commit message, preserving both commiter and patch authors. Signed-off-by: Mauro Carvalho Chehab <mchehab@infradead.org>
2006-03-08Added a script to make easier to import patches sent by emailMauro Carvalho Chehab
From: Mauro Carvalho Chehab <mchehab@infradead.org> This script is capable to mass import patches on a mbox file, test for it, allow comment editing and applying it. This script requires: 1) git, since it uses gitimport to break a mbox into patches; 2) hg mailqueue. It is easier to manage patches using mq, allowing to work with the patches before applying to the tree. Signed-off-by: Mauro Carvalho Chehab <mchehab@infradead.org>
2006-03-03Merge from pascoeMauro Carvalho Chehab
From: Mauro Carvalho Chehab <mchehab@infradead.org> merge: Signed-off-by: Mauro Carvalho Chehab <mchehab@infradead.org>
2006-03-01Added make qconfig option to allow testing v4l/dvb menusMauro Carvalho Chehab
From: Mauro Carvalho Chehab <mchehab@infradead.org> - make qconfig option were added. - This will generate a menu with v4l/dvb Kconfig menus at the beginning of the menus and the kernel menus at the end. Kernel menus shoudn't be touched. - .config is then generated after quiting. - Curently, .config is not used by Makefile proccess but it is a good candidate to be a replacement of Make.config file. With a good .config file, compilation should be faster. Signed-off-by: Mauro Carvalho Chehab <mchehab@infradead.org>
2006-02-28DViCO FusionHDTV DVB-T Hybrid and ZL10353-based FusionHDTV DVB-T Plus supportChris Pascoe
From: Chris Pascoe <c.pascoe@itee.uq.edu.au> Add support for the FE6600 tuner used on the DVB-T Hybrid board. Add support for the Zarlink ZL10353 DVB-T demodulator, which supersedes the MT352, used on the DViCO FusionHDTV DVB-T Hybrid and later model Plus boards. Signed-off-by: Chris Pascoe <c.pascoe@itee.uq.edu.au>
2006-02-27remove test for CONFIG_VIDEO_DEV to set inst_video += videodev.koMichael Krufky
From: Michael Krufky <mkrufky@linuxtv.org> The test " ifeq ($(CONFIG_VIDEO_DEV),m) " isn't working in the inst_foo section of the Makefile. Since we are already warning the user that errors may occur in the install step, it is safe to include videodev.ko whether or not it is actually present. Signed-off-by: Michael Krufky <mkrufky@linuxtv.org>
2006-02-26add pvrusb2 to local v4l-dvb buildMichael Krufky
From: Michael Krufky <mkrufky@linuxtv.org> - removed 'make pvrusb2' merge command - created in-kernel Makefile, Kconfig not yet done. Signed-off-by: Michael Krufky <mkrufky@linuxtv.org>
2006-02-24Merge mkrufky treeMauro Carvalho Chehab
From: Mauro Carvalho Chehab <mchehab@infradead.org> merge: Signed-off-by: Mauro Carvalho Chehab <mchehab@infradead.org>
2006-02-24Add cpia2 camera supportMauro Carvalho Chehab
From: Alan Cox <alan@redhat.com> There has been a CPIA2 driver out of kernel for a long time and it has been pretty clean for some time too. This is an import of the sourceforge driver which has been stripped of - 2.4 back compatibility - 2.4 old style MJPEG ioctls A couple of functions have been made static and the docs have been repackaged into Documentation/video4linux. The rvmalloc/free functions now match the cpia driver again. Other than that this is the code as is. Tested on x86-64 with a QX5 microscope. Signed-off-by: Alan Cox <alan@redhat.com> Signed-off-by: Andrew Morton <akpm@osdl.org> Signed-off-by: Mauro Carvalho Chehab <mchehab@infradead.org>
2006-02-20set 'make ivtv-update' to depend on 'make ivtv' instead of 'make ivtv-checkout'Michael Krufky
From: Michael Krufky <mkrufky@linuxtv.org> This ensures that ivtv-svnversion.h and the ivtv symlinks are present, in case 'make clean' was run prior to 'make ivtv-update' Signed-off-by: Michael Krufky <mkrufky@linuxtv.org>
2006-02-17sed -i 's/c,h/ch/1' MakefileMichael Krufky
From: Michael Krufky <mkrufky@linuxtv.org> The symlink commands in the Makefile used to look like: @find ../linux/drivers/media -name '*.[c,h]' -type f -exec ln -sf '{}' . \; the ',' should not be there. The correct command is: @find ../linux/drivers/media -name '*.[ch]' -type f -exec ln -sf '{}' . \; Signed-off-by: Michael Krufky <mkrufky@linuxtv.org>
2006-02-16update 'make pvrusb2' merged build commandMichael Krufky
From: Michael Krufky <mkrufky@linuxtv.org> - use file .pvrusb2-merged to determine tree state rather than the previous method, which used a self-altering Makefile through an embedded patch in merge-pvrusb2.sh (removed) Signed-off-by: Michael Krufky <mkrufky@linuxtv.org>
2006-02-16ivtv: report v4l-dvb + ivtv virtual merge in dmesg version stringMichael Krufky
From: Michael Krufky <mkrufky@linuxtv.org> report "v4l-dvb + ivtv virtual merge" in ivtv's dmesg version string Signed-off-by: Michael Krufky <mkrufky@linuxtv.org>
2006-02-16'make ivtv' requires subversionMichael Krufky
From: Michael Krufky <mkrufky@linuxtv.org> - inform the user that subversion is required to retreive the ivtv sources. - added 'make ivtv-update' Signed-off-by: Michael Krufky <mkrufky@linuxtv.org>
2006-02-16make ivtv: virtual tree mergeMichael Krufky
From: Michael Krufky <mkrufky@linuxtv.org> - 'make ivtv' will retreive the latest sources from ivtv svn trunk - 'make' will build the entire v4l-dvb tree including ivtv - 'make' (without previously running 'make ivtv') will build using previous behavior. Signed-off-by: Michael Krufky <mkrufky@linuxtv.org>
2006-02-15install videodev.ko for 2.6 kernelsMichael Krufky
From: Michael Krufky <mkrufky@linuxtv.org> Make.config had incorrect logic to determine whether to install videodev.ko We must test that PATCHLEVEL >= 6, not SUBLEVEL. Signed-off-by: Michael Krufky <mkrufky@linuxtv.org>
2006-02-12move CONFIG_DVB_FIRESAT to the right placeMichael Krufky
From: Michael Krufky <mkrufky@linuxtv.org> - move CONFIG_DVB_FIRESAT to the right place in Make.config - this is still in v4l_experimental Signed-off-by: Michael Krufky <mkrufky@linuxtv.org>
2006-02-11From: Mauro Carvalho Chehab <mchehab@infradead.org>Mauro Carvalho Chehab
Solving conflicts at the tree Signed-off-by: Mauro Carvalho Chehab <mchehab@infradead.org>
2006-02-08Fixed a bug at makefileMauro Carvalho Chehab
From: Mauro Carvalho Chehab <mchehab@infradead.org> Signed-off-by: Mauro Carvalho Chehab <mchehab@infradead.org>
2006-02-08XC3028 code marked with an special define optionMauro Carvalho Chehab
From: Mauro Carvalho Chehab <mchehab@infradead.org> - Current xc3028 support is still experimental, requiring more work to be sent to mainstream. So, it was marked inside some defines, in order to be removed by gentree.pl stript. Script also updated to remove it. Signed-off-by: Mauro Carvalho Chehab <mchehab@infradead.org>
2006-02-08merged patch at master tree.Mauro Carvalho Chehab
Signed-off-by: Mauro Carvalho Chehab <mchehab@infradead.org> ------------
2006-02-06implemented compat.h for mutex_trylock()Mauro Carvalho Chehab
From: Mauro Carvalho Chehab <mchehab@infradead.org> Fixed also a small mistake at including mutex.h kernel-sync Signed-off-by: Mauro Carvalho Chehab <mchehab@infradead.org>
2006-02-04fixed compiling the firmware into the av7110 driverOliver Endriss
From: Oliver Endriss <o.endriss@gmx.de> Fixed compiling av7110 firmware into the driver. It did not work unless you specified the firmware path in the kernel configuration (make menuconfig etc). Now it is sufficient to uncomment two lines in Make.config... Signed-off-by: Oliver Endriss <o.endriss@gmx.de>
2006-02-02remove (local) Makefile patch from 'make kernel-links'Michael Krufky
From: Michael Krufky <mkrufky@linuxtv.org> Previously, 'make kernel-links' would patch the local Makefile, such that 'make clean' would return the repository to its natural state. This is causing maintenance problems, so I am removing it for now. After running 'make kernel-links', one should re-clone the v4l-dvb repo, until further notice. WARNING: make kernel-links will destroy your kernel sources, and symlink all v4l-dvb sources to the sources in this repository. Use this build method at your own risk! Signed-off-by: Michael Krufky <mkrufky@linuxtv.org>
2006-02-02fixed xc3028 makefile entryMarkus Rechberger
From: Markus Rechberger <mrechberger@gmail.com> fixed xc3028 makefile entry Signed-off-by: Markus Rechberger <mrechberger@gmail.com>
2006-02-01added support for xc3028 analogue tuner (Hauppauge HVR900, Terratec Hybrid XS)Markus Rechberger
From: Markus Rechberger <mrechberger@gmail.com> added support for xc3028 to v4l which adds support for: * Terratec Hybrid XS (analogue) * Hauppauge HVR 900 (analogue) Signed-off-by: Markus Rechberger <mrechberger@gmail.com>
2006-01-31fix build error caused in previous commitMichael Krufky
From: Michael Krufky <mkrufky@linuxtv.org> fix build error caused in previous commit Signed-off-by: Michael Krufky <mkrufky@linuxtv.org>
2006-01-31firesat needs ieee1394 headersMichael Krufky
From: Michael Krufky <mkrufky@linuxtv.org> when building the experimental firesat driver, include the header files in (srctree)/drivers/ieee1394/ Signed-off-by: Michael Krufky <mkrufky@linuxtv.org>
2006-01-31add firesat driver to local buildMichael Krufky
From: Michael Krufky <mkrufky@linuxtv.org> - add firesat driver to local build - this driver is in v4l_experimental, and will not be built by default Signed-off-by: Michael Krufky <mkrufky@linuxtv.org>
2006-01-31Fixed a bug at strip-trailing-whitespacesMauro Carvalho Chehab
From: Mauro Carvalho Chehab <mchehab@infradead.org> Sometimes, it was needed to run it several times. fixed. Signed-off-by: Mauro Carvalho Chehab <mchehab@infradead.org>
2006-01-29ChangeLog file removed from v4l-dvb Mercurial treeMauro Carvalho Chehab
From: Mauro Carvalho Chehab <mchehab@infradead.org> - This patch removes ChangeLog file. with Mercurial, it can be generated any time by running hg logs -v. - Makefile and prep_commit_msg.pl updated to work without ChangeLog. - Removed/Adapted instructions on README.HG about ChangeLog. - prepare-Changelog.pl changed to just report one line. This might help people to identify functions that were changed by a patchset. Signed-off-by: Mauro Carvalho Chehab <mchehab@infradead.org>
2006-01-29Use the login name with the ssh URL.Hans Verkuil
From: Hans Verkuil <hverkuil@xs4all.nl> Use the login name with the ssh URL. This allows you to use make push, even if your local username differs from the repo username. Signed-off-by: Hans Verkuil <hverkuil@xs4all.nl>
2006-01-29fix typos and add 'make push' descriptionHans Verkuil
From: Hans Verkuil <hverkuil@xs4all.nl> Fixed typos and add a description of make push and emphasize that make commit commits to the local repository, not the master. Signed-off-by: Hans Verkuil <hverkuil@xs4all.nl>
2006-01-28Some review, thanks to Johannes Stezenbach.Mauro Carvalho Chehab
From: Mauro Carvalho Chehab <mchehab@infradead.org> Signed-off-by: Mauro Carvalho Chehab <mchehab@infradead.org>
2006-01-28make pull will now do push -uMauro Carvalho Chehab
From: Mauro Carvalho Chehab <mchehab@infradead.org> pull -u allows retriving info from master database and also update local files. Signed-off-by: Mauro Carvalho Chehab <mchehab@infradead.org>
2006-01-28Removed commit from make pushMauro Carvalho Chehab
From: Mauro Carvalho Chehab <mchehab@infradead.org> This allows commiting at local tree first Signed-off-by: Mauro Carvalho Chehab <mchehab@infradead.org>
2006-01-28Updated SCM infoMauro Carvalho Chehab
From: Mauro Carvalho Chehab <mchehab@infradead.org> Removed README.CVS README.HG now contains more info about usage with HG. Signed-off-by: Mauro Carvalho Chehab <mchehab@infradead.org>
2006-01-28Several fixes for using with mercurialMauro Carvalho Chehab
From: Mauro Carvalho Chehab <mchehab@infradead.org> cvs commands replaced to hg created a new script to help commiting Signed-off-by: Mauro Carvalho Chehab <mchehab@infradead.org>
2006-01-25Added small setupscriptMarkus Rechberger
From: Markus Rechberger <mrechberger@gmail.com> Signed-off-by: Markus Rechberger <mrechberger@gmail.com>
2006-01-25cleanupsMarkus Rechberger
From: Markus Rechberger <mrechberger@gmail.com> Signed-off-by: Markus Rechberger <mrechberger@gmail.com>
2006-01-25xc3028 fixesMarkus Rechberger
From: Markus Rechberger <mrechberger@gmail.com> Signed-off-by: Markus Rechberger <mrechberger@gmail.com>
2006-01-25Typo in READMEMarkus Rechberger
From: Markus Rechberger <mrechberger@gmail.com> Signed-off-by: Markus Rechberger <mrechberger@gmail.com>
2006-01-25Hauppauge HVR 900 supportMarkus Rechberger
From: Markus Rechberger <mrechberger@gmail.com> Signed-off-by: Markus Rechberger <mrechberger@gmail.com>
2006-01-24bug-fixMichael Krufky
bug-fix: allow tristate build for cx88-vp3054-i2c - allow tristate build for cx88-vp3054-i2c Signed-off-by: Michael Krufky <mkrufky@m1k.net>
2006-01-23Fix minor bug in pvrusb2 where audio mode wasn't updating correctlyMike Isely
From: Mike Isely <isely@pobox.com> Signed-off-by: Mike Isely <isely@pobox.com>
2006-01-23Use mutexes in pvrusb2 for kernel 2.6.16 or laterMike Isely
From: Mike Isely <isely@pobox.com> Signed-off-by: Mike Isely <isely@pobox.com>
2006-01-23removed duplicated tuner_rangesMichael Krufky
Signed-off-by: Michael Krufky <mkrufky@m1k.net>
2006-01-23remove nxt2002 from insmod.shMichael Krufky
Signed-off-by: Michael Krufky <mkrufky@m1k.net>
2006-01-23move config byte from tuner_params to tuner_range struct.Michael Krufky
- move config byte from tuner_params to tuner_range struct. - dvb tuners must be able to set different config byte for each range. Signed-off-by: Michael Krufky <mkrufky@m1k.net>