diff options
author | Paul Sokolovsky <pmiscml@gmail.com> | 2007-06-30 01:01:24 +0000 |
---|---|---|
committer | Paul Sokolovsky <pmiscml@gmail.com> | 2007-06-30 01:01:24 +0000 |
commit | 59ccb6c5a398e38530a3b84f0f82f82c5c77c1b6 (patch) | |
tree | 32659f34317a68bb27753fd1ea38a79830fd78ac /packages/udev/files | |
parent | eb71ae6bd2cecdcd19127066387676a56331b32d (diff) |
udev: Stop booting semi-configured system in case of random miniscule errors.
* It makes *completely* no sense to just fail the udev script on first error
and continue boot further. Either it should try to ignore them, or halt system
boot. Otherwise, system in weird, semi-working state will emerge, without anu
notices of such state.
* This script for example fails on mount --bind and mount --move, which busybox
1.2.1 doesn't appear to handle correctly.
Diffstat (limited to 'packages/udev/files')
-rwxr-xr-x | packages/udev/files/init | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/packages/udev/files/init b/packages/udev/files/init index 456a7c070d..a13b9afcd5 100755 --- a/packages/udev/files/init +++ b/packages/udev/files/init @@ -1,4 +1,4 @@ -#!/bin/sh -e +#!/bin/sh UDEVSTART=/sbin/udevstart |