diff options
author | maximilian attems <maks@debian.org> | 2006-08-17 17:14:01 +0200 |
---|---|---|
committer | maximilian attems <maks@debian.org> | 2006-08-17 17:14:01 +0200 |
commit | 839572386f35bf4b4404dac5f976566bc155de94 (patch) | |
tree | 3d4c49ba90c9070d8652b579b5039d4d67876c50 /scripts/functions | |
parent | a84613ae7742190e50cc619eee462cc0cd17f6c8 (diff) | |
download | initramfs-tools-839572386f35bf4b4404dac5f976566bc155de94.tar.gz initramfs-tools-839572386f35bf4b4404dac5f976566bc155de94.zip |
Release 0.74:
- scripts/functions: fix debug boot param
- update-initramfs: checkout /etc/kernel-img.conf if lilo and grub is installed
- rename mdraid to mdrun, readd mdrun as it seems to work much better
with sarge systems
- add an help message for rescue shell
- better package desc
Diffstat (limited to 'scripts/functions')
-rw-r--r-- | scripts/functions | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/scripts/functions b/scripts/functions index 9e578d7..e9d7a07 100644 --- a/scripts/functions +++ b/scripts/functions @@ -117,7 +117,7 @@ get_prereqs() count_unsatisfied() { - set - ${@} + set -- ${@} return ${#} } @@ -126,7 +126,7 @@ pop_list_item() { item=${1} shift - set - ${@} + set -- ${@} unset tmppop # Iterate for pop in ${@}; do @@ -143,7 +143,7 @@ reduce_prereqs() { unset runlist set_initlist - set - ${initlist} + set -- ${initlist} i=$# # Loop until there's no more in the queue to loop through while [ ${i} -ne 0 ]; do |