Current BE-LFS (but w/ GCC 3.3.3) merged -> 6.0 branch
[linux_from_scratch.git] / bootscripts / lfs / sysconfig / createfiles
blob750709f13a350c5ef1032836d34b288538875aaa
1 # Begin /etc/sysconfig/createfiles 
3 # The syntax of this file is as follows:
5 # if type is equal to "file" or "dir"
6 #  <filename> <type> <permissions> <user> <group>
7 # if type is equal to "dev"
8 #  <filename> <type> <permissions> <user> <group> <devtype> <major> <minor>
10 # <filename> is the name of the file which is to be created
11 # <type> is either file, dir, or dev.
12 #   file creates a new file
13 #   dir creates a new directory
14 #   dev creates a new device
15 # <devtype> is either block, char or pipe
16 #   block creates a block device
17 #   char creates a character deivce
18 #   pipe creates a pipe, this will ignore the <major> and <minor> fields
19 # <major> and <minor> are the major and minor numbers used for the device.
21 # End /etc/sysconfig/createfiles