Mailing List Archive

cx18: View changes since given merge with kernel mainline?
Hi Andy,

I was wondering, is there any way to filter the v4l-dvb repo information to
view cx18 or ivtv only changes? We're interested in seeing what has been
added since a given merge with the kernel mainline? For example, right now
we're using 2.6.31-5 for something and want to determine what, if any,
changes have been done to relevant trees since that merge. Any suggestions?

Thanks again for all your work on this project.

-Jeff
Re: cx18: View changes since given merge with kernel mainline? [ In reply to ]
On Thu, 2009-11-26 at 10:23 -0800, Jeff Campbell wrote:
> Hi Andy,
>
> I was wondering, is there any way to filter the v4l-dvb repo
> information to view cx18 or ivtv only changes? We're interested in
> seeing what has been added since a given merge with the kernel
> mainline? For example, right now we're using 2.6.31-5 for something
> and want to determine what, if any, changes have been done to relevant
> trees since that merge. Any suggestions?

Well if you clone out the master v4l-dvb tree...


$ hg clone http://linuxtv.org/hg/v4l-dvb
$ cd v4l-dvb
$ hg log -v linux/drivers/media/video/cx18/* | less
(verbose summaries of all changes that touched files in the cx18
directory)

$ hg log -vp linux/drivers/media/video/cx18/* | less
(same thing except with the patches too)

That won't catch tuner or demodulator or other I2C support chip changes
though. You'll have to add directories or files:

$ hg log -v linux/drivers/media/video/cx18/* \
linux/drivers/media/dvb/frontends/s5h1409.* \
linux/drivers/media/common/tuners/mxl5005* \
linux/drivers/media/video/cs5345.c \
(etc)

If you have a particular date in mind, hg also takes a date argument.

$ hg log -v --date ">10/31/09" linux/drivers/media/video/cx18/*

see "man hg" and search for "DATE FORMATS"



> Thanks again for all your work on this project.

You're welcome. I hope all is going well with you.

Regards,
Andy

> -Jeff



_______________________________________________
ivtv-devel mailing list
ivtv-devel@ivtvdriver.org
http://ivtvdriver.org/mailman/listinfo/ivtv-devel