This commit is contained in:
2025-08-26 22:57:23 +08:00
commit b703135335
25222 changed files with 6200887 additions and 0 deletions

BIN
config.tests/linuxfb/linuxfb Executable file

Binary file not shown.

View File

@@ -0,0 +1 @@
SOURCES = main.cpp

View File

@@ -0,0 +1,16 @@
/* Generated by configure */
#include <linux/fb.h>
#include <sys/kd.h>
#include <sys/ioctl.h>
int main(int argc, char **argv)
{
(void)argc; (void)argv;
/* BEGIN TEST: */
fb_fix_screeninfo finfo;
fb_var_screeninfo vinfo;
int fd = 3;
ioctl(fd, FBIOGET_FSCREENINFO, &finfo);
ioctl(fd, FBIOGET_VSCREENINFO, &vinfo);
/* END TEST */
return 0;
}