summaryrefslogtreecommitdiff
path: root/.hgignore
AgeCommit message (Collapse)Author
2007-10-03build: update .hgignore fileTrent Piepho
From: Trent Piepho <xyzzy@speakeasy.org> .hgignore uses regexs, not filename globs. Most needed a '$' at the end, so something like v4l/Kconfig (ignored) didn't match v4l/Kconfig.sound (not ignored). Adjust "v4l/.*\.h" do it doesn't ignore v4l/compat.h and v4l/i2c-compat.h. Ignore .patch and .diff files. Combine some .o and .a regexs. Add new regexs for new test and util binaries. Signed-off-by: Trent Piepho <xyzzy@speakeasy.org>
2007-08-23Add capability to remove obsolete drivers with make rmmodMauro Carvalho Chehab
From: Mauro Carvalho Chehab <mchehab@infradead.org> Signed-off-by: Mauro Carvalho Chehab <mchehab@infradead.org>
2007-01-08.hgignore were missing several created filesMauro Carvalho Chehab
From: Mauro Carvalho Chehab <mchehab@infradead.org> Signed-off-by: Mauro Carvalho Chehab <mchehab@infradead.org>
2006-11-15Initiated v4l-apps/lib V4L2 functionsMauro Carvalho Chehab
From: Mauro Carvalho Chehab <mchehab@infradead.org> - Created v4l2_driver.c with some basic functions to: . Enum STD, INPUT and FORMAT . GET/SET STD and INPUT . GET PARAM - ioctl-test reverted back to a simple "brute-force" all ioctl call; - driver-test created to: . test V4L2 kernel drivers; . implement all functions provided by v4l2 library - driver-test should grow following the changes at v4l2-apps/lib Signed-off-by: Mauro Carvalho Chehab <mchehab@infradead.org>
2006-08-30Add Module.symvers to .hgignore fileTrent Piepho
From: Trent Piepho <xyzzy@speakeasy.org> Recently the name for the module symbol version file for external modules changed from Modules.symvers to Module.symvers. Add the new name to .hgignore. Signed-off-by: Trent Piepho <xyzzy@speakeasy.org>
2006-08-17Avoid warning about quilt dirs.Mauro Carvalho Chehab
From: Mauro Carvalho Chehab <mchehab@infradead.org> Signed-off-by: Mauro Carvalho Chehab <mchehab@infradead.org>
2006-08-06Ignore also v4l/ivtvMauro Carvalho Chehab
From: Mauro Carvalho Chehab <mchehab@infradead.org> Signed-off-by: Mauro Carvalho Chehab <mchehab@infradead.org>
2006-05-13Added a v4l vbi small test application.Mauro Carvalho Chehab
From: Mauro Carvalho Chehab <mchehab@infradead.org> Also removed whitespaces from test environment Signed-off-by: Mauro Carvalho Chehab <mchehab@infradead.org>
2006-05-07fix ability to pass compile-time build options when building from the hg repoMichael Krufky
From: Michael Krufky <mkrufky@linuxtv.org> When building in-kernel, compile-time build options are passed into the compiler using '#include <linux/config.h>' . This file #include's <linux/autoconf.h> , which is created on the fly by the kbuild system. However, this does not work correctly when building from the mercurial repository, since the kernel is built indepentently of v4l/.myconfig This creates a "config-compat.h", which will be #include'd by compat.h and will emulate <linux/config.h> for the local build. Signed-off-by: Michael Krufky <mkrufky@linuxtv.org>
2006-05-02Added some autogenerated files at hgignoreMauro Carvalho Chehab
From: Mauro Carvalho Chehab <mchehab@infradead.org> Signed-off-by: Mauro Carvalho Chehab <mchehab@infradead.org>
2006-04-09If .myconfig is not found, make will do allmodconfig.Mauro Carvalho Chehab
From: Mauro Carvalho Chehab <mchehab@infradead.org> Signed-off-by: Mauro Carvalho Chehab <mchehab@infradead.org>
2006-04-07Big changes at v4l-dvb make internal workingMauro Carvalho Chehab
From: Mauro Carvalho Chehab <mchehab@infradead.org> Previously, tree building were based on Make.config. This file contained all compiling stuff. Also, v4l/Makefile contained all drivers that should be copiled, replicating the rules of all other Makefiles under linux. Now, make will rely on linux/*/Makefile to compile the modules. This approach allows usage of Kconfig files, allowing partial compilations. Newer makefile commands introduced: make allmodconfig - Selects all stuff to be compiled as module; make config - Selects packages via text interface; make xconfig - Selects packages via qt interface; make gconfig - selects packages via gtk interface. for config, xconfig and gconfig to be used, those scripts needs to be previously compiled at kernel. So, user needs to use those commands previously at kernel tree. Signed-off-by: Mauro Carvalho Chehab <mchehab@infradead.org>
2006-03-26Some cleanups at make xconfigMauro Carvalho Chehab
From: Mauro Carvalho Chehab <mchehab@infradead.org> Now, it doesn't depend on kernel Kconfig stuff: - It generates a Kconfig.kern based on unsolved dependencies. - It assumes that all needed dependencies were compiled as module. Only Multimedia tree is showed to the user. To work, user should have runned xconfig before at the normal kernel tree. Signed-off-by: Mauro Carvalho Chehab <mchehab@infradead.org>
2006-02-06Included hg ignore fileMauro Carvalho Chehab
From: Mauro Carvalho Chehab <mchehab@infradead.org> All .c files at v4l dir, object files, and temporary ones will be ignored by hg. Now, hg status will work properly. Signed-off-by: Mauro Carvalho Chehab <mchehab@infradead.org>