Gitweb: http://git.kernel.org/?p=linux/kernel/git/davej/dracut.git;a=commit;h=5a862b968a525b8d6fb3ac643daf0f9caa3ab186 Commit: 5a862b968a525b8d6fb3ac643daf0f9caa3ab186 Parent: b2b11f55796902d18e4840410837f5d7eaa6adf4 Author: Victor Lowther <victor.lowther@xxxxxxxxx> AuthorDate: Fri Feb 13 04:42:11 2009 -0800 Committer: Dave Jones <davej@xxxxxxxxxx> CommitDate: Mon Feb 16 13:56:41 2009 -0500 [PATCH 17/50] Tighten up the font installation case statement as well. --- dracut | 8 ++------ 1 files changed, 2 insertions(+), 6 deletions(-) diff --git a/dracut b/dracut index a19f910..ae53caf 100755 --- a/dracut +++ b/dracut @@ -97,12 +97,8 @@ if [ -f /etc/sysconfig/i18n ]; then for FN in /lib/kbd/consolefonts/$SYSFONT.* ; do inst "$FN" "$initdir" case $FN in - *.gz) - gzip -d "$initdir$FN" - ;; - *.bz2) - bzip2 -d "$initdir$FN" - ;; + *.gz) gzip -d "$initdir$FN" ;; + *.bz2) bzip2 -d "$initdir$FN" ;; esac done [[ $SYSFONTACM ]] && inst /lib/kbd/consoletrans/$SYSFONTACM "$initdir" -- To unsubscribe from this list: send the line "unsubscribe initramfs" in the body of a message to majordomo@xxxxxxxxxxxxxxx More majordomo info at http://vger.kernel.org/majordomo-info.html