source: bootscripts/ChangeLog@ f78845c

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.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 f78845c was f78845c, checked in by Matthew Burgess <matthew@…>, 14 years ago

Check that /dev isn't already mounted in the udev bootscript. Fixes #2550.

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

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