source: bootscripts/README@ 1c48007

10.0 10.0-rc1 10.1 10.1-rc1 11.0 11.0-rc1 11.0-rc2 11.0-rc3 11.1 11.1-rc1 11.2 11.2-rc1 11.3 11.3-rc1 12.0 12.0-rc1 12.1 12.1-rc1 6.4 6.5 6.6 6.7 6.8 7.0 7.1 7.2 7.3 7.4 7.5 7.5-systemd 7.6 7.6-systemd 7.7 7.7-systemd 7.8 7.8-systemd 7.9 7.9-systemd 8.0 8.1 8.2 8.3 8.4 9.0 9.1 arm bdubbs/gcc13 ml-11.0 multilib renodr/libudev-from-systemd s6-init trunk xry111/arm64 xry111/arm64-12.0 xry111/clfs-ng xry111/lfs-next xry111/loongarch xry111/loongarch-12.0 xry111/loongarch-12.1 xry111/mips64el xry111/pip3 xry111/rust-wip-20221008 xry111/update-glibc
Last change on this file since 1c48007 was 1c48007, checked in by Bruce Dubbs <bdubbs@…>, 16 years ago

Moved bootscripts and udev-config to BOOK
Updated Makefile to automatically generate bootscript and udev-config tarballs
Updated licesnse to be the same as BLFS

git-svn-id: http://svn.linuxfromscratch.org/LFS/trunk/BOOK@8548 4aa44e1e-78dd-0310-a6d2-fbcd4c07a689

  • Property mode set to 100644
File size: 2.5 KB
Line 
1Network Configuration:
2 Script Files:
3 rc.d/init.d/network
4 sysconfig/network-devices/ifup
5 sysconfig/network-devices/ifdown
6 sysconfig/network-devices/services/*
7
8 Configuration Files:
9 sysconfig/network-devices/ifconfig.*/*
10 Note: ifconfig.* could be either a file or directory,
11 but the filename extention must be the same name
12 as the network interface you wish it to belong to.
13 The files within the directory will be processed
14 in alphanumerical order on boot, and reversed on
15 shutdown.
16 - SERVICE: which script to run in services directory.
17 - ONBOOT: if set to yes, this interface will be started on
18 bootup, and stopped on shutdown
19 - ONHOTPLUG: if set to yes, this interface will be started
20 and stopped on hotplug events. This requires
21 ifup and ifdown symlinked to /sbin, as well
22 as the hotplug package
23
24 sysconfig/network
25 - HOSTNAME: Value of the system's hostname
26
27 Additional Configuration:
28 sysconfig/network-devices/ifconfig.*
29 ipv4-static:
30 - IP: static IP Address
31 - GATEWAY: Specifies the IP Address of the gateway server
32 - PREFIX: CIDR prefix of IP Address, defaults to 24 if not set
33 - PEER: IP Address of peer (for point-to-point connections and tunnels)
34 - BROADCAST: broadcast address
35 ipv4-static-route:
36 - TYPE: network (default type if not specified), default, host or
37 unreachable
38 - IP: IP Address of target (for network, host and unreachable)
39 - PREFIX: CIDR prefix of target (for network, host and unreachable)
40 - GATEWAY: IP Address of gateway to reach target (for network and default)
41
42
43SetClock configuration:
44 Script Files:
45 rc.d/init.d/setclock
46
47 Configuration Files:
48 sysconfig/clock
49 - UTC: 1 assumes hwclock is in UTC
50 0 assumes hwclock is in local time
51
52CleanFS configuration:
53 Script Files:
54 rc.d/init.d/cleanfs
55
56 Configuration Files:
57 /etc/sysconfig/createfiles
58 Each line is parsed, using space as a deliminator.
59 [NAME] [TYPE] [PERMISSIONS] [USER] [GROUP]
60 The below fields are currently only used on dev type.
61 ([DEV TYPE] [MAJOR#] [MINOR#])
62 Name:
63 File/Directory/Device name
64 Type:
65 dir: creates a directory
66 file: creates a file
67 dev: creates a device
68 Permissions:
69 chmod the created file
70 User/Group:
71 chown the created file/dir to this user/group
72 Dev Type:
73 char: character [needs MAJOR#, MINOR#]
74 block: block [needs MAJOR#, MINOR#]
75 pipe: pipe
76 Major#:
77 Used by character and block devices.
78 Minor#:
79 Used by character and block devices.
Note: See TracBrowser for help on using the repository browser.