VirtualBox

source: vbox/trunk/src/VBox/HostDrivers/linux/do_Module.symvers@ 31900

最後變更 在這個檔案從31900是 31900,由 vboxsync 提交於 15 年 前

OSE compile fixes

  • 屬性 svn:eol-style 設為 native
  • 屬性 svn:keywords 設為 Author Date Id Revision
檔案大小: 541 位元組
 
1#!/bin/sh
2
3#
4# This script is used when building kernel modules from DKMS. I don't
5# know how to solve the problem of inter-module dependencies better.
6#
7# Copyright (C) 2008 Oracle Corporation
8#
9# Oracle Corporation confidential
10# All rights reserved
11#
12
13SYMFILE="/tmp/$1-Module.symvers"
14case "$2" in
15 save)
16 if [ -f "$3" ]; then
17 cp "$3" "$SYMFILE"
18 fi
19 ;;
20 restore)
21 if [ -f "$SYMFILE" ]; then
22 cp "$SYMFILE" "$3"
23 fi
24 ;;
25 *)
26 echo "Usage: <modname> save|restore <location of Module.symvers>"
27 ;;
28esac
注意: 瀏覽 TracBrowser 來幫助您使用儲存庫瀏覽器

© 2025 Oracle Support Privacy / Do Not Sell My Info Terms of Use Trademark Policy Automated Access Etiquette