This repository was archived by the owner on May 20, 2024. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 29
Changed board name to gc573 #8
Open
cdorn0
wants to merge
23
commits into
derrod:master
Choose a base branch
from
cdorn0:development
base: master
Could not load branches
Branch not found: {{ refName }}
Loading
Could not load tags
Nothing to show
Loading
Are you sure you want to change the base?
Some commits from the old base branch may be removed from the timeline,
and old review comments may become outdated.
Open
Changes from all commits
Commits
Show all changes
23 commits
Select commit
Hold shift + click to select a range
4aa7e21
Changed symbol task_work_func_t to task_worker_func_t as it conflicts…
cdorn0 8cf80a0
Changed V4L_TYPE_GRABBER to VFL_TYPE_VIDEO as the symbol is deprecated
cdorn0 7dcc7af
Changed ktime symbols and functions to use ktime64
cdorn0 7894671
Removed vfs_fstat as it is not needed and no longer exported; Changed…
cdorn0 b7790aa
moved library to lib folder and extracted it to shipped objects; adap…
cdorn0 d6b426a
Added .idea files to gitignore
cdorn0 b8789d3
renamed cx511h board to gc573
cdorn0 6e29735
modified insmod and install files to fit gc573 board
cdorn0 ec3ade6
fixed typo in install.sh
cdorn0 2f1365d
fixup! renamed cx511h board to gc573
cdorn0 ac4b6a8
fixup! renamed cx511h board to gc573
cdorn0 05e7d65
Partly applied updates from new driver version
cdorn0 71da4ce
Changed kernel messages/debugging to use module name prefix
cdorn0 ce70873
Removed function printk spamming
cdorn0 3f5b465
fixed warnings/ignore variable length array warning
cdorn0 0195166
fixed install and build files; fixed support for bmp pictures
cdorn0 07233c8
moved declaradion of board init/exit
cdorn0 1b3e498
fixed warn_unused_result warnings
cdorn0 dc951df
fixed scheduling while atomic bug that leads to system crash
cdorn0 857f042
changed debug messages to use kernel print macros
cdorn0 8616675
changed bus_info to be v4l2 compliant
cdorn0 19a64a2
changed EDID to fit to lg4k on windows
cdorn0 7b3b128
applied updates for new driver version; fixed bytesperline for obs to…
cdorn0 File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
This file contains hidden or 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 |
|---|---|---|
|
|
@@ -50,3 +50,6 @@ modules.order | |
| Module.symvers | ||
| Mkfile.old | ||
| dkms.conf | ||
|
|
||
| #IntelliJ CLion Files | ||
| .idea/ | ||
This file contains hidden or 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 @@ | ||
| #!/bin/sh | ||
| make -C driver clean | ||
| make -C driver | ||
| cp driver/cx511h.ko ./ | ||
| cp driver/gc573.ko ./ |
This file contains hidden or 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
File renamed without changes.
File renamed without changes.
This file contains hidden or 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
File renamed without changes.
This file contains hidden or 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 hidden or 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
File renamed without changes.
This file contains hidden or 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
File renamed without changes.
Oops, something went wrong.
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
You can set up a global gitignore for all your local clones with this global gitignore being local to your computer this way:
git config --global core.excludesfile ~/some/path/to/your/global/gitignoreThis way you won't have to add lines specific to your own setup on any project you work on. =)