Changeset 108379 in vbox for trunk/src/VBox/Additions/linux/drm/vbox_drv.c
- Timestamp:
- Feb 25, 2025 3:44:10 PM (8 weeks ago)
- svn:sync-xref-src-repo-rev:
- 167740
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/Additions/linux/drm/vbox_drv.c
r108377 r108379 85 85 int ret = 0; 86 86 87 #if RTLNX_VER_MIN(6,0,0) 88 static bool fWarned = false; 89 if (!fWarned) 90 { 91 printk(KERN_ERR "vboxvideo: VM is using legacy graphics controller, " 92 "please consider to configure this guest to use VMSVGA instead\n"); 93 fWarned = true; 94 } 95 #endif 96 87 97 # if RTLNX_VER_RANGE(5,14,0, 6,13,0) || RTLNX_RHEL_RANGE(8,6, 8,99) 88 98 # if RTLNX_VER_MIN(5,15,0) || RTLNX_RHEL_RANGE(8,7, 8,99) || RTLNX_RHEL_MIN(9,1) || RTLNX_SUSE_MAJ_PREREQ(15,4) … … 427 437 return -EINVAL; 428 438 429 #if RTLNX_VER_MIN(6,0,0)430 printk(KERN_ERR "vboxvideo: VM is using legacy graphics controller, "431 "please consider to configure this guest to use VMSVGA instead\n");432 #endif433 434 439 printk("vboxvideo: loading version " VBOX_VERSION_STRING " r" __stringify(VBOX_SVN_REV) "\n"); 435 440 if (VBOX_VIDEO_NOMODESET())
Note:
See TracChangeset
for help on using the changeset viewer.