Changeset 36603 in vbox for trunk/src/VBox/Additions/linux
- Timestamp:
- Apr 6, 2011 10:33:58 PM (14 years ago)
- Location:
- trunk/src/VBox/Additions/linux
- Files:
-
- 4 deleted
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/Additions/linux/Makefile.kmk
r36518 r36603 336 336 337 337 # 338 # Install the sources of our (sanity) test kernel module339 #340 INSTALLS += LnxAddTest-src341 LnxAddTest-src_INST = $(subst $(PATH_TARGET),obj,$(VBOX_LNX_ADD_INST_SHARE_DIR)$(VBOX_LNX_ADD_PACKAGE_NAME))/test/342 LnxAddTest-src_MODE = a+r,u+w343 LnxAddTest-src_SOURCES = \344 $(VBOX_REL_LNX_ADD_INST)Makefile.test=>Makefile \345 $(PATH_BIN)/additions/src/vboxguest/build_in_tmp \346 $(VBOX_REL_LNX_ADD_INST)test.c347 348 349 #350 # Install the sources of our (sanity) test kernel rendering (DRM) module351 #352 INSTALLS += LnxAddDRM-src353 LnxAddDRM-src_INST = $(subst $(PATH_TARGET),obj,$(VBOX_LNX_ADD_INST_SHARE_DIR)$(VBOX_LNX_ADD_PACKAGE_NAME))/test_drm/354 LnxAddDRM-src_MODE = a+r,u+w355 LnxAddDRM-src_SOURCES = \356 $(VBOX_REL_LNX_INST_SRC)Makefile.include.header \357 $(VBOX_REL_LNX_INST_SRC)Makefile.include.footer \358 $(VBOX_REL_LNX_ADD_INST)Makefile.test.drm=>Makefile \359 $(PATH_BIN)/additions/src/vboxguest/build_in_tmp \360 $(VBOX_REL_LNX_ADD_INST)test_drm.c361 362 363 #364 338 # We need our routines.sh and the uninstallation scripts in the staging 365 339 # directory too -
trunk/src/VBox/Additions/linux/installer/vboxadd.sh
r36019 r36603 367 367 test_sane_kernel_dir 368 368 369 if ! sh /usr/share/$PACKAGE/test/build_in_tmp \370 --no-print-directory >> $LOG 2>&1; then371 fail_msg372 printf "Your system does not seem to be set up to build kernel modules.\nLook at $LOG to find out what went wrong.\nOnce you have corrected it, you can run\n\n /etc/init.d/vboxadd setup\n\nto build them.\n\n"373 return 1374 else375 if ! sh /usr/share/$PACKAGE/test_drm/build_in_tmp \376 --no-print-directory >> $LOG 2>&1; then377 printf "\nYour guest system does not seem to have sufficient OpenGL support to enable\naccelerated 3D effects (this requires Linux 2.6.27 or later in the guest\nsystem). This Guest Additions feature will be disabled.\n\n"378 BUILDVBOXVIDEO=""379 fi380 fi381 369 echo 370 if expr `uname -r` '<' '2.6.27' > /dev/null; then 371 echo "Not building the VirtualBox advanced graphics driver as this Linux version is" 372 echo "too old to use it." 373 BUILDVBOXVIDEO= 374 fi 382 375 if [ -n "$BUILDVBOXGUEST" ]; then 383 376 begin "Building the main Guest Additions module"
Note:
See TracChangeset
for help on using the changeset viewer.