Changeset 29690 in vbox for trunk/src/VBox/Additions/linux
- Timestamp:
- May 20, 2010 12:03:35 PM (15 years ago)
- svn:sync-xref-src-repo-rev:
- 61857
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/Additions/linux/export_modules
r29681 r29690 29 29 PATH_VBOXGUEST="$PATH_ROOT/src/VBox/Additions/common/VBoxGuest" 30 30 PATH_VBOXSF="$PATH_ROOT/src/VBox/Additions/linux/sharedfolders" 31 PATH_VBOXVIDEO="$PATH_ROOT/src/VBox/Additions/linux/drm" 31 32 32 33 VBOX_VERSION_MAJOR=`sed -e "s/^ *VBOX_VERSION_MAJOR *= \+\([0-9]\+\)/\1/;t;d" $PATH_ROOT/Config.kmk` … … 41 42 . $PATH_VBOXGUEST/linux/files_vboxguest 42 43 . $PATH_VBOXSF/files_vboxsf 44 . $PATH_VBOXVIDEO/files_vboxvideo_drm 43 45 44 46 # Temporary path for creating the modules, will be removed later … … 94 96 done 95 97 98 # vboxvideo (VirtualBox guest kernel module for drm support) 99 mkdir $PATH_TMP/vboxvideo || exit 1 100 for f in $FILES_VBOXVIDEO_DRM_NOBIN; do 101 install -D -m 0644 `echo $f|cut -d'=' -f1` "$PATH_TMP/vboxvideo/`echo $f|cut -d'>' -f2`" 102 done 103 for f in $FILES_VBOXVIDEO_DRM_BIN; do 104 install -D -m 0755 `echo $f|cut -d'=' -f1` "$PATH_TMP/vboxvideo/`echo $f|cut -d'>' -f2`" 105 done 106 96 107 # convenience Makefile 97 108 install -D -m 0644 $PATH_LINUX/Makefile "$PATH_TMP/Makefile"
Note:
See TracChangeset
for help on using the changeset viewer.