[xf86-video-fbturbo-git] broken because of xorg-server updat

Problems with packages? Post here, using [tags] of the package name.

[xf86-video-fbturbo-git] broken because of xorg-server updat

Postby df8oe » Wed Dec 01, 2021 11:44 am

Hi,
after the last xorg-server update my Pi3 wont start xserver. When I look into Xorg.0.log I see this:
$this->bbcode_second_pass_code('', '[ 372.806] (II) systemd-logind: logind integration requires -keeptty and -keeptty was not provided, disabling logind integration
[ 372.808] (II) xfree86: Adding drm device (/dev/dri/card0)
[ 372.808] (II) Platform probe for /sys/devices/platform/soc/soc:gpu/drm/card0
[ 372.821] (II) no primary bus or device found
[ 372.821] falling back to /sys/devices/platform/soc/soc:gpu/drm/card0
[ 372.821] (II) LoadModule: "glx"
[ 372.821] (II) Loading /usr/lib/xorg/modules/extensions/libglx.so
[ 372.830] (II) Module glx: vendor="X.Org Foundation"
[ 372.830] compiled for 1.21.1.1, module version = 1.0.0
[ 372.830] ABI class: X.Org Server Extension, version 10.0
[ 372.830] (II) LoadModule: "fbturbo"
[ 372.831] (WW) Warning, couldn't open module fbturbo
[ 372.831] (EE) Failed to load module "fbturbo" (module does not exist, 0)
[ 372.831] (EE) No drivers available.
[ 372.831] (EE)
Fatal server error:
[ 372.831] (EE) no screens found(EE)
')
Package xf86-video-fbturbo-git needs a rebuild against newest xorg-server I think...
df8oe
 
Posts: 60
Joined: Fri Oct 01, 2021 5:10 pm

Re: [xf86-video-fbturbo-git] broken because of xorg-server u

Postby df8oe » Sun Dec 12, 2021 9:13 am

Is there any chance that fbturbo will ever be available in the future?

Greetings
Andreas
df8oe
 
Posts: 60
Joined: Fri Oct 01, 2021 5:10 pm

Re: [xf86-video-fbturbo-git] broken because of xorg-server u

Postby armuseru » Thu Dec 23, 2021 8:45 am

You may try to rebuild it yourself, it's not as difficult as it might seem, but there is no guarantee that it will work with updated xorg.
Follow the link https://github.com/archlinuxarm/PKGBUILDs/tree/master/alarm/xf86-video-fbturbo-git, click each file, press the "raw" button, press the key combination Ctrl+s and save each file. Remove restrictions in the file PKGBUILD like:
$this->bbcode_second_pass_code('', '
makedepends=('xorg-server-devel' 'git')
conflicts=('xorg-server<1.20' 'X-ABI-VIDEODRV_VERSION<24')
')
Install requirements: sudo pacman -S base-devel fakeroot xorg-server-devel git
Build package: makepkg
Install builded package like: sudo pacman -U xf86-video-fbturbo-git*.tar.xz
armuseru
 
Posts: 34
Joined: Sat Jan 09, 2021 9:36 am

Re: [xf86-video-fbturbo-git] broken because of xorg-server u

Postby df8oe » Mon Dec 27, 2021 9:34 am

Unfortunately there has something changed and the build fails :(

backing_store_tuner.c:112:48: Fehler: »struct _Window« hat kein Element namens »backStorage«

It is not a "simple rebuild".
df8oe
 
Posts: 60
Joined: Fri Oct 01, 2021 5:10 pm

Re: [xf86-video-fbturbo-git] broken because of xorg-server u

Postby armuseru » Wed Dec 29, 2021 2:03 pm

well, yea, sorry about that, it worked for xf86-armsoc-git, at least it compiles and installs

but https://lore.kernel.org/all/20211214200520.0CCEF81EB3@busybox.osuosl.org/T/

fix.patch$this->bbcode_second_pass_code('', 'diff --git a/src/backing_store_tuner.c b/src/backing_store_tuner.c
index 067c05f..13f7ec3 100644
--- a/src/backing_store_tuner.c
+++ b/src/backing_store_tuner.c
@@ -109,7 +109,7 @@ xPostValidateTree(WindowPtr pWin, WindowPtr pLayerWin, VTKind kind)
private->PostValidateTreeNestingLevel++;

/* Disable backing store for the focus window */
- if (!private->ForceBackingStore && focusWin->backStorage) {
+ if (!private->ForceBackingStore && (focusWin->backingStore != NotUseful)) {
DebugMsg("Disable backing store for the focus window 0x%x\n",
(unsigned int)focusWin->drawable.id);
pScreen->backingStoreSupport = Always;
@@ -125,7 +125,7 @@ xPostValidateTree(WindowPtr pWin, WindowPtr pLayerWin, VTKind kind)
/* And enable backing store for all the other children of root */
curWin = pScreen->root->firstChild;
while (curWin) {
- if (!curWin->backStorage && (private->ForceBackingStore ||
+ if ((curWin->backingStore == NotUseful) && (private->ForceBackingStore ||
curWin != focusWin)) {
DebugMsg("Enable backing store for window 0x%x\n",
(unsigned int)curWin->drawable.id);
@@ -158,7 +158,7 @@ xReparentWindow(WindowPtr pWin, WindowPtr pPriorParent)
}

/* We only want backing store set for direct children of root */
- if (pPriorParent == pScreen->root && pWin->backStorage) {
+ if (pPriorParent == pScreen->root && (pWin->backingStore != NotUseful)) {
DebugMsg("Reparent window 0x%x from root, disabling backing store\n",
(unsigned int)pWin->drawable.id);
pScreen->backingStoreSupport = Always;
--
2.34.1

')
PKGBUILD $this->bbcode_second_pass_code('', '...
makedepends=('xorg-server-devel' 'X-ABI-VIDEODRV_VERSION>=24.0' 'git')
conflicts=('xorg-server<1.20' 'X-ABI-VIDEODRV_VERSION<24')
options=('!libtool')
provides=('xf86-video-fbturbo')
source=('git+https://github.com/ssvb/xf86-video-fbturbo'
'0001-Use-own-thunk-functions-instead-of-fbdevHW-Weak.patch'
'0002-GCC-8-fix.patch'
'fix.patch')
md5sums=('SKIP'
'c6bf86bda174e0d37c75294518909b76'
'36ff3a90c4c17bbfb982d53bfd411936'
'SKIP')
...
patch -p1 -i ../0001-Use-own-thunk-functions-instead-of-fbdevHW-Weak.patch
patch -p1 -i ../0002-GCC-8-fix.patch
patch -p1 -i ../fix.patch
...')

log $this->bbcode_second_pass_code('', 'makepkg
==> Making package: xf86-video-fbturbo-git 199.f9a6ed7-4 (Wed Dec 29 13:05:25 2021)
==> Checking runtime dependencies...
==> Checking buildtime dependencies...
==> Retrieving sources...
-> Updating xf86-video-fbturbo git repo...
Fetching origin
-> Found 0001-Use-own-thunk-functions-instead-of-fbdevHW-Weak.patch
-> Found 0002-GCC-8-fix.patch
-> Found fix.patch
==> Validating source files with md5sums...
xf86-video-fbturbo ... Skipped
0001-Use-own-thunk-functions-instead-of-fbdevHW-Weak.patch ... Passed
0002-GCC-8-fix.patch ... Passed
fix.patch ... Skipped
==> Extracting sources...
-> Creating working copy of xf86-video-fbturbo git repo...
Cloning into 'xf86-video-fbturbo'...
done.
==> Starting prepare()...
patching file src/fbdev.c
patching file src/fbdev.c
patching file src/backing_store_tuner.c
==> Starting pkgver()...
==> Starting build()...
autoreconf: export WARNINGS=
autoreconf: Entering directory '.'
autoreconf: configure.ac: not using Gettext
autoreconf: running: aclocal
autoreconf: configure.ac: tracing
autoreconf: running: libtoolize --copy
libtoolize: putting auxiliary files in AC_CONFIG_AUX_DIR, '.'.
libtoolize: copying file './ltmain.sh'
libtoolize: Consider adding 'AC_CONFIG_MACRO_DIRS([m4])' to configure.ac,
libtoolize: and rerunning libtoolize and aclocal.
libtoolize: Consider adding '-I m4' to ACLOCAL_AMFLAGS in Makefile.am.
autoreconf: configure.ac: not using Intltool
autoreconf: configure.ac: not using Gtkdoc
autoreconf: running: aclocal
autoreconf: running: /usr/bin/autoconf
configure.ac:41: warning: The macro `AC_PROG_CC_C99' is obsolete.
configure.ac:41: You should run autoupdate.
./lib/autoconf/c.m4:1659: AC_PROG_CC_C99 is expanded from...
aclocal.m4:10952: XORG_COMPILER_BRAND is expanded from...
aclocal.m4:11071: XORG_COMPILER_FLAGS is expanded from...
aclocal.m4:11243: XORG_DEFAULT_OPTIONS is expanded from...
configure.ac:41: the top level
configure.ac:48: warning: The macro `AC_PROG_LIBTOOL' is obsolete.
configure.ac:48: You should run autoupdate.
aclocal.m4:121: AC_PROG_LIBTOOL is expanded from...
configure.ac:48: the top level
autoreconf: running: /usr/bin/autoheader
autoreconf: running: automake --add-missing --copy --no-force
configure.ac:41: installing './compile'
configure.ac:41: installing './config.guess'
configure.ac:41: installing './config.sub'
configure.ac:34: installing './install-sh'
configure.ac:34: installing './missing'
src/Makefile.am: installing './depcomp'
test/Makefile.am:3: warning: source file '../src/sunxi_disp.c' is in a subdirectory,
test/Makefile.am:3: but option 'subdir-objects' is disabled
automake: warning: possible forward-incompatibility.
automake: At least one source file is in a subdirectory, but the 'subdir-objects'
automake: automake option hasn't been enabled. For now, the corresponding output
automake: object file(s) will be placed in the top-level directory. However, this
automake: behavior may change in a future Automake major version, with object
automake: files being placed in the same subdirectory as the corresponding sources.
automake: You are advised to start using 'subdir-objects' option throughout your
automake: project, to avoid future incompatibilities.
autoreconf: Leaving directory '.'
checking for a BSD-compatible install... /usr/bin/install -c
checking whether build environment is sane... yes
checking for a race-free mkdir -p... /usr/bin/mkdir -p
checking for gawk... gawk
checking whether make sets $(MAKE)... yes
checking whether make supports nested variables... yes
checking whether to enable maintainer-specific portions of Makefiles... yes
checking whether make supports the include directive... yes (GNU style)
checking for gcc... gcc
checking whether the C compiler works... yes
checking for C compiler default output file name... a.out
checking for suffix of executables...
checking whether we are cross compiling... no
checking for suffix of object files... o
checking whether the compiler supports GNU C... yes
checking whether gcc accepts -g... yes
checking for gcc option to enable C11 features... none needed
checking whether gcc understands -c and -o together... yes
checking dependency style of gcc... gcc3
checking for gcc options needed to detect all undeclared functions... none needed
checking for stdio.h... yes
checking for stdlib.h... yes
checking for string.h... yes
checking for inttypes.h... yes
checking for stdint.h... yes
checking for strings.h... yes
checking for sys/stat.h... yes
checking for sys/types.h... yes
checking for unistd.h... yes
checking whether __clang__ is declared... no
checking whether __INTEL_COMPILER is declared... no
checking whether __SUNPRO_C is declared... no
checking for pkg-config... /usr/bin/pkg-config
checking pkg-config is at least version 0.9.0... yes
checking build system type... armv7l-unknown-linux-gnueabihf
checking host system type... armv7l-unknown-linux-gnueabihf
checking for a sed that does not truncate output... /usr/bin/sed
checking if gcc supports -Werror=unknown-warning-option... no
checking if gcc supports -Werror=unused-command-line-argument... no
checking if gcc supports -Wall... yes
checking if gcc supports -Wpointer-arith... yes
checking if gcc supports -Wmissing-declarations... yes
checking if gcc supports -Wformat=2... yes
checking if gcc supports -Wstrict-prototypes... yes
checking if gcc supports -Wmissing-prototypes... yes
checking if gcc supports -Wnested-externs... yes
checking if gcc supports -Wbad-function-cast... yes
checking if gcc supports -Wold-style-definition... yes
checking if gcc supports -Wdeclaration-after-statement... yes
checking if gcc supports -Wunused... yes
checking if gcc supports -Wuninitialized... yes
checking if gcc supports -Wshadow... yes
checking if gcc supports -Wmissing-noreturn... yes
checking if gcc supports -Wmissing-format-attribute... yes
checking if gcc supports -Wredundant-decls... yes
checking if gcc supports -Wlogical-op... yes
checking if gcc supports -Werror=implicit... yes
checking if gcc supports -Werror=nonnull... yes
checking if gcc supports -Werror=init-self... yes
checking if gcc supports -Werror=main... yes
checking if gcc supports -Werror=missing-braces... yes
checking if gcc supports -Werror=sequence-point... yes
checking if gcc supports -Werror=return-type... yes
checking if gcc supports -Werror=trigraphs... yes
checking if gcc supports -Werror=array-bounds... yes
checking if gcc supports -Werror=write-strings... yes
checking if gcc supports -Werror=address... yes
checking if gcc supports -Werror=int-to-pointer-cast... yes
checking if gcc supports -Werror=pointer-to-int-cast... yes
checking if gcc supports -pedantic... yes
checking if gcc supports -Werror... yes
checking if gcc supports -Werror=attributes... yes
checking whether make supports nested variables... (cached) yes
checking dependency style of gcc... gcc3
checking how to print strings... printf
checking for a sed that does not truncate output... (cached) /usr/bin/sed
checking for grep that handles long lines and -e... /usr/bin/grep
checking for egrep... /usr/bin/grep -E
checking for fgrep... /usr/bin/grep -F
checking for ld used by gcc... /usr/bin/ld
checking if the linker (/usr/bin/ld) is GNU ld... yes
checking for BSD- or MS-compatible name lister (nm)... /usr/bin/nm -B
checking the name lister (/usr/bin/nm -B) interface... BSD nm
checking whether ln -s works... yes
checking the maximum length of command line arguments... 1572864
checking how to convert armv7l-unknown-linux-gnueabihf file names to armv7l-unknown-linux-gnueabihf format... func_convert_file_noop
checking how to convert armv7l-unknown-linux-gnueabihf file names to toolchain format... func_convert_file_noop
checking for /usr/bin/ld option to reload object files... -r
checking for objdump... objdump
checking how to recognize dependent libraries... pass_all
checking for dlltool... no
checking how to associate runtime and link libraries... printf %s\n
checking for ar... ar
checking for archiver @FILE support... @
checking for strip... strip
checking for ranlib... ranlib
checking command to parse /usr/bin/nm -B output from gcc object... ok
checking for sysroot... no
checking for a working dd... /usr/bin/dd
checking how to truncate binary pipes... /usr/bin/dd bs=4096 count=1
checking for mt... no
checking if : is a manifest tool... no
checking for dlfcn.h... yes
checking for objdir... .libs
checking if gcc supports -fno-rtti -fno-exceptions... no
checking for gcc option to produce PIC... -fPIC -DPIC
checking if gcc PIC flag -fPIC -DPIC works... yes
checking if gcc static flag -static works... yes
checking if gcc supports -c -o file.o... yes
checking if gcc supports -c -o file.o... (cached) yes
checking whether the gcc linker (/usr/bin/ld) supports shared libraries... yes
checking whether -lc should be explicitly linked in... no
checking dynamic linker characteristics... GNU/Linux ld.so
checking how to hardcode library paths into programs... immediate
checking whether stripping libraries is possible... yes
checking if libtool supports shared libraries... yes
checking whether to build shared libraries... yes
checking whether to build static libraries... no
checking if RANDR is defined... yes
checking if RENDER is defined... yes
checking if XV is defined... yes
checking for XORG... yes
checking whether xf86ConfigIsaEntity is declared... no
checking for ump/ump.h... no
checking that generated files are newer than configure... done
configure: creating ./config.status
config.status: creating Makefile
config.status: creating src/Makefile
config.status: creating test/Makefile
config.status: creating man/Makefile
config.status: creating config.h
config.status: executing depfiles commands
config.status: executing libtool commands
checking for a BSD-compatible install... /usr/bin/install -c
checking whether build environment is sane... yes
checking for a race-free mkdir -p... /usr/bin/mkdir -p
checking for gawk... gawk
checking whether make sets $(MAKE)... yes
checking whether make supports nested variables... yes
checking whether to enable maintainer-specific portions of Makefiles... no
checking whether make supports the include directive... yes (GNU style)
checking for gcc... gcc
checking whether the C compiler works... yes
checking for C compiler default output file name... a.out
checking for suffix of executables...
checking whether we are cross compiling... no
checking for suffix of object files... o
checking whether the compiler supports GNU C... yes
checking whether gcc accepts -g... yes
checking for gcc option to enable C11 features... none needed
checking whether gcc understands -c and -o together... yes
checking dependency style of gcc... gcc3
checking for gcc options needed to detect all undeclared functions... none needed
checking for stdio.h... yes
checking for stdlib.h... yes
checking for string.h... yes
checking for inttypes.h... yes
checking for stdint.h... yes
checking for strings.h... yes
checking for sys/stat.h... yes
checking for sys/types.h... yes
checking for unistd.h... yes
checking whether __clang__ is declared... no
checking whether __INTEL_COMPILER is declared... no
checking whether __SUNPRO_C is declared... no
checking for pkg-config... /usr/bin/pkg-config
checking pkg-config is at least version 0.9.0... yes
checking build system type... armv7l-unknown-linux-gnueabihf
checking host system type... armv7l-unknown-linux-gnueabihf
checking for a sed that does not truncate output... /usr/bin/sed
checking if gcc supports -Werror=unknown-warning-option... no
checking if gcc supports -Werror=unused-command-line-argument... no
checking if gcc supports -Wall... yes
checking if gcc supports -Wpointer-arith... yes
checking if gcc supports -Wmissing-declarations... yes
checking if gcc supports -Wformat=2... yes
checking if gcc supports -Wstrict-prototypes... yes
checking if gcc supports -Wmissing-prototypes... yes
checking if gcc supports -Wnested-externs... yes
checking if gcc supports -Wbad-function-cast... yes
checking if gcc supports -Wold-style-definition... yes
checking if gcc supports -Wdeclaration-after-statement... yes
checking if gcc supports -Wunused... yes
checking if gcc supports -Wuninitialized... yes
checking if gcc supports -Wshadow... yes
checking if gcc supports -Wmissing-noreturn... yes
checking if gcc supports -Wmissing-format-attribute... yes
checking if gcc supports -Wredundant-decls... yes
checking if gcc supports -Wlogical-op... yes
checking if gcc supports -Werror=implicit... yes
checking if gcc supports -Werror=nonnull... yes
checking if gcc supports -Werror=init-self... yes
checking if gcc supports -Werror=main... yes
checking if gcc supports -Werror=missing-braces... yes
checking if gcc supports -Werror=sequence-point... yes
checking if gcc supports -Werror=return-type... yes
checking if gcc supports -Werror=trigraphs... yes
checking if gcc supports -Werror=array-bounds... yes
checking if gcc supports -Werror=write-strings... yes
checking if gcc supports -Werror=address... yes
checking if gcc supports -Werror=int-to-pointer-cast... yes
checking if gcc supports -Werror=pointer-to-int-cast... yes
checking if gcc supports -pedantic... yes
checking if gcc supports -Werror... yes
checking if gcc supports -Werror=attributes... yes
checking whether make supports nested variables... (cached) yes
checking dependency style of gcc... gcc3
checking how to print strings... printf
checking for a sed that does not truncate output... (cached) /usr/bin/sed
checking for grep that handles long lines and -e... /usr/bin/grep
checking for egrep... /usr/bin/grep -E
checking for fgrep... /usr/bin/grep -F
checking for ld used by gcc... /usr/bin/ld
checking if the linker (/usr/bin/ld) is GNU ld... yes
checking for BSD- or MS-compatible name lister (nm)... /usr/bin/nm -B
checking the name lister (/usr/bin/nm -B) interface... BSD nm
checking whether ln -s works... yes
checking the maximum length of command line arguments... 1572864
checking how to convert armv7l-unknown-linux-gnueabihf file names to armv7l-unknown-linux-gnueabihf format... func_convert_file_noop
checking how to convert armv7l-unknown-linux-gnueabihf file names to toolchain format... func_convert_file_noop
checking for /usr/bin/ld option to reload object files... -r
checking for objdump... objdump
checking how to recognize dependent libraries... pass_all
checking for dlltool... no
checking how to associate runtime and link libraries... printf %s\n
checking for ar... ar
checking for archiver @FILE support... @
checking for strip... strip
checking for ranlib... ranlib
checking command to parse /usr/bin/nm -B output from gcc object... ok
checking for sysroot... no
checking for a working dd... /usr/bin/dd
checking how to truncate binary pipes... /usr/bin/dd bs=4096 count=1
checking for mt... no
checking if : is a manifest tool... no
checking for dlfcn.h... yes
checking for objdir... .libs
checking if gcc supports -fno-rtti -fno-exceptions... no
checking for gcc option to produce PIC... -fPIC -DPIC
checking if gcc PIC flag -fPIC -DPIC works... yes
checking if gcc static flag -static works... yes
checking if gcc supports -c -o file.o... yes
checking if gcc supports -c -o file.o... (cached) yes
checking whether the gcc linker (/usr/bin/ld) supports shared libraries... yes
checking whether -lc should be explicitly linked in... no
checking dynamic linker characteristics... GNU/Linux ld.so
checking how to hardcode library paths into programs... immediate
checking whether stripping libraries is possible... yes
checking if libtool supports shared libraries... yes
checking whether to build shared libraries... yes
checking whether to build static libraries... no
checking if RANDR is defined... yes
checking if RENDER is defined... yes
checking if XV is defined... yes
checking for XORG... yes
checking whether xf86ConfigIsaEntity is declared... no
checking for ump/ump.h... no
checking that generated files are newer than configure... done
configure: creating ./config.status
config.status: creating Makefile
config.status: creating src/Makefile
config.status: creating test/Makefile
config.status: creating man/Makefile
config.status: creating config.h
config.status: config.h is unchanged
config.status: executing depfiles commands
config.status: executing libtool commands
make all-recursive
make[1]: Entering directory '/home/tester/Downloads/fbturbo/src/xf86-video-fbturbo'
Making all in src
make[2]: Entering directory '/home/tester/Downloads/fbturbo/src/xf86-video-fbturbo/src'
CPPAS arm_asm.lo
CC cpuinfo.lo
CC cpu_backend.lo
CC fb_copyarea.lo
CC backing_store_tuner.lo
CC fbdev.lo
fbdev.c: In function 'FBDevPciProbe':
fbdev.c:318:9: warning: assignment discards 'const' qualifier from pointer target type [-Wdiscarded-qualifiers]
318 | device = xf86FindOptionValue(devSection->options, "fbdev");
| ^
fbdev.c: In function 'FBDevProbe':
fbdev.c:377:10: warning: assignment discards 'const' qualifier from pointer target type [-Wdiscarded-qualifiers]
377 | dev = xf86FindOptionValue(devSections[i]->options,"fbdev");
| ^
fbdev.c: In function 'FBDevPreInit':
fbdev.c:496:30: warning: passing argument 3 of 'fbdevHWInit' discards 'const' qualifier from pointer target type [-Wdiscarded-qualifiers]
496 | if (!fbdevHWInit(pScrn,NULL,xf86FindOptionValue(fPtr->pEnt->device->options,"fbdev")))
| ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
In file included from fbdev.c:70:
/usr/include/xorg/fbdevhw.h:22:41: note: expected 'char *' but argument is of type 'const char *'
22 | char *device);
| ~~~~~~^~~~~~
fbdev.c: In function 'FBDevScreenInit':
fbdev.c:981:20: warning: assignment discards 'const' qualifier from pointer target type [-Wdiscarded-qualifiers]
981 | if (!(accelmethod = xf86GetOptValString(fPtr->Options, OPTION_ACCELMETHOD)) ||
| ^
fbdev.c:1002:21: warning: assignment discards 'const' qualifier from pointer target type [-Wdiscarded-qualifiers]
1002 | if (!(accelmethod = xf86GetOptValString(fPtr->Options, OPTION_ACCELMETHOD)) ||
| ^
fbdev.c:1039:4: warning: implicit declaration of function 'xf86DisableRandR'; did you mean 'xf86DisableIO'? [-Wimplicit-function-declaration]
1039 | xf86DisableRandR();
| ^~~~~~~~~~~~~~~~
| xf86DisableIO
CC sunxi_disp.lo
CC sunxi_x_g2d.lo
CC sunxi_disp_hwcursor.lo
CC sunxi_video.lo
CCLD fbturbo_drv.la
make[2]: Leaving directory '/home/tester/Downloads/fbturbo/src/xf86-video-fbturbo/src'
Making all in test
make[2]: Entering directory '/home/tester/Downloads/fbturbo/src/xf86-video-fbturbo/test'
CC sunxi_disp_vsync_demo.o
CC sunxi_disp.o
CCLD sunxi_disp_vsync_demo
CC sunxi_g2d_bench.o
CCLD sunxi_g2d_bench
make[2]: Leaving directory '/home/tester/Downloads/fbturbo/src/xf86-video-fbturbo/test'
Making all in man
make[2]: Entering directory '/home/tester/Downloads/fbturbo/src/xf86-video-fbturbo/man'
GEN fbturbo.4
make[2]: Leaving directory '/home/tester/Downloads/fbturbo/src/xf86-video-fbturbo/man'
make[2]: Entering directory '/home/tester/Downloads/fbturbo/src/xf86-video-fbturbo'
make[2]: Leaving directory '/home/tester/Downloads/fbturbo/src/xf86-video-fbturbo'
make[1]: Leaving directory '/home/tester/Downloads/fbturbo/src/xf86-video-fbturbo'
==> Entering fakeroot environment...
==> Starting package()...
Making install in src
make[1]: Entering directory '/home/tester/Downloads/fbturbo/src/xf86-video-fbturbo/src'
make[2]: Entering directory '/home/tester/Downloads/fbturbo/src/xf86-video-fbturbo/src'
make[2]: Nothing to be done for 'install-exec-am'.
/usr/bin/mkdir -p '/home/tester/Downloads/fbturbo/pkg/xf86-video-fbturbo-git//usr/lib/xorg/modules/drivers'
/bin/sh ../libtool --mode=install /usr/bin/install -c fbturbo_drv.la '/home/tester/Downloads/fbturbo/pkg/xf86-video-fbturbo-git//usr/lib/xorg/modules/drivers'
libtool: install: /usr/bin/install -c .libs/fbturbo_drv.so /home/tester/Downloads/fbturbo/pkg/xf86-video-fbturbo-git//usr/lib/xorg/modules/drivers/fbturbo_drv.so
libtool: install: /usr/bin/install -c .libs/fbturbo_drv.lai /home/tester/Downloads/fbturbo/pkg/xf86-video-fbturbo-git//usr/lib/xorg/modules/drivers/fbturbo_drv.la
libtool: warning: remember to run 'libtool --finish /usr/lib/xorg/modules/drivers'
make[2]: Leaving directory '/home/tester/Downloads/fbturbo/src/xf86-video-fbturbo/src'
make[1]: Leaving directory '/home/tester/Downloads/fbturbo/src/xf86-video-fbturbo/src'
Making install in test
make[1]: Entering directory '/home/tester/Downloads/fbturbo/src/xf86-video-fbturbo/test'
make[2]: Entering directory '/home/tester/Downloads/fbturbo/src/xf86-video-fbturbo/test'
make[2]: Nothing to be done for 'install-exec-am'.
make[2]: Nothing to be done for 'install-data-am'.
make[2]: Leaving directory '/home/tester/Downloads/fbturbo/src/xf86-video-fbturbo/test'
make[1]: Leaving directory '/home/tester/Downloads/fbturbo/src/xf86-video-fbturbo/test'
Making install in man
make[1]: Entering directory '/home/tester/Downloads/fbturbo/src/xf86-video-fbturbo/man'
make[2]: Entering directory '/home/tester/Downloads/fbturbo/src/xf86-video-fbturbo/man'
make[2]: Nothing to be done for 'install-exec-am'.
/usr/bin/mkdir -p '/home/tester/Downloads/fbturbo/pkg/xf86-video-fbturbo-git//usr/share/man/man4'
/usr/bin/install -c -m 644 fbturbo.4 '/home/tester/Downloads/fbturbo/pkg/xf86-video-fbturbo-git//usr/share/man/man4'
make[2]: Leaving directory '/home/tester/Downloads/fbturbo/src/xf86-video-fbturbo/man'
make[1]: Leaving directory '/home/tester/Downloads/fbturbo/src/xf86-video-fbturbo/man'
make[1]: Entering directory '/home/tester/Downloads/fbturbo/src/xf86-video-fbturbo'
make[2]: Entering directory '/home/tester/Downloads/fbturbo/src/xf86-video-fbturbo'
make[2]: Nothing to be done for 'install-exec-am'.
make[2]: Nothing to be done for 'install-data-am'.
make[2]: Leaving directory '/home/tester/Downloads/fbturbo/src/xf86-video-fbturbo'
make[1]: Leaving directory '/home/tester/Downloads/fbturbo/src/xf86-video-fbturbo'
==> Tidying install...
-> Removing libtool files...
-> Purging unwanted files...
-> Removing static library files...
-> Stripping unneeded symbols from binaries and libraries...
-> Compressing man and info pages...
==> Checking for packaging issues...
==> Creating package "xf86-video-fbturbo-git"...
-> Generating .PKGINFO file...
-> Generating .BUILDINFO file...
-> Generating .MTREE file...
-> Compressing package...
==> Leaving fakeroot environment.
==> Finished making: xf86-video-fbturbo-git 199.f9a6ed7-4 (Wed Dec 29 13:06:47 2021)

sudo pacman -U xf86-video-fbturbo-git-199.f9a6ed7-4-armv7h.pkg.tar.xz
[sudo] password for tester:
loading packages...
resolving dependencies...
looking for conflicting packages...

Packages (1) xf86-video-fbturbo-git-199.f9a6ed7-4

Total Installed Size: 0.05 MiB

:: Proceed with installation? [Y/n]
(1/1) checking keys in keyring [#################################] 100%
(1/1) checking package integrity [#################################] 100%
(1/1) loading package files [#################################] 100%
(1/1) checking for file conflicts [#################################] 100%
(1/1) checking available disk space [#################################] 100%
:: Processing package changes...
(1/1) installing xf86-video-fbturbo-git [#################################] 100%
:: Running post-transaction hooks...
(1/1) Arming ConditionNeedsUpdate...


and xorg.log after reboot contains

[ 24.178] (II) Module "fb" already built-in
[ 24.794] (II) FBTURBO(0): using backing store heuristics
[ 24.814] (II) FBTURBO(0): can't load 'g2d_23' kernel module
[ 24.814] (II) FBTURBO(0): failed to enable the use of sunxi display controller
[ 24.814] (II) FBTURBO(0): No sunxi-g2d hardware detected (check /dev/disp and /dev/g2d)
[ 24.814] (II) FBTURBO(0): G2D hardware acceleration can't be enabled
[ 24.815] (II) FBTURBO(0): enabled VFP/NEON optimizations
[ 24.815] (==) FBTURBO(0): Backing store enabled
[ 24.815] (EE) FBTURBO(0): FBIOPUTCMAP: Invalid argument
[ 24.815] (EE) FBTURBO(0): FBIOPUTCMAP: Invalid argument
[ 24.815] (EE) FBTURBO(0): FBIOPUTCMAP: Invalid argument
[ 24.816] (EE) FBTURBO(0): FBIOPUTCMAP: Invalid argument
[ 24.816] (EE) FBTURBO(0): FBIOPUTCMAP: Invalid argument
[ 24.816] (EE) FBTURBO(0): FBIOPUTCMAP: Invalid argument
[ 24.816] (EE) FBTURBO(0): FBIOPUTCMAP: Invalid argument
[ 24.816] (EE) FBTURBO(0): FBIOPUTCMAP: Invalid argument
[ 24.816] (EE) FBTURBO(0): FBIOPUTCMAP: Invalid argument
[ 24.816] (EE) FBTURBO(0): FBIOPUTCMAP: Invalid argument
[ 24.816] (EE) FBTURBO(0): FBIOPUTCMAP: Invalid argument
[ 24.816] (EE) FBTURBO(0): FBIOPUTCMAP: Invalid argument
[ 24.816] (EE) FBTURBO(0): FBIOPUTCMAP: Invalid argument
[ 24.816] (EE) FBTURBO(0): FBIOPUTCMAP: Invalid argument
[ 24.816] (EE) FBTURBO(0): FBIOPUTCMAP: Invalid argument
[ 24.816] (EE) FBTURBO(0): FBIOPUTCMAP: Invalid argument
[ 24.817] (EE) FBTURBO(0): FBIOPUTCMAP: Invalid argument
[ 24.817] (EE) FBTURBO(0): FBIOPUTCMAP: Invalid argument
[ 24.817] (EE) FBTURBO(0): FBIOPUTCMAP: Invalid argument
[ 24.817] (EE) FBTURBO(0): FBIOPUTCMAP: Invalid argument
[ 24.817] (EE) FBTURBO(0): FBIOPUTCMAP: Invalid argument
[ 24.817] (EE) FBTURBO(0): FBIOPUTCMAP: Invalid argument
[ 24.817] (EE) FBTURBO(0): FBIOPUTCMAP: Invalid argument
[ 24.817] (EE) FBTURBO(0): FBIOPUTCMAP: Invalid argument
[ 24.817] (EE) FBTURBO(0): FBIOPUTCMAP: Invalid argument
[ 24.817] (EE) FBTURBO(0): FBIOPUTCMAP: Invalid argument
[ 24.819] (EE) FBTURBO(0): FBIOPUTCMAP: Invalid argument
[ 24.819] (EE) FBTURBO(0): FBIOPUTCMAP: Invalid argument
[ 24.819] (EE) FBTURBO(0): FBIOPUTCMAP: Invalid argument
[ 24.819] (EE) FBTURBO(0): FBIOPUTCMAP: Invalid argument
[ 24.819] (EE) FBTURBO(0): FBIOPUTCMAP: Invalid argument
[ 24.819] (EE) FBTURBO(0): FBIOPUTCMAP: Invalid argument
[ 24.819] (EE) FBTURBO(0): FBIOPUTCMAP: Invalid argument
[ 24.819] (EE) FBTURBO(0): FBIOPUTCMAP: Invalid argument
[ 24.820] (EE) FBTURBO(0): FBIOPUTCMAP: Invalid argument
[ 24.820] (EE) FBTURBO(0): FBIOPUTCMAP: Invalid argument
[ 24.820] (EE) FBTURBO(0): FBIOPUTCMAP: Invalid argument
[ 24.820] (EE) FBTURBO(0): FBIOPUTCMAP: Invalid argument
[ 24.820] (EE) FBTURBO(0): FBIOPUTCMAP: Invalid argument
[ 24.820] (EE) FBTURBO(0): FBIOPUTCMAP: Invalid argument
[ 24.820] (EE) FBTURBO(0): FBIOPUTCMAP: Invalid argument
[ 24.820] (EE) FBTURBO(0): FBIOPUTCMAP: Invalid argument
[ 24.820] (EE) FBTURBO(0): FBIOPUTCMAP: Invalid argument
[ 24.821] (EE) FBTURBO(0): FBIOPUTCMAP: Invalid argument
[ 24.821] (EE) FBTURBO(0): FBIOPUTCMAP: Invalid argument
[ 24.821] (EE) FBTURBO(0): FBIOPUTCMAP: Invalid argument
[ 24.821] (EE) FBTURBO(0): FBIOPUTCMAP: Invalid argument
[ 24.821] (EE) FBTURBO(0): FBIOPUTCMAP: Invalid argument
[ 24.821] (EE) FBTURBO(0): FBIOPUTCMAP: Invalid argument
[ 24.821] (EE) FBTURBO(0): FBIOPUTCMAP: Invalid argument
[ 24.822] (EE) FBTURBO(0): FBIOPUTCMAP: Invalid argument
[ 24.822] (EE) FBTURBO(0): FBIOPUTCMAP: Invalid argument
[ 24.822] (EE) FBTURBO(0): FBIOPUTCMAP: Invalid argument
[ 24.823] (EE) FBTURBO(0): FBIOPUTCMAP: Invalid argument
[ 24.823] (EE) FBTURBO(0): FBIOPUTCMAP: Invalid argument
[ 24.823] (EE) FBTURBO(0): FBIOPUTCMAP: Invalid argument
[ 24.823] (EE) FBTURBO(0): FBIOPUTCMAP: Invalid argument
[ 24.823] (EE) FBTURBO(0): FBIOPUTCMAP: Invalid argument
[ 24.823] (EE) FBTURBO(0): FBIOPUTCMAP: Invalid argument
[ 24.823] (EE) FBTURBO(0): FBIOPUTCMAP: Invalid argument
[ 24.823] (EE) FBTURBO(0): FBIOPUTCMAP: Invalid argument
[ 24.823] (EE) FBTURBO(0): FBIOPUTCMAP: Invalid argument
[ 24.823] (EE) FBTURBO(0): FBIOPUTCMAP: Invalid argument
[ 24.823] (EE) FBTURBO(0): FBIOPUTCMAP: Invalid argument
[ 24.824] (EE) FBTURBO(0): FBIOPUTCMAP: Invalid argument
[ 24.824] (EE) FBTURBO(0): FBIOPUTCMAP: Invalid argument
[ 24.824] (EE) FBTURBO(0): FBIOPUTCMAP: Invalid argument
[ 24.824] (EE) FBTURBO(0): FBIOPUTCMAP: Invalid argument
[ 24.824] (EE) FBTURBO(0): FBIOPUTCMAP: Invalid argument
[ 24.824] (EE) FBTURBO(0): FBIOPUTCMAP: Invalid argument
[ 24.824] (EE) FBTURBO(0): FBIOPUTCMAP: Invalid argument
[ 24.824] (EE) FBTURBO(0): FBIOPUTCMAP: Invalid argument
[ 24.824] (EE) FBTURBO(0): FBIOPUTCMAP: Invalid argument
[ 24.824] (EE) FBTURBO(0): FBIOPUTCMAP: Invalid argument
[ 24.824] (EE) FBTURBO(0): FBIOPUTCMAP: Invalid argument
[ 24.825] (EE) FBTURBO(0): FBIOPUTCMAP: Invalid argument
[ 24.825] (EE) FBTURBO(0): FBIOPUTCMAP: Invalid argument
[ 24.825] (EE) FBTURBO(0): FBIOPUTCMAP: Invalid argument
[ 24.825] (EE) FBTURBO(0): FBIOPUTCMAP: Invalid argument
[ 24.826] (EE) FBTURBO(0): FBIOPUTCMAP: Invalid argument
[ 24.826] (EE) FBTURBO(0): FBIOPUTCMAP: Invalid argument
[ 24.826] (EE) FBTURBO(0): FBIOPUTCMAP: Invalid argument
[ 24.826] (EE) FBTURBO(0): FBIOPUTCMAP: Invalid argument
[ 24.826] (EE) FBTURBO(0): FBIOPUTCMAP: Invalid argument
[ 24.826] (EE) FBTURBO(0): FBIOPUTCMAP: Invalid argument
[ 24.826] (EE) FBTURBO(0): FBIOPUTCMAP: Invalid argument
[ 24.826] (EE) FBTURBO(0): FBIOPUTCMAP: Invalid argument
[ 24.826] (EE) FBTURBO(0): FBIOPUTCMAP: Invalid argument
[ 24.826] (EE) FBTURBO(0): FBIOPUTCMAP: Invalid argument
[ 24.827] (EE) FBTURBO(0): FBIOPUTCMAP: Invalid argument
[ 24.827] (EE) FBTURBO(0): FBIOPUTCMAP: Invalid argument
[ 24.827] (EE) FBTURBO(0): FBIOPUTCMAP: Invalid argument
[ 24.827] (EE) FBTURBO(0): FBIOPUTCMAP: Invalid argument
[ 24.827] (EE) FBTURBO(0): FBIOPUTCMAP: Invalid argument
[ 24.827] (EE) FBTURBO(0): FBIOPUTCMAP: Invalid argument
[ 24.827] (EE) FBTURBO(0): FBIOPUTCMAP: Invalid argument
[ 24.827] (EE) FBTURBO(0): FBIOPUTCMAP: Invalid argument
[ 24.827] (EE) FBTURBO(0): FBIOPUTCMAP: Invalid argument
[ 24.828] (EE) FBTURBO(0): FBIOPUTCMAP: Invalid argument
[ 24.828] (EE) FBTURBO(0): FBIOPUTCMAP: Invalid argument
[ 24.828] (EE) FBTURBO(0): FBIOPUTCMAP: Invalid argument
[ 24.828] (EE) FBTURBO(0): FBIOPUTCMAP: Invalid argument
[ 24.828] (EE) FBTURBO(0): FBIOPUTCMAP: Invalid argument
[ 24.828] (EE) FBTURBO(0): FBIOPUTCMAP: Invalid argument
[ 24.828] (EE) FBTURBO(0): FBIOPUTCMAP: Invalid argument
[ 24.828] (EE) FBTURBO(0): FBIOPUTCMAP: Invalid argument
[ 24.828] (EE) FBTURBO(0): FBIOPUTCMAP: Invalid argument
[ 24.828] (EE) FBTURBO(0): FBIOPUTCMAP: Invalid argument
[ 24.828] (EE) FBTURBO(0): FBIOPUTCMAP: Invalid argument
[ 24.829] (EE) FBTURBO(0): FBIOPUTCMAP: Invalid argument
[ 24.829] (EE) FBTURBO(0): FBIOPUTCMAP: Invalid argument
[ 24.829] (EE) FBTURBO(0): FBIOPUTCMAP: Invalid argument
[ 24.829] (EE) FBTURBO(0): FBIOPUTCMAP: Invalid argument
[ 24.829] (EE) FBTURBO(0): FBIOPUTCMAP: Invalid argument
[ 24.829] (EE) FBTURBO(0): FBIOPUTCMAP: Invalid argument
[ 24.829] (EE) FBTURBO(0): FBIOPUTCMAP: Invalid argument
[ 24.829] (EE) FBTURBO(0): FBIOPUTCMAP: Invalid argument
[ 24.829] (EE) FBTURBO(0): FBIOPUTCMAP: Invalid argument
[ 24.829] (EE) FBTURBO(0): FBIOPUTCMAP: Invalid argument
[ 24.829] (EE) FBTURBO(0): FBIOPUTCMAP: Invalid argument
[ 24.830] (EE) FBTURBO(0): FBIOPUTCMAP: Invalid argument
[ 24.830] (EE) FBTURBO(0): FBIOPUTCMAP: Invalid argument
[ 24.830] (EE) FBTURBO(0): FBIOPUTCMAP: Invalid argument
[ 24.830] (EE) FBTURBO(0): FBIOPUTCMAP: Invalid argument
[ 24.830] (EE) FBTURBO(0): FBIOPUTCMAP: Invalid argument
[ 24.830] (EE) FBTURBO(0): FBIOPUTCMAP: Invalid argument
[ 24.830] (EE) FBTURBO(0): FBIOPUTCMAP: Invalid argument
[ 24.830] (EE) FBTURBO(0): FBIOPUTCMAP: Invalid argument
[ 24.830] (EE) FBTURBO(0): FBIOPUTCMAP: Invalid argument
[ 24.830] (EE) FBTURBO(0): FBIOPUTCMAP: Invalid argument
[ 24.831] (EE) FBTURBO(0): FBIOPUTCMAP: Invalid argument
[ 24.831] (EE) FBTURBO(0): FBIOPUTCMAP: Invalid argument
[ 24.831] (EE) FBTURBO(0): FBIOPUTCMAP: Invalid argument
[ 24.831] (EE) FBTURBO(0): FBIOPUTCMAP: Invalid argument
[ 24.831] (EE) FBTURBO(0): FBIOPUTCMAP: Invalid argument
[ 24.831] (EE) FBTURBO(0): FBIOPUTCMAP: Invalid argument
[ 24.831] (EE) FBTURBO(0): FBIOPUTCMAP: Invalid argument
[ 24.831] (EE) FBTURBO(0): FBIOPUTCMAP: Invalid argument
[ 24.831] (EE) FBTURBO(0): FBIOPUTCMAP: Invalid argument
[ 24.831] (EE) FBTURBO(0): FBIOPUTCMAP: Invalid argument
[ 24.831] (EE) FBTURBO(0): FBIOPUTCMAP: Invalid argument
[ 24.832] (EE) FBTURBO(0): FBIOPUTCMAP: Invalid argument
[ 24.832] (EE) FBTURBO(0): FBIOPUTCMAP: Invalid argument
[ 24.832] (EE) FBTURBO(0): FBIOPUTCMAP: Invalid argument
[ 24.832] (EE) FBTURBO(0): FBIOPUTCMAP: Invalid argument
[ 24.832] (EE) FBTURBO(0): FBIOPUTCMAP: Invalid argument
[ 24.832] (EE) FBTURBO(0): FBIOPUTCMAP: Invalid argument
[ 24.832] (EE) FBTURBO(0): FBIOPUTCMAP: Invalid argument
[ 24.832] (EE) FBTURBO(0): FBIOPUTCMAP: Invalid argument
[ 24.832] (EE) FBTURBO(0): FBIOPUTCMAP: Invalid argument
[ 24.832] (EE) FBTURBO(0): FBIOPUTCMAP: Invalid argument
[ 24.833] (EE) FBTURBO(0): FBIOPUTCMAP: Invalid argument
[ 24.833] (EE) FBTURBO(0): FBIOPUTCMAP: Invalid argument
[ 24.833] (EE) FBTURBO(0): FBIOPUTCMAP: Invalid argument
[ 24.833] (EE) FBTURBO(0): FBIOPUTCMAP: Invalid argument
[ 24.833] (EE) FBTURBO(0): FBIOPUTCMAP: Invalid argument
[ 24.833] (EE) FBTURBO(0): FBIOPUTCMAP: Invalid argument
[ 24.833] (EE) FBTURBO(0): FBIOPUTCMAP: Invalid argument
[ 24.833] (EE) FBTURBO(0): FBIOPUTCMAP: Invalid argument
[ 24.833] (EE) FBTURBO(0): FBIOPUTCMAP: Invalid argument
[ 24.833] (EE) FBTURBO(0): FBIOPUTCMAP: Invalid argument
[ 24.833] (EE) FBTURBO(0): FBIOPUTCMAP: Invalid argument
[ 24.833] (EE) FBTURBO(0): FBIOPUTCMAP: Invalid argument
[ 24.834] (EE) FBTURBO(0): FBIOPUTCMAP: Invalid argument
[ 24.834] (EE) FBTURBO(0): FBIOPUTCMAP: Invalid argument
[ 24.834] (EE) FBTURBO(0): FBIOPUTCMAP: Invalid argument
[ 24.834] (EE) FBTURBO(0): FBIOPUTCMAP: Invalid argument
[ 24.834] (EE) FBTURBO(0): FBIOPUTCMAP: Invalid argument
[ 24.834] (EE) FBTURBO(0): FBIOPUTCMAP: Invalid argument
[ 24.834] (EE) FBTURBO(0): FBIOPUTCMAP: Invalid argument
[ 24.834] (EE) FBTURBO(0): FBIOPUTCMAP: Invalid argument
[ 24.834] (EE) FBTURBO(0): FBIOPUTCMAP: Invalid argument
[ 24.834] (EE) FBTURBO(0): FBIOPUTCMAP: Invalid argument
[ 24.834] (EE) FBTURBO(0): FBIOPUTCMAP: Invalid argument
[ 24.834] (EE) FBTURBO(0): FBIOPUTCMAP: Invalid argument
[ 24.835] (EE) FBTURBO(0): FBIOPUTCMAP: Invalid argument
[ 24.835] (EE) FBTURBO(0): FBIOPUTCMAP: Invalid argument
[ 24.835] (EE) FBTURBO(0): FBIOPUTCMAP: Invalid argument
[ 24.835] (EE) FBTURBO(0): FBIOPUTCMAP: Invalid argument
[ 24.835] (EE) FBTURBO(0): FBIOPUTCMAP: Invalid argument
[ 24.835] (EE) FBTURBO(0): FBIOPUTCMAP: Invalid argument
[ 24.835] (EE) FBTURBO(0): FBIOPUTCMAP: Invalid argument
[ 24.835] (EE) FBTURBO(0): FBIOPUTCMAP: Invalid argument
[ 24.835] (EE) FBTURBO(0): FBIOPUTCMAP: Invalid argument
[ 24.835] (EE) FBTURBO(0): FBIOPUTCMAP: Invalid argument
[ 24.835] (EE) FBTURBO(0): FBIOPUTCMAP: Invalid argument
[ 24.835] (EE) FBTURBO(0): FBIOPUTCMAP: Invalid argument
[ 24.835] (EE) FBTURBO(0): FBIOPUTCMAP: Invalid argument
[ 24.836] (EE) FBTURBO(0): FBIOPUTCMAP: Invalid argument
[ 24.836] (EE) FBTURBO(0): FBIOPUTCMAP: Invalid argument
[ 24.836] (EE) FBTURBO(0): FBIOPUTCMAP: Invalid argument
[ 24.836] (EE) FBTURBO(0): FBIOPUTCMAP: Invalid argument
[ 24.836] (EE) FBTURBO(0): FBIOPUTCMAP: Invalid argument
[ 24.836] (EE) FBTURBO(0): FBIOPUTCMAP: Invalid argument
[ 24.836] (EE) FBTURBO(0): FBIOPUTCMAP: Invalid argument
[ 24.836] (EE) FBTURBO(0): FBIOPUTCMAP: Invalid argument
[ 24.836] (EE) FBTURBO(0): FBIOPUTCMAP: Invalid argument
[ 24.836] (EE) FBTURBO(0): FBIOPUTCMAP: Invalid argument
[ 24.836] (EE) FBTURBO(0): FBIOPUTCMAP: Invalid argument
[ 24.836] (EE) FBTURBO(0): FBIOPUTCMAP: Invalid argument
[ 24.837] (EE) FBTURBO(0): FBIOPUTCMAP: Invalid argument
[ 24.837] (EE) FBTURBO(0): FBIOPUTCMAP: Invalid argument
[ 24.837] (EE) FBTURBO(0): FBIOPUTCMAP: Invalid argument
[ 24.837] (EE) FBTURBO(0): FBIOPUTCMAP: Invalid argument
[ 24.837] (EE) FBTURBO(0): FBIOPUTCMAP: Invalid argument
[ 24.837] (EE) FBTURBO(0): FBIOPUTCMAP: Invalid argument
[ 24.837] (EE) FBTURBO(0): FBIOPUTCMAP: Invalid argument
[ 24.838] (EE) FBTURBO(0): FBIOPUTCMAP: Invalid argument
[ 24.838] (EE) FBTURBO(0): FBIOPUTCMAP: Invalid argument
[ 24.838] (EE) FBTURBO(0): FBIOPUTCMAP: Invalid argument
[ 24.838] (EE) FBTURBO(0): FBIOPUTCMAP: Invalid argument
[ 24.838] (EE) FBTURBO(0): FBIOPUTCMAP: Invalid argument
[ 24.838] (EE) FBTURBO(0): FBIOPUTCMAP: Invalid argument
[ 24.838] (EE) FBTURBO(0): FBIOPUTCMAP: Invalid argument
[ 24.839] (EE) FBTURBO(0): FBIOPUTCMAP: Invalid argument
[ 24.839] (EE) FBTURBO(0): FBIOPUTCMAP: Invalid argument
[ 24.839] (EE) FBTURBO(0): FBIOPUTCMAP: Invalid argument
[ 24.839] (EE) FBTURBO(0): FBIOPUTCMAP: Invalid argument
[ 24.839] (EE) FBTURBO(0): FBIOPUTCMAP: Invalid argument
[ 24.839] (EE) FBTURBO(0): FBIOPUTCMAP: Invalid argument
[ 24.839] (EE) FBTURBO(0): FBIOPUTCMAP: Invalid argument
[ 24.839] (EE) FBTURBO(0): FBIOPUTCMAP: Invalid argument
[ 24.839] (EE) FBTURBO(0): FBIOPUTCMAP: Invalid argument
[ 24.839] (EE) FBTURBO(0): FBIOPUTCMAP: Invalid argument
[ 24.839] (EE) FBTURBO(0): FBIOPUTCMAP: Invalid argument
[ 24.839] (EE) FBTURBO(0): FBIOPUTCMAP: Invalid argument
[ 24.840] (EE) FBTURBO(0): FBIOPUTCMAP: Invalid argument
[ 24.840] (EE) FBTURBO(0): FBIOPUTCMAP: Invalid argument
[ 24.840] (EE) FBTURBO(0): FBIOPUTCMAP: Invalid argument
[ 24.840] (EE) FBTURBO(0): FBIOPUTCMAP: Invalid argument
[ 24.840] (EE) FBTURBO(0): FBIOPUTCMAP: Invalid argument
[ 24.840] (EE) FBTURBO(0): FBIOPUTCMAP: Invalid argument
[ 24.840] (EE) FBTURBO(0): FBIOPUTCMAP: Invalid argument
[ 24.840] (EE) FBTURBO(0): FBIOPUTCMAP: Invalid argument
[ 24.840] (EE) FBTURBO(0): FBIOPUTCMAP: Invalid argument
[ 24.841] (EE) FBTURBO(0): FBIOPUTCMAP: Invalid argument
[ 24.841] (EE) FBTURBO(0): FBIOPUTCMAP: Invalid argument
[ 24.841] (EE) FBTURBO(0): FBIOPUTCMAP: Invalid argument
[ 24.841] (EE) FBTURBO(0): FBIOPUTCMAP: Invalid argument
[ 24.841] (EE) FBTURBO(0): FBIOPUTCMAP: Invalid argument
[ 24.841] (==) FBTURBO(0): DPMS enabled
[ 24.841] (II) FBTURBO(0): failed to enable hardware cursor
[ 24.841] (II) FBTURBO(0): no 3D acceleration because the driver has been compiled without libUMP
[ 24.841] (II) FBTURBO(0): if this is wrong and needs to be fixed, please check ./configure log
[ 24.841] (II) Initializing extension Generic Event Extension')
I do not have the required hw so I don’t know how functional it is,
but it may not be enought
armuseru
 
Posts: 34
Joined: Sat Jan 09, 2021 9:36 am


Return to Packages

Who is online

Users browsing this forum: No registered users and 18 guests