Changeset 2751

Show
Ignore:
Timestamp:
07/28/08 23:44:19 (4 months ago)
Author:
dhozac
Message:

Add the /dev/fd symlink that is expected by more and more things.

Files:

Legend:

Unmodified
Added
Removed
Modified
Copied
Moved
  • trunk/distrib/defaults/devs

    r13 r2751  
    66tty     c 5 0 666 
    77ptmx    c 5 2 666 
     8fd      l ../proc/self/fd 777 
  • trunk/scripts/vserver-build.functions

    r2704 r2751  
    4444        (f)     touch "$dst" 
    4545                chmod $4 "$dst" 
     46                ;; 
     47        (l)     ln -s "$4" "$dst" 
     48                test -z "$5" || chmod "$5" "$dst" 
    4649                ;; 
    4750        (*)     echo "Unknown dev-entry mode '$3'" >&2