summaryrefslogtreecommitdiffstats
path: root/install
diff options
context:
space:
mode:
authorTobias Powalowski <tpowa@archlinux.org>2006-07-24 11:30:37 +0200
committerTobias Powalowski <tpowa@archlinux.org>2006-07-24 11:30:37 +0200
commitad49fb33613185114bf324caf76dcb833aca6c32 (patch)
treef34e98f560f6bca94aea11ace82347b6d0565fe9 /install
parenta72bbda4bb56648a513ac17a868cfc2f3f8e3f91 (diff)
downloadmkinitcpio-ad49fb33613185114bf324caf76dcb833aca6c32.tar.gz
mkinitcpio-ad49fb33613185114bf324caf76dcb833aca6c32.tar.xz
'added new tarball + fixed nls_cp437 module for vfat module'
git-svn-id: http://projects.archlinux.org/svn/initramfs/mkinitcpio@133 880c04e9-e011-0410-abf7-b926e227c9cd
Diffstat (limited to 'install')
-rw-r--r--install/autodetect2
-rw-r--r--install/filesystems2
2 files changed, 2 insertions, 2 deletions
diff --git a/install/autodetect b/install/autodetect
index ec7e624..8bcae91 100644
--- a/install/autodetect
+++ b/install/autodetect
@@ -29,7 +29,7 @@ install ()
*cramfs*) echo "zlib_inflate" >> "${MODULE_FILE}" ;;
*isofs*) echo "zlib_inflate" >> "${MODULE_FILE}" ;;
*msdos*) echo "fat" >> "${MODULE_FILE}" ;;
- *vfat*)echo "fat" >> "${MODULE_FILE}" ;;
+ *vfat*)echo -e "fat\nnls_cp437" >> "${MODULE_FILE}" ;;
*ocfs2*) echo -e "ocfs2_dlm\njbd\nocfs2_nodemanager\nconfigfs" >> "${MODULE_FILE}" ;;
esac
echo "${modname}" >> "${MODULE_FILE}"
diff --git a/install/filesystems b/install/filesystems
index c9528a7..67ab1a2 100644
--- a/install/filesystems
+++ b/install/filesystems
@@ -2,7 +2,7 @@
install ()
{
- MODULES=" $(checked_modules '/kernel/fs' | grep -v "nls") "
+ MODULES=" $(checked_modules '/kernel/fs' | grep -v "nls") $(checked_modules '/kernel/fs/nls/nls_cp437')"
BINARIES=""
FILES=""
SCRIPT="filesystems"