mirror of
https://github.com/reactos/reactos.git
synced 2024-12-27 09:34:43 +00:00
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:
parent
9ee9f73369
commit
1bdefebc9e
4 changed files with 10 additions and 9 deletions
|
@ -1,4 +1,4 @@
|
|||
|
||||
add_subdirectory(framebuf)
|
||||
#add_subdirectory(framebuf)
|
||||
add_subdirectory(framebuf_new)
|
||||
add_subdirectory(vga)
|
||||
|
|
|
@ -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)
|
||||
|
|
|
@ -10,7 +10,7 @@
|
|||
|
||||
#if DBG
|
||||
|
||||
ULONG DebugLevel = 0xFFFFFFFF;
|
||||
ULONG DebugLevel = 0;
|
||||
|
||||
/*****************************************************************************
|
||||
*
|
||||
|
|
Loading…
Reference in a new issue