diff options
author | maximilian attems <maks@debian.org> | 2007-05-27 00:32:10 +0200 |
---|---|---|
committer | maximilian attems <maks@debian.org> | 2007-05-27 00:32:10 +0200 |
commit | 0df638ec51ee9a8362f3c81ceb9070d8e2820381 (patch) | |
tree | 18d787793d4abc7bb38e5d03601a002069660d1f | |
parent | 525008f4da3ddc32c83329dbb6322ae1660b8fc8 (diff) | |
download | initramfs-tools-0df638ec51ee9a8362f3c81ceb9070d8e2820381.tar.gz initramfs-tools-0df638ec51ee9a8362f3c81ceb9070d8e2820381.zip |
scripts/init-premount/ps3: typo fix
-rw-r--r-- | debian/changelog | 3 | ||||
-rwxr-xr-x | scripts/init-premount/ps3 | 2 |
2 files changed, 3 insertions, 2 deletions
diff --git a/debian/changelog b/debian/changelog index 042cf8d..86ba300 100644 --- a/debian/changelog +++ b/debian/changelog @@ -7,6 +7,7 @@ initramfs-tools (0.88) UNRELEASED; urgency=low * mkinitramfs.8: Add examples section, plus improve description of the low-level tool and how it fits with update-initramfs. * init: Ignore non-numerical panic and rootdelay bootarg. + * scripts/init-premount/ps3: Fix typo. (closes: #423469) [ David Härdeman ] * init: Remove cryptopts parsing, not official bootparam. cryptsetup scripts @@ -23,7 +24,7 @@ initramfs-tools (0.88) UNRELEASED; urgency=low used. Patch by Scott James Remnant <scott@ubuntu.com>. Changed to support both fstype and vol_id. - -- maximilian attems <maks@debian.org> Sun, 27 May 2007 00:26:17 +0200 + -- maximilian attems <maks@debian.org> Sun, 27 May 2007 00:31:13 +0200 initramfs-tools (0.87b) unstable; urgency=low diff --git a/scripts/init-premount/ps3 b/scripts/init-premount/ps3 index d4b1609..8f8ce1c 100755 --- a/scripts/init-premount/ps3 +++ b/scripts/init-premount/ps3 @@ -18,7 +18,7 @@ esac case "$DPKG_ARCH" in powerpc|ppc64) while read line; do - if [ "${line}" =! "${line#machine*PS3PF}" ]; then + if [ "${line}" != "${line#machine*PS3PF}" ]; then # For PS3's we know these devices will exist, # and that we'll need them modprobe ps3_storage |