1
0
forked from pool/virtualbox

- fix typo in spec file, which breaks loading of vboxsf kernel

module on guest

OBS-URL: https://build.opensuse.org/package/show/Virtualization/virtualbox?expand=0&rev=18
This commit is contained in:
Michal Seben 2011-01-12 13:33:13 +00:00 committed by Git OBS Bridge
parent 3a85ec9703
commit e336cd24b0
2 changed files with 9 additions and 3 deletions

View File

@ -1,3 +1,9 @@
-------------------------------------------------------------------
Wed Jan 12 13:29:36 UTC 2011 - mseben@gmail.com
- fix typo in spec file, which breaks loading of vboxsf kernel
module on guest
-------------------------------------------------------------------
Wed Jan 5 08:16:35 UTC 2011 - mseben@gmail.com

View File

@ -256,14 +256,14 @@ for vbox_module in out/linux.*/release/bin/src/vbox{drv,netflt,netadp} \
# copy sources which will be used to build vbox module in last step
%__cp -r $vbox_module/ modules_build_dir/$flavor/
# copy vboxdrv (for host) and vboxguest (for guest) module symbols:
# copy vboxdrv (for host) module symbols which are used by vboxnetflt and vboxnetadp km's:
if [ "$module_name" = "vboxnetflt" -o \
"$module_name" = "vboxnetadp" ]; then
%__cp $PWD/modules_build_dir/$flavor/vboxdrv/Module.symvers \
$PWD/modules_build_dir/$flavor/$module_name
fi
if [ "$modulename" = "vboxsf" ]; then
# copy vboxguest (for guest) module symbols which are used by vboxsf km:
if [ "$module_name" = "vboxsf" ]; then
%__cp $PWD/modules_build_dir/$flavor/vboxguest/Module.symvers \
$PWD/modules_build_dir/$flavor/$module_name
fi