source: bootscripts/ChangeLog@ 9bb0228

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 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 9bb0228 was 9bb0228, checked in by Bruce Dubbs <bdubbs@…>, 12 years ago

Bootscript change log.

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

  • Property mode set to 100644
File size: 38.0 KB
Line 
12012-04-09 Bruce Dubbs <bdubbs@linuxfromscratch.org>
2
3 * General update of network scripts ifup/ifdown and services
4 ** Add if_true utility function to init_functions
5 ** Change variable INTERFACES to COMPONENT_INTERFACES for bridge interface
6 ** ifdown now only uses the first SERVICE
7 ** Updated ifup.8 to reflect current usage
8 ** ifup
9 *** Move interface up logic to after service scripts. Eliminates the
10 need for the LINK_CHECK variable.
11 *** Sets the GATEWAY if the variable is set
12 *** Add MTU logic to ifup
13
142012-01-22 Matt Burgess <matthew@linuxfromscratch.org>
15
16 * lfs/init.d/udev: Change udevd path following upstream changes to its
17 location
18
192011-12-23 Matt Burgess <matthew@linuxfromscratch.org>
20
21 * lfs/init.d/mountvirtfs: Correct permissions on /run/shm
22
232011-11-28 DJ Lucas <dj@linuxfromscratch.org>
24
25 * lfs/init.d/mountfs: Add '-t nosysfs' to umount command
26 * lfs/init.d/mountvirtfs: remove unneeded spaces in output
27 * lfs/init.d/rc: Correct double interactive prompt and set prompt defaults
28 * lfs/init.d/setclock: Remove screen output from start case (udev)
29 * lfs/init.d/udev{,_retry}: Restore output to screen and log
30 * lfs/sbin/ifup: Change "..." to ": " (not awaiting additonal output)
31
322011-11-14 Bruce Dubbs <bdubbs@linuxfromscratch.org>
33
34 * The following are from suggestions by DJ Lucas
35 ** General cleanup of scripts
36 ** Move consolelog function to rc
37 ** Clean up boot logging functions
38 ** Fix interactive prompt between run level S and target run level
39
402011-10-06 Bryan Kadzban <bryan@linuxfromscratch.org>
41
42 * Add configuration for udev_retry, and remove --type=failed (which does
43 not work with recent udev versions anyway, since no events can possibly
44 trigger it). Start with just the "rtc" subsystem. BLFS should eventually
45 add "sound" to this file, and perhaps others.
46
472011-09-18
48 * Review and update of changes made in previous change.
49 ** Rename /etc/sysconfig/init_params to /etc/sysconfig/rc.site.
50 ** Move network services to /lib/services.
51 ** Move init-functions to /lib/lsb.
52 *** /lib/lsb is a symlink to /lib/services.
53 * Create convenience symlink /etc/init.d->/etc/rc.d/init.d.
54 * Add help and man pages to upup/ifdown.
55 * Append /run/var/bootlog to /var/log/boot.log at the end of
56 the boot sequence.
57 * Add capabiltiy to step through the boot scripts at boot time
58 * Optionally allow environment variables in sysconfig directory's
59 console, network, and clock files to be placed in rc.site.
60 * Add an optional FASTBOOT parameter to set /fastboot when rebooting.
61
622011-07-14 Bruce Dubbs <bdubbs@linuxfromscratch.org>
63 * Major rewrite of all LFS scripts
64 ** Move ifup/ifdown to /sbin
65 ** Move functions and network services to /lib/boot
66 ** Remove contrib directory
67 ** Move all READ commands to functions and allow the user to specify
68 HEADLESS=1 to skip READ commands
69 ** Add /etc/sysconfig/init_params for adding environmental parameters
70 to all functions used in bootscripts
71 ** Move network configuration to /etc/sysconfig/ifconfig.*. The
72 ifconfig files can have any extention. Use IFACE parameter to
73 specify the target network interface within the configuration file.
74 ** Adds an optional parameter, SKIPTMPCLEAN, to skip the removal of
75 files in /tmp at bootup. Specify the variable in
76 /etc/sysconfig/init_params.
77
782011-05-31 DJ Lucas <dj@linuxfromscratch.org>
79 * lfs/init.d/udev: Add multiple udev triggers for both subsystems and
80 devices per upstream recommendation.
81
822011-04-19 Bruce Dubbs <bdubbs@linuxfromscratch.org>
83 * lfs/init.d/mountvirtfs: Add creation of /run/{var,lock,shm}.
84 * lfs/init.d/udev: Add /dev/shm -> /run/shm symlink.
85
862011-04-18 Bruce Dubbs <bdubbs@linuxfromscratch.org>
87 * lfs/init.d/mountvirtfs: Change name from mountkernfs to mountvirtfs.
88 Add mounting of /run filesystem.
89
902010-05-29 Matt Burgess <matthew@linuxfromscratch.org>
91 * lfs/init.d/udev: Only copy /lib/udev/devices/null, as Udev >= 155 copies
92 devices from /lib/udev/devices to /dev itself. Udevd still needs /dev/null
93 present before starting up though.
94
952010-04-20 Bryan Kadzban <bryan@linuxfromscratch.org>
96 * lfs/init.d/udev, lfs/init.d/udev_retry: Add --action=add, to handle udev
97 version 152 and newer, which send "change" events by default in udevtrigger
98 now.
99
1002010-01-24 Matthew Burgess <matthew@linuxfromscratch.org>
101 * lfs/init.d/udev: Check to see if /dev is already mounted, as it may be if
102 under an initramfs environment. See ticket #2550.
103
1042009-08-14 Bryan Kadzban <bryan@linuxfromscratch.org>
105 * lfs/init.d/udev_retry: Use "udevadm trigger --type=failed", which
106 apparently replaced "--retry-failed" some time ago. "--retry-failed" is
107 removed in udev-146.
108
1092009-01-02 Bruce Dubbs <bdubbs@linuxfromscratch.org>
110 * lfs/init.d/functions:
111 * lfs/sysconfig/network-devices/ifup:
112 Updated line widths to accomodate pdf generation in both the above
113 files.
114
1152008-10-27 DJ Lucas <dj@linuxfromscratch.org>
116 * lfs/init.d/cleanfs: Removed '! -newer /proc' from find commands in
117 check for stale files in /var/lock and /var/run.
118 * Makefile: Reversed cleanfs and udev_retry scripts so that cleanfs
119 runs immediately after mountfs.
120
1212008-10-26 Dan Nicholson <dnicholson@linuxfromscratch.org>
122 * lfs/init.d/functions: Remove stale pid files when encountered
123 in loadproc/killproc/reloadproc. When the bootscript specifies
124 a pid file to use with the "-p pidfile" argument, *proc
125 functions previously bailed out when the referenced file
126 contains an invalid pid.
127
1282008-10-23 DJ Lucas <dj@linuxfromscratch.org>
129 * lfs/init.d/console: Removed BROKEN_COMPOSE as kernel patch has
130 been accepted upstream.
131
1322008-05-21 Bryan Kadzban <bryan@linuxfromscratch.org>
133 * lfs/init.d/udev, lfs/init.d/udev_retry: Use new udevadm program.
134
1352007-08-20 DJ Lucas <dj@linuxfromscratch.org>
136 * lfs/init.d/setclock: Added missing 'stop' argument to usage text
137
1382007-08-13 Dan Nicholson <dnicholson@linuxfromscratch.org>
139 * lfs/init.d/checkfs: Don't suppress error messages from the screen.
140
1412007-07-18 Dan Nicholson <dnicholson@linuxfromscratch.org>
142 * Makefile, lfs/init.d/consolelog: New bootscript controlling the
143 kernel log level on the console. This is controlled by the LOGLEVEL
144 variable in /etc/sysconfig/console.
145 * lfs/init.d/modules: Remove the log level handling since this is
146 done in the consolelog script now.
147 * lfs/init.d/modules: Clean up the script by removing the file
148 descriptor duplication and instead just redirecting
149 /etc/sysconfig/modules to the input of the while loop.
150
1512007-06-16 Dan Nicholson <dnicholson@linuxfromscratch.org>
152 * lfs/init.d/mountfs, lfs/init.d/mountkernfs, lfs/init.d/setclock,
153 lfs/init.d/modules, lfs/sysconfig/network-devices/if{up,down}:
154 Don't suppress stderr during bootscripts unless necessary. This
155 would prevent potentially critical messages from reaching the screen.
156
1572007-04-24 Dan Nicholson <dnicholson@linuxfromscratch.org>
158 * lfs/init.d/functions: When killproc is executed, it checks that
159 the process is still running, sleeps if it is, then checks again.
160 The sleep is 1 second in between checks. By sleeping for 0.1 seconds
161 in between checks, killproc is much faster as it's wasting much
162 less time sleeping in the normal case that the process has died
163 after a short delay.
164
1652007-04-16 Dan Nicholson <dnicholson@linuxfromscratch.org>
166 * lfs/init.d/functions: Redirect stderr when using kill to suppress
167 output.
168 * lfs/init.d/functions: killproc() was not handling the case where a
169 pidfile is passed to the function. The logic with the signal to be
170 used was causing issues with the handling of pidfiles. This has been
171 fixes, and now killproc() will recheck the process if the signal
172 was TERM (the default) or KILL.
173 * lfs/init.d/functions: statusproc() has been changed to use pidofproc()
174 instead of the deprecated getpids(). Additionally, it now accepts
175 the -p argument to specify a pidfile.
176 * lfs/init.d/functions: Currently, statusproc() always returns
177 successfully, and the only way to know if the process is running
178 is to parse the output. This changes statusproc() to return the
179 status of pidofproc(), which will return unsuccessfully if the
180 requested process is not running.
181 * lfs/init.d/functions: Changed reloadproc() to use pidofproc() and
182 respect the -p argument for pidfiles.
183 * lfs/init.d/sysklogd: Remove a useless argument to reloadproc().
184
1852007-03-13 Dan Nicholson <dnicholson@linuxfromscratch.org>
186 * lfs/init.d/functions: If pidofproc() is passed the -p argument
187 it can bomb testing a null variable with an integer expression.
188
1892007-02-22 Dan Nicholson <dnicholson@linuxfromscratch.org>
190 * lfs/init.d/mountfs, lfs/init.d/console, lfs/init.d/setclock,
191 lfs/init.d/mountkernfs: &> redirection is not supported in POSIX.
192 Fortunately, it's equivalent to >word 2>&1 according to bash(1).
193
1942007-02-22 Dan Nicholson <dnicholson@linuxfromscratch.org>
195 * lfs/init.d/console: POSIX says that shells only need to trap on
196 signals. Trapping on ERR isn't always supported. Conditionals have
197 been added to set the $failed variable in spots that seemed
198 appropriate for checking errors.
199
2002007-02-22 Dan Nicholson <dnicholson@linuxfromscratch.org>
201 * lfs/init.d/functions: Use arithmetic expansion and string length,
202 which are both mandated by POSIX, rather than spawning two processes
203 every time boot_mesg() is called.
204
2052007-02-22 Dan Nicholson <dnicholson@linuxfromscratch.org>
206 * lfs/init.d/functions: In order to provide an `echo' which provides
207 handles the -e and -n options for all POSIX shells, a feature test
208 is added which stores its result in $ECHO. /bin/echo will be used
209 if the default echo is not capable. Changed the existing functions
210 to reference $ECHO when needed.
211 * lfs/init.d/console: Use $ECHO when -en is needed.
212
2132007-02-03 Bryan Kadzban <bryan@linuxfromscratch.org>
214 * ChangeLog: Rename from CHANGELOG, start using GNU style entries.
215
216 * Makefile: Move setclock before checkfs. Fixes #1948.
217
2182006-11-25 Bryan Kadzban <bryan@linuxfromscratch.org>
219 * lfs/init.d/udev_retry: Copy Debian's "copy generated rules" initscript
220 code, to clean up when the rule_generator scripts run before / is
221 writable. (Since the rule_generator code is from Debian, I assume their
222 cleanup code is appropriate.)
223
2242006-10-15 Bryan Kadzban <bryan@linuxfromscratch.org>
225 * lfs/init.d/udev_retry: Fix to work with udev >= 099.
226
227n/a - June 2, 2006
228 * Removed console config file and makefile targets.
229 * Removed references to /dev/bug and bugreport in udevand
230 udev_retry bootscripts. (DJ Lucas)
231
232n/a - April 17, 2006
233 * Updated udev script to use the new udevsettle program.
234 * Added udev_retry script for systems that have /usr on a different
235 partition or for some other reason fail the initial replay. (Archaic)
236
237n/a - April 15, 2006
238 * Cleaned up contrib directory. Removed: contrib/init.d,
239 contrib/enhanced, contrib/livecd, contrib/hotplug, and raq2
240 patch. (DJ Lucas)
241
242n/a - April 14, 2006
243 * Merged changes from udev_update branch (DJ Lucas)
244 * Replaced a return with an exit and reversed comment changes in
245 udev bootscript. (Dan Nicholson)
246 * Replaced walk_sysfs function in udev bootscript with new udevtrigger
247 program and move wait_for_uevents function inline. (DJ Lucas)
248 * Removed extra evaluate_retval in udev bootscript. (Ken Moffat)
249 * Wait for uevents to be processed in the udev script. See ticket
250 #1720 for details. (Matthew Burgess)
251
252n/a - March 21, 2006
253 * Removed old references to boot_log function and arguments passed
254 to boot_mesg_flush in echo_* functions. (DJ Lucas)
255
256n/a - March 10, 2006
257 * Moved src argument to ipv4-static-route service script and
258 removed from ipv4-static service script. (DJ Lucas)
259
260n/a - March 8. 2006
261 * Correct sourced path in checkfs script. (Matthew Burgess)
262
263n/a - December 31, 2005
264 * Replaced /etc/rc.d with ${rc_base} in checkfs. (Vincent Fretin)
265
266n/a - December 24, 2005
267 * Added UTF-8 support to console script. (Alexander E. Patrakov)
268
269n/a - September 11, 2005
270 * Removed text wraping and boot logging.
271 * Changed killproc to use warning if not running
272 * Changed 'print_status warning' to use old style output
273 * Fixed display error with LSB init-functions script
274 * Made above killproc/print_status changes in enhanced
275 bootscripts.
276 * Made logger service configurable in enhanced
277 bootscripts. (DJ Lucas)
278
279n/a - August 14, 2005
280 * Added -s flag to pidofproc() for backwards
281 compatibility (DJ Lucas)
282 * Fixed erronous values returned by pidofproc() which
283 broke the functionality of statusproc (DJ Lucas)
284
285n/a - July 1, 2005
286 * Changed a == to a = in lfs/init.d/functions, in the boot_mesg
287 function for ash compliancy (Nathan Coulson)
288
289n/a - June 26, 2005
290 * Removed consolelog script from contrib
291 * Updated interactive rc script in contrib and added
292 README.rc-Interactive, added install target to the
293 Makefile. (DJ Lucas)
294
2953.2.2 - May 29, 2005
296 * Tagged as 3.2.2 (Nathan Coulson)
297
298n/a - May 26, 2005
299 * Added minimal target for cross-lfs book (Jim Gifford)
300 * Fixed raq2 patch (Jim Gifford)
301
3023.2.1 - May 1, 2005
303 * Tagged as 3.2.1 (Nathan Coulson)
304
305n/a - April 17, 2005
306 * removed touch from hotplug bootscript (Matthew Burgess)
307 * moved commands around in localnet bootscript (Andrew Benton)
308
3093.2.0 - March 30, 2005
310 * Changed from syslog-ng to sysklogd (Archaic)
311 * Temporairly changed loadproc to return 0 if the program is
312 already running (Nathan Coulson)
313 * Fixed (by reverting) ifup/ifdown/network (Nathan Coulson),
314 Reported by Jim Gifford
315 * Fixed network up/down along with adding support of ONHOTPLUG
316 * Tagged as 3.2.0
317
318n/a - March 19, 2005
319 * Updated RaQ2 patch (Jim Gifford)
320 * Added net.agent for Hotplug of Network adapters in contrib
321 (Jim Gifford)
322
323n/a - March 16, 2005
324 * Reverted the change from loadproc to start_daemon,
325 Moved compatibility code into one single function.
326 (Nathan Coulson)
327 * Readded the ONHOTPLUG option for ifup/ifdown (Nathan Coulson)
328 * Fixed killproc's output
329
330n/a - March 01, 2005
331 * Added CHECK_LINK variable in ifconfig.*/*, so if the
332 interface does not exist, it will not fail.
333 (Nathan Coulson)
334
335n/a - February 19, 2005
336 * Added evaluate_retval to the end of loadproc and killproc.
337 lsb does not say that killproc should print [ OK ],
338 but required for compatibility. (Nathan Coulson)
339
340n/a - February 9, 2005
341 * Accidently mounted /dev with 775 instead of 755, fixed
342 (Reported by Alexander E. Patrakov)
343
344n/a - February 9, 2005
345 * Bugfix for /dev, now mounted with 755 permission
346
347n/a - February 8, 2005
348 * changed pidof, so it doesnt check the process id
349 of running bootscripts, and to process shell scripts
350 (Nathan Coulson)
351
352n/a - February 6, 2005
353 * Updated main functions file with lsb functions file
354 Should now be LSB compliant (Nathan Coulson)
355
356n/a - January 10, 2005
357 * Moved ONBOOT check back to network (Nathan Coulson)
358 * Removed ONHOTPLUG check (Nathan Coulson)
359
360n/a - January 6, 2005
361 * fixed mountkernfs output (Nathan Coulson)
362 * reverted mountfs fakemounting (Nathan Coulson)
363
364n/a - January 5, 2005
365 * Attempted to simplify network bootup files (Nathan Coulson)
366 * Modified mountkernfs to use mountpoint (Nathan Coulson)
367 * Assuming sysfs is always mounted (Nathan Coulson)
368 * Moved fakemount to below mounting (Nathan Coulson)
369 * Removed -t noramfs from umount, as we now use tmpfs (Nathan Coulson)
370 * moved sysctl from mountkernfs to sysctl (Nathan Coulson)
371 * Added -q to sysctl (Nathan Coulson)
372
373n/a - January 2, 2005
374 * Fixed statusproc output. (DJ Lucas)
375
3763.1.0 - December 31, 2004
377 * fixed textoutput
378 * Tagged as 3.1.0
379
380n/a - December 30, 2004
381 * Fixed name of LSB Functions file
382 * Changed boot_mesg to act like echo instead of echo -n, boot_mesg now
383 takes the -n argument if you do not wish to goto the next line
384
3853.0.1 - December 25, 2004
386 * Released as 3.0.1
387
388n/a - December 20, 2004
389 * Cleaned up header.
390 * Added RaQ2 Patch
391
392n/a - December 16, 2004
393 * Fixed a text typo in udev, tmpfs instead of ramfs (Steve Crosby)
394
395n/a - December 14, 2004
396 * Fixed a warning with find in cleanfs
397
398
3993.0 - December 8, 2004
400
401n/a - December 5, 2004
402 * Moved bootlog to use local2 service to avoide conflict with
403 dhcpcd (DJ Lucas)
404
4053.0-rc1 - December 1, 2004
406 * rc-Interactive added (DJ Lucas)
407 * rc-Interactive moved to contrib (Nathan Coulson)
408
409n/a - November 27, 2004
410 * Moved bootlog to use local1 to avoid conflict with ppd (DJ Lucas)
411
412n/a - November 25, 2004
413 * Added consolelog to contrib/sysconfig (DJ Lucas)
414 * Rewrite of line wraping in boot_mesg and various fixes
415 related to boot_mesg changes (DJ Lucas, Alexander Patrakov)
416 * syslog-ng is now installed by default (Jeremy Utley)
417 * hotplug is now installed by default (Jeremy Utley)
418 * udev now uses /sbin/hotplug as the default hotplug handler
419 (Nathan Coulson)
420 * udev now mounts a tmpfs instead of a ramfs onto /dev,
421 as suggested by Greg K-H (Nathan Coulson)
422 * Created contrib/lsb, and added a LSB compliant functions file
423 (Nathan Coulson, and Alexander Patrakov)
424 * Modified find [requires find 4.2.3+] (Matthew Burgess)
425
426n/a - November 20, 2004
427 * Modifed modules script to return to previous kernel message
428 level (DJ Lucas)
429
430n/a - November 02, 2004
431 * Added sysctl -p to mountkernfs (Matthew Burgess, DJ Lucas)
432
433n/a - October 07, 2004
434 * statusproc modified not to send data to bootlog (Nathan Coulson)
435 * Fixed halt commands in checkfs and udev (James Robertson)
436
437n/a - October 04, 2004
438 * Fixes to commit on 2004/09/30 (James Robertson)
439 * Revert a few changes until later (Nathan Coulson)
440 * Added a warning about switching from a 8bit font
441 to a 9bit font (Alexander Patrakov)
442
443n/a - September 30, 2004
444 * Finished off boot_mesg() (James Robertson)
445 * Standardized all scripts to same variable format and other
446 internal sh/bash function calls (James Robertson)
447 * Fully implemented boot_mesg across all scripts in sysconfig
448 and init.d (James Robertson)
449
450n/a - September 26, 2004
451 * Added BOOTMESG_PREFIX variable, so users can optionally set a
452 prefix for boot messages (James Robertson)
453 * Fixed localnet status, to use ip instead of ifconfig (Jim Gifford)
454 * Added consolelog to contrib (DJ Lucas)
455 * loadproc and killproc can have the -nomsg parameter to avoid
456 calling evaluate_retval or print_status (Jim Gifford)
457 * boot_mesg no longer explicitly adds a \n onto end of lines
458 * Added a function called boot_mesg_flush, which can
459 dump the BOOTMESG to the bootlog. This helps avoid making
460 everything have to end in OK/WARN/FAIL (Nathan Coulson)
461
462n/a - September 24, 2004
463 * Removed /dev/udev.tdb test
464
465n/a - September 23, 2004
466 * Fixed boot_log so it output's $@'s contents, not @$
467 * Added support for colors in boot_mesg (James Robertson)
468 * Modified udev's error checking
469 * Modified hotplug's error checking
470 * Converted checkfs's error handling to use boot_mesg with
471 color support
472 * Added $INFO color to functions (James Robertson)
473
474n/a - September 22, 2004
475 * Removed the dependency on wl by replacing it with grep (Bryan Kadzban)
476 * Fixed getpids, to remove unused pids obtained from $PIDFILE
477 * Removed ${NORMAL} from echo "$BOOTMESG" in functions, and removed
478 space added to each additional sentence tacked onto BOOTMESG
479 * boot_mesg now handles \n's properly, and does not dimish the size of
480 the next line (James Robertson)
481 * boot_log has been added. The echo_ functions commit the log,
482 and then clear the BOOTMSG variable
483 * All scriptes have been converted to use boot_mesg
484
485n/a - September 21, 2004
486 * boot_mesg has been enhanced. Subsequent calls will overwrite
487 previous text, and it will wrap text basedupon the variable ${WCOL}.
488 (James Robertson)
489 * Fixed mtu optional service typo (Kevin P Fleming)
490 * Added SOURCE variable to ipv4-static-route (Kevin P Fleming)
491
492n/a - September 16, 2004
493 * nework interfaces are now brought down in reverse order
494
495n/a - September 15, 2004
496 * Added blue bracket, from dj's 3.0-pre1 bootscript package
497 [echo_failure, echo_warning, and echo_ok]
498 * Added a new function called boot_mesg, meant to replace the echo
499 command.
500 This will give us the posibility of doing logging at a later date
501 * Do not set COLUMNS if COLUMNS is already set
502 * Modified getpids, loadproc, killproc, reloadproc, and statusproc as
503 done by DJ
504
5052.2.3 - September 04, 2004
506 * Tagged as 2.2.3
507
508n/a - September 04, 2004
509 * Added new script to contrib for syslog-ng, which is now part of
510 LFS-Unstable, and a new Makefile target install-syslog-ng which
511 removes the sysklogd links, and replaces them with syslog-ng (JU)
512
5132.2.2 - August 11, 2004
514 * Tagged as 2.2.2
515
516n/a - August 7, 2004
517 * Added missing error redirect (/dev/null) in getpids. (DJ)
518
519n/a - August 4, 2004
520 * Added MODE, DIRMODE, and CONFMODE variables to the makefile
521 to allow permissions to be set at install. (DJ)
522
523n/a - July 31, 2004
524
525 * Moved PIDFILE check to getpids and removed arguments from
526 killproc and reloadproc. Signals are now set at begining of
527 funtcions script with KILLDELAY. (DJ)
528 * Added a optional service script which can set the MTU for a given
529 interface
530
531n/a - July 21, 2004
532
533 * Committed DJ Lucas's patch for the killproc function. It no
534 longer requires arguments if PIDFILE is set
535 * added --backup to all sysconfig configuration files, so they are not
536 replaced on a make install
537
538n/a - July 13, 2004
539
540 * Added the PEER variable to the ifconfig.*/* file, done by
541 Kevin P. Fleming
542
5432.2.1 - July 12, 2004
544
545 * Tagged as 2.2.1
546
547n/a - July 12, 2004
548
549 * Hotplug was moved from rcsysinit.d to rc{1,2,3,4,5} to help bring
550 up/down network interfaces started by hotplug. This has been revoked
551 at this time
552 * Networking interfaces are now brought down in reverse order
553 * Moved the ONBOOT check to within ifup/ifdown, so we can bring up/down
554 the interfaces at boottime/shutdown properly, done by Kevin P. Fleming
555 * Use PREFIX instead of NETMASK for adding addresses in ipv4-static,
556 done by Kevin P. Fleming
557 * Fix reversal of services inside ifconfig.* directories in ifdown,
558 done by Kevin P. Fleming
559 * Add ipv4-static-route service, supplied by Kevin P. Fleming
560
5612.2.0 - July 12, 2004
562
563 * Tagged as 2.2.0
564
565n/a - July 11, 2004
566
567 * Minor script output changes
568 * Repaired networking scripts broken in previous commits
569
570n/a - July 10, 2004
571
572 * We now use the ip program [from iproute2] instead of ipconfig
573 [net-tools] to bring up/down ethernet interfaces, and local
574 connections, submitted by Jim Gifford
575 * Removed gateway backward compatibility
576 * Removed ifup-eth0 ifdown-eth0 compatibility
577 * Removed the "assume SERVICE=static if SERVICE is unset" compatibility
578 * Pass the IFCONFIG environmental variable to services, so they can
579 locate the file with the parameters they must read
580 * Rename static to ipv4-static
581 * Stage1 for network configuration via directories, ifup and ifdown
582 modified, and the static service modified
583 * Stage2 for network configuration via directories complete, network was
584 modified to check within subdirectories for ONBOOT=yes. Final Stage
585
586n/a - July 8, 2004
587
588 * Changed iso01 to lat1 everywhere in /etc/sysconfig/console. This
589 fixes the problem with line-drawing characters.
590
591n/a - July 7, 2004
592
593 * Halted the computer, if unable to mount /dev as a ramfs
594
595n/a - July 6, 2004
596
597 * Moved the hotplug bootscript back to contrib, it will not be used in
598 the testing branch of the lfs book at this time
599
600n/a - July 4, 2004
601
602 * Modified ifup and ifdown to be hotplug aware
603
604n/a - July 3, 2004
605
606 * Change the check for ONBOOT into a source within a subshell
607
608n/a - July 1, 2004
609
610 * Moved hotplug start to runlevels 3-5 from sysinit
611
612n/a - June 30, 2004
613
614 * Pass -depth in cleanfs
615
616n/a - June 29, 2004
617
618 * Made the grep for ONBOOT in the network script more exact
619
6202.1.2 - June 27, 2004
621
622 * Install the automatic module loading script by default
623 * Tagged as 2.1.2
624
625n/a - June 26, 2004
626
627 * Fixed font for UK in /etc/sysconfig/console
628
629n/a - June 23, 2004
630
631 * Fixed a typo in the hotplug installation procedure
632
633n/a - June 21, 2004
634
635 * Re-ordered the "mount" and "echo" commands in the udev script, to
636 prevent a possible race
637 * Converted the udev script to use udevsend/udevd
638 * Moved removal of /fastboot and /forcefsck to just after the root fs
639 becomes writable, and dropped the removal of /etc/nologin
640 * Cleaned and tweaked both the output and actions of cleanfs
641 * Removed the disabling of hotplug from sendsignals
642 * Removed anything that might call "rmmod" in hotplug, since rmmod is
643 notoriously troublesome in the 2.6.x kernels, and call it with the
644 stop argument from runlevels 0 and 6
645 * Fixed previous modifications to the udev and cleanfs scripts
646
647n/a - June 20, 2004
648
649 * Rolled back to the /dev/.udev.tdb check from 2.1.1, since the new
650 one doesn't work as well, and the bug that caused it to change is
651 now fixed
652
653n/a - June 18, 2004
654
655 * Updated sysconfig/console
656 * Fixed disabling hotplug in sendsignals
657 * hotplug is now installed by default
658
659n/a - June 15, 2004
660
661 * Reset /proc/sys/kernel/hotplug to /bin/true when running the "stop"
662 command for hotplug
663 * Cleaned the output of the mountkernfs script
664 * Don't output "Creating files and directories" when it's a lie
665
666n/a - June 8, 2004
667
668 * Changed the location the optional module script is installed to
669 /etc/rc.d/rcsysinit.d/S05modules.
670
671n/a - June 4, 2004
672
673 * Added a echo to the > /proc/sys/kernel/hotplug line, as > did not
674 clear it
675
676n/a - June 3, 2004
677
678 * Added '> /proc/sys/kernel/hotplug' to sendsignals, to disable hotplug
679 events, which may start up new daemons
680 * Added elementry bootup logging support. If it can write to
681 /var/log/boot.log, it will
682 * Removed logging support, it kept / from being remounted ro
683
684n/a - June 2, 2004
685
686 * Reorganize what goes on in the udev script
687 * Reorganize what goes on in the hotplug script
688 * Moved setting /sbin/hotplug as the default hotplug manager into the
689 hotplug script
690
691n/a - June 1, 2004
692
693 * Removed usbfs from mountkernfs, and mountfs
694 * Edited the udev script, so it'll always set /proc/sys/kernel/hotplug
695
696n/a - May 24, 2004
697
698 * Added more example keymaps and font settings to /etc/sysconfig/console
699 * Install the /etc/sysconfig/console file by default
700
701n/a - May 23, 2004
702
703 * Changed the symlink for the optional modules script
704 * Removed depmod from the optional modules script
705
706n/a - May 20, 2004
707
708 * Removed the random script. There is not a strong enough case for
709 adding it to the lfs-bootscripts.
710
711n/a - May 19, 2004
712
713 * Added the random bootscript from blfs-bootscripts
714
7152.1.1 - May 18, 2004
716
717 * Fixed installation of modules configuration
718 * Tagged as 2.1.1
719
720n/a - May 16, 2004
721
722 * Added sysklogd configuration file
723 * Added example /etc/sysconfig/console file
724 * Do not attempt to populate /dev if that directory has already been
725 set up earlier in bootup (such as on initramfs/initrd)
726 * Prevent excessive kernel output once klogd starts
727 * Added hotplug script
728
729n/a - May 15, 2004
730
731 * Namespace rework (enumeration of scripts is now cleaner)
732 * Removed directories: blfs, contrib/new-boot-0.2, contrib/rlv
733
734n/a - May 13, 2004
735
736 * Repaired the console script
737 * Added a check to cleanfs [createfiles], to make sure that we have
738 a valid devicetype, if we have type=dev
739
740n/a - May 11, 2004
741
742 * Added usbfs to mountkernfs and mountfs
743
744n/a - May 6, 2004
745
746 * Don't use loadproc in localnet, it's not meant for that
747 * Quote tests of $PIDFILE, so that things behave when it's empty
748 * Removed unused kill -0 from killproc
749
7502.1.0 - May 4, 2004
751
752 * Update to the console script, prevent install of the console script
753 * Chgrp /var/run/utmp to group utmp if it exists.
754 * Moved udev from contrib to lfs
755 * Moved GATEWAY setup from /etc/rc.d/init.d/network to
756 /etc/sysconfig/network-devices/services/static
757 * Use the contents of $PIDFILE, if it is set in the script
758 * Tagged as 2.1.0.
759
760n/a - April 30, 2004
761
762 * Moved the loadkeys script to console, and added setfont. Contributed
763 by Alexander E. Patrakov
764
7652.0.5 - April 29, 2004
766
767 * Added the heimdal init script.
768 * Tagged as 2.0.5
769
7702.0.4 - April 27, 2004
771
772 * Tagged as 2.0.4
773
774n/a - April 24, 2004
775
776 * Added a example script for /etc/sysconfig/createfiles
777 * Added a check for /sys before mounting sysfs
778 * Added -t noramfs to umount on /etc/rc.d/init.d/mountfs.
779 This will prevent /dev from being unmounted, if /proc/mounts
780 is symlinked to /etc/mtab
781
782n/a - April 18, 2004
783
784 * Small fix to a if statement in netfs
785
786n/a - April 17, 2004
787
788 * Added the lisa bootscript, lisa is part of the KDE Network package
789 * Add proper error checking to the mountfs script when writing out mtab
790 * Add more comments to the udev script, and conditionalize various
791 things that should've been done this way in the first place
792 * Include a template module auto-loading configuration file instead of
793 having syntax comments in the script itself
794
795n/a - April 12, 2004
796
797 * Added a automatic modules loading script to the contrib directory
798 submitted by Zack
799 * Edited mountkernfs, so that if you can mount sysfs on /sys, it will
800 be mounted at boottime. Should not affect 2.4 systems
801 * Since all entries are added to /etc/mtab, we should not require
802 the NO_FS variable. It has been removed from mountfs
803 * Added the udev script into the contrib directory, submitted by Zack
804
8052.0.3 - April 8, 2004
806
807 * Updated cleanfs, so it can create devices. Supplied by Zack
808 * Tagged as 2.0.3
809
810n/a - March 31, 2004
811
812 * Changed "Press Enter" on unknown error to white
813 * Moved S10swap to S20swap. When udev is added, it has to be
814 ran before swap is setup
815
816n/a - March 29, 2004
817
818 * Fixed the rc5.d symlink for ntp so it creates S26ntp instead
819 of S26npt
820 * Moved S20mountkernfs to S00mountkernfs in rcsysinit.d. Will help in
821 the addition of udev in the future.
822
823n/a - March 27, 2004
824
825 * Changed gdm path from hardcoded to program name. There are 2 spots
826 gnome can be installed
827
828n/a - March 26, 2004
829
830 * Updated fam daemon script. It now uses the famd daemon instead of fam
831
832n/a - March 24, 2004
833
834 * Removed mount command out of nfs. the netfs script already handles
835 this
836
8372.0.2 - March 24, 2004
838
839 * Edited cleanfs to solve a problem. [if /tmp does not exist, it
840 could run the find command on the root filesystem]
841 * Tagged as 2.0.2
842
8432.0.1 - March 24, 2004
844
845 * Found typo in BLFS MySQL Script.
846 * Tagged as 2.0.1
847
8482.0.0 - March 23, 2004
849
850 * Tagged as 2.0.0, no changes from 2.0.0-pre2
851
8522.0.0-pre2 - March 23, 2004
853
854 * Cleaned the /tmp directory on bootup. find command supplied by Zack
855 * Added a script which can automatically create files and directories
856 on startup. [Handles files/directories, permissions, and user/group].
857 Created by Zack
858 * Added blfs/init.d/fam script
859 * Tagged as 2.0.0-pre2
860
861n/a - March 20, 2004
862
863 * Added create-service-dir target and removed from create-dirs
864 * Changed service script install targets to use
865 create-service-dir
866 * Added check for dhcpcd service script for stale pid file
867 Suggested by Jeremy
868 * Added ifconfig to ipx service script for hosting device not up
869
870n/a - March 19, 2004
871
872 * Added support for ETCDIR, and DESTDIR in the Makefile,
873 compliments of Tushar
874 * Renamed mountproc to mountkernfs
875 * Updated the README file
876 * Coloured the print_error_message in functions red
877 * added stop to the setclock script
878 * changed echo > to > in cleanfs, suggested by winkie
879 * BLFS Scripts Added, collected by Zack
880 * Edited killproc, so it checks for running pids, rather then
881 the completion of the above kill command. Suggested by Zack
882 * Added network services found in blfs, removed adsl. Submitted by
883 DJ.
884
8851.99.4 - March 17, 2004
886
887 * Fixed one last halt line in checkfs script
888 * Moved the directory structure around
889 * Tagged as development release 1.99.4
890
891n/a - February 28, 2004
892
893 * Added stty sane to the top of rc.d/init.d/rc. Hopefully, this will
894 fix the problems
895 * Also changed all instances of <ctrl-j> back to enter
896
8971.99.3 - February 23, 2004
898
899 * Tagged as development release 1.99.3
900
901n/a - February 19, 2004
902
903 * Fixed checkfs script, so it will no longer continue to boot after a
904 failure in the init.d/checkfs script. Tested with the help of Andre
905 Müller. Fix suggested by Zack
906
907n/a - February 7, 2004
908
909 * Added -s onto grep on network stop
910 * Replaced a few more enter's with ctrl-j
911
9121.99.2 - February 6, 2004
913
914 * Added -s onto grep in network start
915 * Tagged as development release 1.99.2
916
917n/a - February 4, 2004
918
919 * Fixed $WARNING $NORMAL and $ERROR lines, broken by changes in
920 functions
921 * Changed above fixes to work with ash
922 * Fixed checkfs symlink in Makefile
923 * functions is no longer installed as executable
924 * Added a check to checkfs, for errors above 16. These are caused by
925 being unable to run fsck, either due to user input, or a unfunctional
926 linux system
927
9281.99.1 - February 2, 2004
929
930 * Tagged as development release 1.99.1
931
932n/a - February 2, 2004:
933
934 * Added -d to umount in mountfs.
935 * Fixed network shutdown script
936 * Fixed Makefile rc.6 to reboot
937 * Added -s flag to grep command in rc.d/init.d/network -
938 suppresses an error if no ifconfig.* files exist
939
940n/a - January 30, 2004:
941
942 * Reorganized the network system to accept multiple services.
943 * Ash Compliancy
944 * Modified some scripts to follow template
945 * Reorganized functions, based upon Ash Compliancy Patch
946 * Added a sleep 5 to failure for evaulate_retval, and changed
947 evaulate_retval to return true instead of false. Instead, a
948 exit 1 will indicate the script terminated abnormally, causing
949 your system to wait until you hit ctrl-J
950 * Switched "Press enter to continue" to "Press <ctrl-j> to continue"
951 * replaced 3 with $KILLDELAY in sendsignals
952 * mountfs does not mount network filesystems [identified by _netdev
953 in /etc/fstab]
954 * removed unneded touch out of cleanfs
955
956n/a - January 30, 2004:
957
958 * New maintainers for the lfs-bootscripts package are:
959 Jeremy Utley (jeremy@linuxfromscratch.org)
960 Nathan Coulson (nathan@linuxfromscratch.org)
961
9621.11 - February 3rd, 2003:
963
964 * /etc/mtab is now a real file and is handled correctly so there are
965 no errors even when the machine has crashed.
966
9671.10 - September 12th, 2002:
968
969 * Fixed up checkfs to work with non-ext2 filesystems too (such as
970 minix).
971
9721.9 - April 5th, 2002:
973
974 * reloadproc function had a missing '=' in the "failure 1" command (it
975 should be failure=1)
976
977 * When script exists with unexpected value, you have to hit "Enter" to
978 continue, not just a random key as printed on the screen.
979
980 * Moved K10sysklogd, K20sendsignals, K30mount and K40swap to
981 K40sysklogd, K50sendsignals, K60mount, K70swap
982
983 * Changed the #!/bin/sh lines to #!/bin/bash - /bin/sh may not be
984 linked to bash but to some other shell of your choice. These scripts
985 are written to work with bash, so you can't just run them when
986 /bin/sh -> csh or ash or whatever else tickles your fancy. This
987 change should fix that.
988
9891.8 - March 14th, 2002:
990
991 * Fixed the getpids function call so PPID's would be taken into account
992 properly.
993
994 * Added the 'contrib' directory with other people's bootscript
995 implementations.
996
9971.7 - March 10th, 2002:
998
999 * Used code from Matthias Benkmann's simpleinit-msb @
1000 http://winterdrache.de/linux/newboot/index.html mainly for improved
1001 killproc function handling
1002
1003 * When a requested process isn't running, or is already running, a
1004 warning "Not running" or "Already running" will be displayed. This
1005 was out of allignment due to a missing $CURS_UP
1006
1007 * Removed "||exit" from ifup and ifdown scripts. They are useless.
1008
1009 * Changed the loadkeys script to run "loadkeys -d" and removed the need
1010 for the /etc/sysconfig/keyboard file. The kbd patch fixes the
1011 "loadkeys -d" behaviour.
1012
10131.6 - February 26th, 2002:
1014
1015 * replaced -o %PPID with -o $PPID throughout the functions script. This
1016 construct does what it's supposed to do (don't take PPID into account
1017 because this would fail if a running daemon and the bootscript have
1018 the same name).
1019
1020 * added 'restart' to the swap script
1021
1022 * instead of using 'echo -n' to supress newlines so the [ OK ] and
1023 related messages allign properly, substitute this with a single echo
1024 command that simply goes one line up before outputting anything. This
1025 also has the benefit that when programs have their own output (like
1026 swapon, fsck and loadkeys), there won't be an unwanted blank line
1027 between the program's output and the [ OK ] et all. messages.
1028
10291.5 - February 2nd, 2002:
1030
1031 * added 'exit 1' to the statusproc function when there aren't enough
1032 parameters passed to it (such as the name of process to check for)
1033
10341.4 - February 2nd, 2002:
1035
1036 * when /fastboot is detected and the message about it is printed,
1037 don't run 'exit 1' else the rc script will cause a [FAILED] to
1038 be printed which is undesired in this case.
1039
10401.3 - January 30th, 2002:
1041 * network script: changed default route detection by using the same
1042 method as used when starting the script: check if the GATEWAY
1043 variable is set
1044
1045 * removed the emptying of /etc/mtab since it's a symlink to
1046 /proc/mounts now
1047
1048 * added the mountproc script which mounts the proc system. This is done
1049 because we need proc mounted even before the mountfs script is ran
1050 (now that /etc/mtab is a symlink to /proc/mounts)
1051
1052 * removed all absolute paths from command calls
1053
1054 * added umask 022 and PATH="/bin:/usr/bin:/sbin:/usr/sbin" to the
1055 functions script. Every file now sources this so that umask and PATH
1056 are set correctly
1057
10581.2 - January 26th, 2002:
1059 * network script: detect if a default route is set before removing it
1060
Note: See TracBrowser for help on using the repository browser.