ChangeLog 41 KB

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