- Jan 24, 2010
-
-
Thomas Bächler authored
-
Thomas Bächler authored
-
Thomas Bächler authored
-
Thomas Bächler authored
Use modprobe --resolve-alias for resolving aliases in autodetect as Arch's udev 150-1 removes resolve-modalias
-
- Jan 12, 2010
-
-
Thomas Bächler authored
-
- Jan 11, 2010
-
-
Thomas Bächler authored
-
Thomas Bächler authored
The comment said it was appending a trailing /, but it was actually removed Recent fixes adjusted the code to do what the comment says, which is wrong here. This fixes the code and the comment.
-
- Jan 09, 2010
-
-
Thomas Bächler authored
-
- Jan 05, 2010
-
-
Thomas Bächler authored
Revert 1558dfbf and 984cbd4e and depend on bash There was no proper upgrade path for these changes. This can be reconsidered once a clean upgrade path is provided. Compatibility with non-bash shells is not as important as backwards-compatibility of existing configurations.
-
- Dec 13, 2009
-
-
Tobias Powalowski authored
-
Tobias Powalowski authored
-
- Dec 05, 2009
-
-
Tobias Powalowski authored
-
- Nov 27, 2009
-
-
Tobias Powalowski authored
-
- Nov 02, 2009
-
-
Tobias Powalowski authored
-
- Oct 08, 2009
-
-
Thomas Bächler authored
-
- Sep 30, 2009
-
-
Thomas Bächler authored
rootdelay check: Fix compatibility with other sh implementations than dash and make it more reliable The old implementation failed on bash and failed on both if rootdelay was not a number. The logic is now as follows: If "$rootdelay"="", then [ -z "${rootdelay}" ] is true If not, then the part after the || is executed - if ${rootdelay} is not a number, or is <0, then [ ${rootdelay} -ge 0 ] fails, and the test will return true due to the !. The previous implementation failed here, because [ ! ${rootdelay} -ge 0 ] returns false on error, while ! [ ${rootdelay} -ge 0 ] returns true on error.
-
- Sep 18, 2009
-
-
louipc louipc authored
Signed-off-by: Loui Chang <louipc.ist@gmail.com>
-
louipc louipc authored
This also removes occurances of FIXME in the page. Signed-off-by: Loui Chang <louipc.ist@gmail.com>
-
- Sep 04, 2009
-
-
louipc louipc authored
Signed-off-by: Loui Chang <louipc.ist@gmail.com> Signed-off-by: Aaron Griffin <aaronmgriffin@gmail.com>
-
- Sep 01, 2009
-
-
louipc louipc authored
PRESETS should be defined as a string in all mkinitcpio preset files for compatibility with dash. Signed-off-by: Loui Chang <louipc.ist@gmail.com> Signed-off-by: Aaron Griffin <aaronmgriffin@gmail.com>
-
louipc louipc authored
Signed-off-by: Loui Chang <louipc.ist@gmail.com> Signed-off-by: Aaron Griffin <aaronmgriffin@gmail.com>
-
louipc louipc authored
Signed-off-by: Loui Chang <louipc.ist@gmail.com> Signed-off-by: Aaron Griffin <aaronmgriffin@gmail.com>
-
louipc louipc authored
Signed-off-by: Loui Chang <louipc.ist@gmail.com> Signed-off-by: Aaron Griffin <aaronmgriffin@gmail.com>
-
- Aug 05, 2009
-
-
louipc louipc authored
Signed-off-by: Loui Chang <louipc.ist@gmail.com> Signed-off-by: Aaron Griffin <aaronmgriffin@gmail.com>
-
louipc louipc authored
Signed-off-by: Loui Chang <louipc.ist@gmail.com> Signed-off-by: Aaron Griffin <aaronmgriffin@gmail.com>
-
louipc louipc authored
Signed-off-by: Loui Chang <louipc.ist@gmail.com> Signed-off-by: Aaron Griffin <aaronmgriffin@gmail.com>
-
louipc louipc authored
See `man dash` Signed-off-by: Loui Chang <louipc.ist@gmail.com> Signed-off-by: Aaron Griffin <aaronmgriffin@gmail.com>
-
louipc louipc authored
Signed-off-by: Loui Chang <louipc.ist@gmail.com> Signed-off-by: Aaron Griffin <aaronmgriffin@gmail.com>
-
louipc louipc authored
$UID isn't set by default in dash. Signed-off-by: Loui Chang <louipc.ist@gmail.com> Signed-off-by: Aaron Griffin <aaronmgriffin@gmail.com>
-
- Jul 19, 2009
-
-
Thomas Bächler authored
-
- Jun 07, 2009
-
-
Thomas Bächler authored
-
Thomas Bächler authored
-
Thomas Bächler authored
-
Thomas Bächler authored
-
- Jun 06, 2009
-
-
Thomas Bächler authored
If we have a symlink, we don't check further if it points to a block device, partially due to klibc's readlink being broken.
-
Thomas Bächler authored
-
Thomas Bächler authored
-
Thomas Bächler authored
-
Thomas Bächler authored
- Set rootdelay to 10 by default - Skip the whole detection stage if we use root on nfs - Use the new poll_device function to wait for at most $rootdelay seconds - Always pass rootdelay=0 to kinit, as we ensure the existence of the root device - Don't reboot after the fallback. This allows a user to fix a problem and continue booting - Rely on kinit to detect the root filesystem type. The rootfstype= option can still be used to override Our old method would have failed as well, as the code for filesystem detection is the same
-
Thomas Bächler authored
-