Skip to content

Commit a3501ca

Browse files
CodeChenLRadxaYuntian
authored andcommitted
fix: installing kmscon when building trixie for A733
Due to limited support of a733 for framebuffer, we switched to kmscon with drm backend as the default tty terminal. Signed-off-by: Jiali Chen <chenjiali@radxa.com>
1 parent fcc328e commit a3501ca

File tree

1 file changed

+14
-0
lines changed

1 file changed

+14
-0
lines changed

src/share/rsdk/build/mod/packages/categories/core.libjsonnet

Lines changed: 14 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -19,6 +19,20 @@ function(suite,
1919
"login",
2020
] +
2121

22+
(if suite == "trixie" && product_soc(product) == "a733"
23+
then
24+
[
25+
// Core system package
26+
// Due to limited support of a733 for framebuffer,
27+
// we switched to kmscon with drm backend as the default tty terminal.
28+
// kmscon depends on libtsm4/trixie-backports.
29+
"kmscon",
30+
"libtsm4/trixie-backports",
31+
]
32+
else
33+
[]
34+
) +
35+
2236
// Firmware
2337
(if distro_check(suite) == "debian"
2438
then

0 commit comments

Comments
 (0)