From 6f75055dd7a80e9a035eb159e36a15e1b19b021a Mon Sep 17 00:00:00 2001 From: Stefan Fiedler Date: Sun, 23 Nov 2008 13:11:03 +0000 Subject: [PATCH] Stefan Fiedler: e2fsprogs: create file systems with 128 byte-sized inodes in stone since grub does not find files on file systems created with the new default value 256. [2008100413450611600] (https://www.rocklinux.net/submaster) git-svn-id: http://www.rocklinux.org/svn/rock-linux/trunk@9382 c5f82cb5-29bc-0310-9cd0-bff59a50e3bc --- .../stone_mod_install_filesystems_e2fsprogs.sh | 12 ++++++++++-- 1 file changed, 10 insertions(+), 2 deletions(-) diff --git a/package/base/e2fsprogs/stone_mod_install_filesystems_e2fsprogs.sh b/package/base/e2fsprogs/stone_mod_install_filesystems_e2fsprogs.sh index 50ee1c8d6..9778ab220 100644 --- a/package/base/e2fsprogs/stone_mod_install_filesystems_e2fsprogs.sh +++ b/package/base/e2fsprogs/stone_mod_install_filesystems_e2fsprogs.sh @@ -23,5 +23,13 @@ # # [INSTALLER] 10 mdadm ROCK Linux Operation System Installer V2 - e2fsprogs partitioning module -MKFS_PROGRAMS="${MKFS_PROGRAMS} 'Create an Ext2 Filesystem' 'mkfs.ext2 PART' - 'Create an Ext3 Filesystem' 'mkfs.ext3 PART'" +# Use an inode size of 128 bytes (-I 128) for now since grub does not find files on +# file systems created with the new default value 256. Instead grub would print +# an error when installing the bootloader: +# Checking if "/boot/grub/stage1" exists... no +# Checking if "/grub/stage1" exists... no +# +# Error 15: File not found + +MKFS_PROGRAMS="${MKFS_PROGRAMS} 'Create an Ext2 Filesystem' 'mkfs.ext2 -I 128 PART' + 'Create an Ext3 Filesystem' 'mkfs.ext3 -I 128 PART'"