1 This is an experimental build system for media drivers.
2 All files on this tree are covered by GPLv2, as stated at COPYING file.
6 Just call the build utility:
9 Then, install the drivers as root, with:
12 In order to test, unload old drivers with:
15 Then modprobe the driver you want to test. For example, to load driver 'foo':
19 If you're developing a new driver or patch, it is better to use:
22 Then, install the drivers as root, with:
25 In order to test, unload old drivers with:
28 Then modprobe the driver you want to test. For example:
31 In this case, in order to modify something, you should edit the file at
34 For example, a typical procedure to develop a new patch would be:
36 ~/media_build $ cd media
37 ~/media $ gedit drivers/media/video/foo.c
38 ~/media $ make -C ../v4l
39 ~/media $ make -C .. rmmod
40 ~/media $ modprobe foo
41 (some procedure to test the "foo" driver)
42 ~/media $ git diff >/tmp/my_changes.patch
43 (email /tmp/my_changes.patch inlined to linux-media@vger.kernel.org)