Changeset 85386 in vbox for trunk/src/VBox/HostDrivers/linux
- Timestamp:
- Jul 19, 2020 9:34:43 PM (5 years ago)
- svn:sync-xref-src-repo-rev:
- 139403
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/HostDrivers/linux/export_modules.sh
r82968 r85386 113 113 VBOX_PRODUCT=`sed -e 's/^ *VBOX_PRODUCT *= \+\(.\+\)/\1/;t;d' $PATH_ROOT/Config.kmk` 114 114 VBOX_C_YEAR=`date +%Y` 115 VBOX_WITH_PCI_PASSTHROUGH=`sed -e "s/^ *VBOX_WITH_PCI_PASSTHROUGH *= *\(1\?\)/\1/;t;d"$PATH_ROOT/Config.kmk`115 VBOX_WITH_PCI_PASSTHROUGH=`sed -e '/^ *VBOX_WITH_PCI_PASSTHROUGH *[:]\?= */!d' -e 's/ *#.*$//' -e 's/^.*= *//' $PATH_ROOT/Config.kmk` 116 116 117 117 . $PATH_VBOXDRV/linux/files_vboxdrv 118 118 . $PATH_VBOXNET/linux/files_vboxnetflt 119 119 . $PATH_VBOXADP/linux/files_vboxnetadp 120 if [ "$ VBOX_WITH_PCI_PASSTHROUGH" -eq"1" ]; then120 if [ "${VBOX_WITH_PCI_PASSTHROUGH}" = "1" ]; then 121 121 . $PATH_VBOXPCI/linux/files_vboxpci 122 122 fi … … 202 202 203 203 # vboxpci (VirtualBox host PCI access kernel module) 204 if [ "$ VBOX_WITH_PCI_PASSTHROUGH" -eq"1" ]; then204 if [ "${VBOX_WITH_PCI_PASSTHROUGH}" = "1" ]; then 205 205 mkdir $PATH_TMP/vboxpci || exit 1 206 206 for f in $VBOX_VBOXPCI_SOURCES; do
Note:
See TracChangeset
for help on using the changeset viewer.