forked from wlhe/uvc-gadget
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
wlhe
committed
Nov 24, 2017
1 parent
74ef85a
commit 9147958
Showing
6 changed files
with
1,053 additions
and
2 deletions.
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,4 @@ | ||
*.o | ||
uvc-gadget | ||
.vscode | ||
|
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 |
---|---|---|
@@ -1,4 +1,4 @@ | ||
CROSS_COMPILE ?= | ||
CROSS_COMPILE ?= | ||
ARCH ?= x86 | ||
KERNEL_DIR ?= /usr/src/linux | ||
|
||
|
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,28 @@ | ||
## uvc-gadget | ||
|
||
usb video class testing app | ||
|
||
## Build | ||
|
||
- host: | ||
make | ||
- Cross compile: | ||
make ARCH=arch CROSS_COMPILE=cross_compiler | ||
eg: | ||
make ARCH=arm CROSS_COMPILE=arm-hisiv600-linux- | ||
- or: | ||
set ARCH, CROSS_COMPILE, KERNEL_DIR in Makefile | ||
|
||
## Documentation | ||
|
||
- [gadget-testing.txt](https://github.com/torvalds/linux/blob/master/Documentation/usb/gadget-testing.txt) | ||
- [more doc](https://github.com/torvalds/linux/tree/master/Documentation/usb) | ||
|
||
## Change log | ||
|
||
- Add Readme/.gitignore and documentations | ||
Copy linux-3.18.y/drivers/usb/gadget/function/uvc.h into repository, change include path for build | ||
|
||
### Initial | ||
|
||
- Fork(copy) from [uvc-gadget.git](http://git.ideasonboard.org/uvc-gadget.git) |
Oops, something went wrong.