Changeset 28283 in vbox for trunk/src/VBox/Additions/linux/drm
- Timestamp:
- Apr 14, 2010 9:29:53 AM (15 years ago)
- svn:sync-xref-src-repo-rev:
- 60030
- Location:
- trunk/src/VBox/Additions/linux/drm
- Files:
-
- 3 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/Additions/linux/drm/files_vboxvideo_drm
r17406 r28283 21 21 ${PATH_ROOT}/src/VBox/Additions/linux/drm/vboxvideo_drm.c=>vboxvideo_drm.c \ 22 22 ${PATH_ROOT}/src/VBox/Additions/linux/drm/vboxvideo_drm.h=>vboxvideo_drm.h \ 23 ${PATH_OUT}/version-generated.h=>version-generated.h \ 24 ${PATH_OUT}/product-generated.h=>product-generated.h \ 23 25 ${PATH_ROOT}/src/VBox/Additions/linux/drm/Makefile.module=>Makefile \ 24 26 " -
trunk/src/VBox/Additions/linux/drm/vboxvideo_drm.c
r27248 r28283 59 59 #include <linux/version.h> 60 60 #include <linux/module.h> 61 #include "version-generated.h" 61 62 62 63 #if LINUX_VERSION_CODE >= KERNEL_VERSION(2, 6, 27) … … 130 131 #endif /* LINUX_VERSION_CODE >= KERNEL_VERSION(2, 6, 27) */ 131 132 133 #ifdef MODULE_VERSION 134 MODULE_VERSION(VBOX_VERSION_STRING); 135 #endif 132 136 MODULE_LICENSE("GPL and additional rights"); -
trunk/src/VBox/Additions/linux/drm/vboxvideo_drm.h
r28278 r28283 57 57 */ 58 58 59 # define DRIVER_AUTHOR "Oracle Corporation"59 #include "product-generated.h" 60 60 61 #define DRIVER_NAME "vboxvideo" 62 #define DRIVER_DESC "VirtualBox Graphics Card" 63 #define DRIVER_DATE "20090303" 61 #define DRIVER_AUTHOR VBOX_VENDOR 62 63 #define DRIVER_NAME "vboxvideo" 64 #define DRIVER_DESC VBOX_PRODUCT " Graphics Card" 65 #define DRIVER_DATE "20090303" 64 66 65 67 #define DRIVER_MAJOR 1 … … 72 74 73 75 #endif 74
Note:
See TracChangeset
for help on using the changeset viewer.