summaryrefslogtreecommitdiffstats
path: root/loader
diff options
context:
space:
mode:
authorEric Sandeen <sandeen@redhat.com>2009-01-12 15:19:12 -0600
committerJeremy Katz <katzj@redhat.com>2009-01-19 13:38:06 -0500
commit198bf1b216f78bb2bdc09c5622aa9ab7f076ddc8 (patch)
treea87c67c6f987135b9901b6f092e649b399675f86 /loader
parentd6c57672439d9393d06dfb20870fd6429d749d95 (diff)
downloadanaconda-198bf1b216f78bb2bdc09c5622aa9ab7f076ddc8.tar.gz
anaconda-198bf1b216f78bb2bdc09c5622aa9ab7f076ddc8.tar.xz
anaconda-198bf1b216f78bb2bdc09c5622aa9ab7f076ddc8.zip
btrfs install support
Now that btrfs is in mainline, let's let anaconda play with it too ;) We still need btrfs.ko in the kernel, and btrfs support in e2fsprogs. I've got the latter patch submitted upstream, and it's in rawhide now. Note that the below is 100% totally untested and may even have typos, my track record with python is not too good, sorry. :) So review would be appreciated.... Updated to address Radek's review, as well as adding the requisite witty (commandline-space-eating) boot option... (And stopped trying to use parted fs identification -- katzj) Signed-off-by: Eric Sandeen <sandeen@redhat.com>
Diffstat (limited to 'loader')
-rw-r--r--loader/loader.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/loader/loader.c b/loader/loader.c
index 4a2c2e6c3..10ac30756 100644
--- a/loader/loader.c
+++ b/loader/loader.c
@@ -2044,7 +2044,7 @@ int main(int argc, char ** argv) {
stop_fw_loader(&loaderData);
start_fw_loader(&loaderData);
- mlLoadModuleSet("raid0:raid1:raid5:raid6:raid456:raid10:linear:fat:msdos:gfs2:reiserfs:jfs:xfs:dm-mod:dm-zero:dm-mirror:dm-snapshot:dm-multipath:dm-round-robin:dm-crypt:cbc:sha256:lrw:xts");
+ mlLoadModuleSet("raid0:raid1:raid5:raid6:raid456:raid10:linear:fat:msdos:gfs2:reiserfs:jfs:xfs:btrfs:dm-mod:dm-zero:dm-mirror:dm-snapshot:dm-multipath:dm-round-robin:dm-crypt:cbc:sha256:lrw:xts");
if (!access("/mnt/runtime/usr/lib/libunicode-lite.so.1", R_OK))
setenv("LD_PRELOAD", "/mnt/runtime/usr/lib/libunicode-lite.so.1", 1);