source: bootscripts/ChangeLog@ 1c48007

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

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

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

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