-
Notifications
You must be signed in to change notification settings - Fork 6
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
今回使用するraspberrypi-kernel 5.15.34にはまだない arducam用のカーネルモジュールを追加した 参照: raspberrypi/linux 5b775d7 : ArduCAM/Arducam-Pivariety-V4L2-Driver 59157aa Signed-off-by: KantaTamura <[email protected]>
- Loading branch information
1 parent
7c5ba20
commit 823ed8c
Showing
7 changed files
with
2,181 additions
and
1 deletion.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,12 @@ | ||
LICENSE = "GPLv2" | ||
LIC_FILES_CHKSUM = "file://COPYING;md5=39bba7d2cf0ba1036f2a6e2be52fe3f0" | ||
|
||
inherit module | ||
|
||
SRC_URI = "file://Makefile \ | ||
file://arducam.c \ | ||
file://arducam.h \ | ||
file://COPYING" | ||
|
||
S = "${WORKDIR}" | ||
RPROVIDES_${PN} += "kernel-module-arducam" |
Large diffs are not rendered by default.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,12 @@ | ||
obj-m := arducam.o | ||
|
||
SRC := $(shell pwd) | ||
|
||
all: | ||
$(MAKE) -C $(KERNEL_SRC) M=$(SRC) | ||
|
||
modules_install: | ||
$(MAKE) -C $(KERNEL_SRC) M=$(SRC) modules_install | ||
|
||
clean: | ||
$(MAKE) -C $(KERNEL_SRC) M=$(SRC) clean |
Oops, something went wrong.