Created
November 15, 2016 22:03
-
-
Save FilBot3/ecd8d04bcdee1612491f7d824cb18d94 to your computer and use it in GitHub Desktop.
Building CentOS 6 Virtualbox Guest Additions
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| #!/bin/bash | |
| # Comment to turn off verbosity. | |
| set -x | |
| yum install -y kernel-devel-`uname -r` | |
| cd /usr/src/kernels/`uname -r`/include/drm/ | |
| ln -s /usr/include/drm/drm.h drm.h | |
| ln -s /usr/include/drm/drm_sarea.h drm_sarea.h | |
| ln -s /usr/include/drm/drm_mode.h drm_mode.h | |
| ln -s /usr/include/drm/drm_fourcc.h drm_fourcc.h |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment