Skip to content
GitLab
Explore
Sign in
Register
Primary navigation
Search or go to…
Project
BuffyBox
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Wiki
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Releases
Package registry
Container Registry
Model registry
Operate
Environments
Terraform modules
Monitor
Incidents
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Terms and privacy
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
postmarketOS
BuffyBox
Commits
c5791381
Commit
c5791381
authored
4 months ago
by
_ _
Browse files
Options
Downloads
Patches
Plain Diff
unl0kr: select an available DRM device instead of a hard-coded one
parent
72a4220f
No related branches found
No related tags found
1 merge request
!35
unl0kr: select an available DRM device instead of a hard-coded one
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
CHANGELOG.md
+1
-0
1 addition, 0 deletions
CHANGELOG.md
unl0kr/main.c
+18
-1
18 additions, 1 deletion
unl0kr/main.c
with
19 additions
and
1 deletion
CHANGELOG.md
+
1
−
0
View file @
c5791381
...
...
@@ -19,6 +19,7 @@ If a change only affects particular applications, they are listed in parentheses
-
misc: Make scdoc a native dependency to enable cross-compilation (!30, thanks @uninsane)
-
fix: Use usleep to release CPU when possible (!31, thanks @uninsane)
-
feat(buffyboard): Add a buffyboard.service systemd service (!34, @uninsane)
-
fix(unl0kr): Select an available DRM device instead of a hard-coded one (!35, thanks @Sorcus)
## 3.2.0 (2024-06-03)
...
...
This diff is collapsed.
Click to expand it.
unl0kr/main.c
+
18
−
1
View file @
c5791381
...
...
@@ -26,6 +26,7 @@
#include
<unistd.h>
#include
<sys/reboot.h>
#include
<sys/stat.h>
#include
<sys/time.h>
...
...
@@ -420,7 +421,23 @@ int main(int argc, char *argv[]) {
case
UL_BACKENDS_BACKEND_DRM
:
bbx_log
(
BBX_LOG_LEVEL_VERBOSE
,
"Using DRM backend"
);
disp
=
lv_linux_drm_create
();
lv_linux_drm_set_file
(
disp
,
"/dev/dri/card0"
,
-
1
);
char
*
format_string
=
"/dev/dri/card%d"
;
char
drm_path
[
16
]
=
{
0
};
struct
stat
buffer
;
for
(
size_t
i
=
0
;
i
<
9
;
i
++
)
{
sprintf
(
drm_path
,
format_string
,
i
);
if
(
stat
(
drm_path
,
&
buffer
)
!=
0
)
{
continue
;
}
lv_linux_drm_set_file
(
disp
,
drm_path
,
-
1
);
break
;
}
break
;
#endif
/* LV_USE_LINUX_DRM */
default:
...
...
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment