source: bootscripts/ChangeLog@ 42d8d33c

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 42d8d33c was 42d8d33c, checked in by Bryan Kadzban <bryan@…>, 15 years ago

Use "udevadm trigger --type=failed" instead of "--retry-failed", since the latter is gone as of udev-146. The former works in earlier versions as well, at least as far back as -143 (which includes the current book version).

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

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