summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorRichard W.M. Jones <rjones@redhat.com>2011-08-12 23:25:17 +0100
committerRichard W.M. Jones <rjones@redhat.com>2011-08-12 23:25:17 +0100
commitbe05615938991f9ec9c0615a944fcbff60055f8f (patch)
tree6da37515aab1f176e0cb7c8f461deb2a823a4e8b
parent0d57e883e1fc6a0ca7bf435ddbe0b0f9b4380295 (diff)
downloadfebootstrap-be05615938991f9ec9c0615a944fcbff60055f8f.tar.gz
febootstrap-be05615938991f9ec9c0615a944fcbff60055f8f.tar.xz
febootstrap-be05615938991f9ec9c0615a944fcbff60055f8f.zip
Include ext4 module in the initrd.
Modern kernels allow you to use the ext4.ko module to support ext2 and ext3 access. On Fedora, this is the default (albeit not as a module, so this code path would not be tested yet).
-rw-r--r--helper/ext2initrd.c3
1 files changed, 2 insertions, 1 deletions
diff --git a/helper/ext2initrd.c b/helper/ext2initrd.c
index da4bf48..c4fc353 100644
--- a/helper/ext2initrd.c
+++ b/helper/ext2initrd.c
@@ -1,5 +1,5 @@
/* febootstrap-supermin-helper reimplementation in C.
- * Copyright (C) 2009-2010 Red Hat Inc.
+ * Copyright (C) 2009-2011 Red Hat Inc.
*
* This program is free software; you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by
@@ -53,6 +53,7 @@ extern char _binary_init_start, _binary_init_end, _binary_init_size;
*/
static const char *kmods[] = {
"ext2.ko",
+ "ext4.ko", /* CONFIG_EXT4_USE_FOR_EXT23=y option might be set */
"virtio*.ko",
"ide*.ko",
"libata*.ko",