Enable framebuf_new driver (#4775)

Replace framebuf display driver by framebuf_new display driver
Compile framebuf_new as framebuf.dll, and add it to bootcd/livecd
Remove old framebuf from compilation, to not conflict
This commit is contained in:
hpoussin 2023-04-02 16:33:15 +02:00 committed by GitHub
parent 9ee9f73369
commit 1bdefebc9e
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
4 changed files with 10 additions and 9 deletions

View file

@ -1,4 +1,4 @@
add_subdirectory(framebuf)
#add_subdirectory(framebuf)
add_subdirectory(framebuf_new)
add_subdirectory(vga)

View file

@ -7,12 +7,13 @@ list(APPEND SOURCE
screen.c
driver.h)
add_library(framebuf_new MODULE
add_library(framebuf MODULE
${SOURCE}
framebuf_new.rc)
framebuf.rc)
set_module_type(framebuf_new kerneldll ENTRYPOINT DrvEnableDriver 12)
target_link_libraries(framebuf_new libcntpr)
add_importlibs(framebuf_new win32k)
add_pch(framebuf_new driver.h SOURCE)
add_dependencies(framebuf_new psdk)
set_module_type(framebuf kerneldll ENTRYPOINT DrvEnableDriver 12)
target_link_libraries(framebuf libcntpr)
add_importlibs(framebuf win32k)
add_pch(framebuf driver.h SOURCE)
add_dependencies(framebuf psdk)
add_cd_file(TARGET framebuf DESTINATION reactos/system32 FOR all)

View file

@ -10,7 +10,7 @@
#if DBG
ULONG DebugLevel = 0xFFFFFFFF;
ULONG DebugLevel = 0;
/*****************************************************************************
*