Skip to content

Commit e33346c

Browse files
authored
Merge pull request #1 from clydemcqueen/fix_typos
Fix typos, add NPROC
2 parents 0c10c00 + 1051c4a commit e33346c

File tree

2 files changed

+7
-7
lines changed

2 files changed

+7
-7
lines changed

Makefile

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ package:
1010
tar -C install -cjvf install.tar.bz2 lib/ boot/
1111

1212
vc-mipi-driver-modules: nvidia-oot-modules
13-
$(MAKE) \
13+
$(MAKE) -j $(NPROC) \
1414
KBUILD_EXTRA_SYMBOLS=$(MAKEFILE_DIR)/nvidia-oot/Module.symvers \
1515
CONFIG_TEGRA_OOT_MODULE=y \
1616
srctree.nvidia-oot=$(MAKEFILE_DIR)/nvidia-oot \
@@ -39,7 +39,7 @@ nvidia-oot-conftest:
3939
-f $(NVIDIA_CONFTEST)/nvidia/Makefile
4040

4141
nvidia-hwpm-modules: nvidia-oot-conftest
42-
$(MAKE) \
42+
$(MAKE) -j $(NPROC) \
4343
CONFIG_TEGRA_OOT_MODULE=m \
4444
srctree.hwpm=$(MAKEFILE_DIR)/nvidia-hwpm \
4545
srctree.nvconftest=$(NVIDIA_CONFTEST) \
@@ -59,7 +59,7 @@ nvidia-hwpm-modules-install: nvidia-hwpm-modules
5959

6060
nvidia-oot-modules: nvidia-oot-conftest nvidia-hwpm-modules
6161
cp -av $(MAKEFILE_DIR)/nvidia-nvethernetrm $(MAKEFILE_DIR)/nvidia-oot/drivers/net/ethernet/nvidia/nvethernet/nvethernetrm
62-
$(MAKE) \
62+
$(MAKE) -j $(NPROC) \
6363
CONFIG_TEGRA_OOT_MODULE=m \
6464
srctree.nvidia-oot=$(MAKEFILE_DIR)/nvidia-oot \
6565
srctree.nvconftest=$(NVIDIA_CONFTEST) \
@@ -81,7 +81,7 @@ nvidia-oot-modules-install: nvidia-oot-modules
8181
modules_install
8282

8383
nvidia-nvgpu-modules: nvidia-oot-modules nvidia-oot-conftest
84-
$(MAKE) \
84+
$(MAKE) -j $(NPROC) \
8585
CONFIG_TEGRA_OOT_MODULE=m \
8686
KBUILD_EXTRA_SYMBOLS=$(MAKEFILE_DIR)/nvidia-oot/Module.symvers \
8787
srctree.nvidia-oot=$(MAKEFILE_DIR)/nvidia-oot \

README.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@ The `vc-mipi-driver` contain copies the VC module sources [from their repo](http
1616
2. Download the Jetson Linux driver package (BSP) and cross compiler from: [Jetson Linux Downloads](https://developer.nvidia.com/embedded/jetson-linux)
1717
3. Extract the driver package **in this directory**:
1818
```shell
19-
tar -xf jetson_linux_r36*.bz2
19+
tar -xf Jetson_Linux_r36*.tbz2
2020
```
2121
4. Extract the kernel headers from the driver package in the `Linux_for_Tegra/kernel` directory:
2222
```shell
@@ -68,13 +68,13 @@ At this point the rebuilt kernel modules -- including both the new VC modules an
6868
3. Instruct the bootloader to apply the device tree overlay on startup. This can be done manually by editing the `/boot/extlinux/extlinux.conf` file, though the `jetson-io` wrapper can be used to automated the process, either graphically with:
6969

7070
```shell
71-
sudo /opt/nvidio/jetson-io/jetson-io.py
71+
sudo /opt/nvidia/jetson-io/jetson-io.py
7272
```
7373

7474
or
7575

7676
```shell
77-
sudo ./config-by-hardware.py -n 2="Camera VCMIPI Dual"
77+
sudo /opt/nvidia/jetson-io/config-by-hardware.py -n 2="Camera VCMIPI Dual"
7878
```
7979

8080
Which instructs the scripts to install the overlay "Camera VCMIPI Dual" (this name is baked into the overlay file `tegra234-p3767-camera-p3768-vc_mipi-dual-imx.dtbo`) for header "2" (the CSI Camera header).

0 commit comments

Comments
 (0)