@@ -95,6 +95,19 @@ The developers can set up the source code with NVIDIA's Jetson git repositories
9595
9696./build_all.sh 5.1.2
9797```
98+ For Fangzhu FG12-16CH support (Currently only supported on 5.0.2):
99+ ```
100+ ./setup_workspace.sh 5.0.2
101+
102+ - Single camera connected to cam0:
103+ ./apply_patches.sh --fg12-16ch 5.0.2
104+
105+ - Dual camera connected to cam0 and cam4:
106+ ./apply_patches.sh --fg12-16ch-dual 5.0.2
107+
108+ ./build_all.sh 5.1.2
109+ ```
110+
98111Note: dev_dbg() log support will not be enabled by default. If needed, run the ` ./build_all.sh ` script with ` --dev-dbg ` option like below.
99112```
100113./build_all.sh --dev-dbg 5.1.2
@@ -111,6 +124,7 @@ The necessary files are:
111124- kernel image ` images/5.1.2/arch/arm64/boot/Image `
112125- dtb ` images/5.1.2/arch/arm64/boot/dts/nvidia/tegra194-p2888-0001-p2822-0000.dtb `
113126- D457 driver ` images/5.1.2/drivers/media/i2c/d4xx.ko `
127+ - MAX96712 driver ` images/5.1.2/drivers/media/i2c/max96712.ko `
114128- UVC Video driver ` images/5.1.2/drivers/media/usb/uvc/uvcvideo.ko `
115129- V4L2 Core Video driver ` images/5.1.2/drivers/media/v4l2-core/videobuf-core.ko `
116130- V4L2 VMalloc Video driver ` images/5.1.2/drivers/media/v4l2-core/videobuf-vmalloc.ko `
@@ -120,6 +134,7 @@ Copy build results from Host to Jetson target `10.0.0.116` user `nvidia`
120134scp ./images/5.1.2/arch/arm64/boot/Image nvidia@10.0.0.116:~/
121135scp ./images/5.1.2/arch/arm64/boot/dts/nvidia/tegra194-p2888-0001-p2822-0000.dtb nvidia@10.0.0.116:~/
122136scp ./images/5.1.2/drivers/media/i2c/d4xx.ko nvidia@10.0.0.116:~/
137+ scp ./images/5.1.2/drivers/media/i2c/max96712.ko nvidia@10.0.0.116:~/
123138scp ./images/5.1.2/drivers/media/usb/uvc/uvcvideo.ko nvidia@10.0.0.116:~/
124139scp ./images/5.1.2/drivers/media/v4l2-core/videobuf-core.ko nvidia@10.0.0.116:~/
125140scp ./images/5.1.2/drivers/media/v4l2-core/videobuf-vmalloc.ko nvidia@10.0.0.116:~/
@@ -132,6 +147,7 @@ sudo mkdir /lib/modules/$(uname -r)/updates
132147sudo cp Image /boot/d457/
133148sudo cp tegra194-p2888-0001-p2822-0000.dtb /boot/d457/
134149sudo cp d4xx.ko /lib/modules/$(uname -r)/updates/
150+ sudo cp max96712.ko /lib/modules/$(uname -r)/updates/
135151sudo cp uvcvideo.ko /lib/modules/$(uname -r)/updates/
136152sudo cp videobuf-core.ko /lib/modules/$(uname -r)/updates/
137153sudo cp videobuf-vmalloc.ko /lib/modules/$(uname -r)/updates/
0 commit comments