]> git.ipfire.org Git - thirdparty/grub.git/commitdiff
2009-10-25 Robert Millan <rmh.grub@aybabtu.com>
authorrobertmh <robertmh@localhost>
Sat, 24 Oct 2009 23:31:05 +0000 (23:31 +0000)
committerrobertmh <robertmh@localhost>
Sat, 24 Oct 2009 23:31:05 +0000 (23:31 +0000)
        * fs/cpio.c [MODE_USTAR]: Initialize `tar' module instead of
        `cpio'.
        [! MODE_USTAR]: Initialize `cpio' module instead of `tar'.

ChangeLog
fs/cpio.c

index ce28aed16df2fdc56b94a9aa0bd0dfaa734bf362..380dacffd92fe279d72762df42109efcbc2fc372 100644 (file)
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,9 @@
+2009-10-25  Robert Millan  <rmh.grub@aybabtu.com>
+
+       * fs/cpio.c [MODE_USTAR]: Initialize `tar' module instead of
+       `cpio'.
+       [! MODE_USTAR]: Initialize `cpio' module instead of `tar'.
+
 2009-10-25  Robert Millan  <rmh.grub@aybabtu.com>
 
        * configure.ac: Check for `__ashldi3', `__ashrdi3', `__lshrdi3',
index 7c6ada9b3d8259b67634de53a0902ed28980861f..3f3a3d1a0e6557620d065b8a484b7edb801db6b7 100644 (file)
--- a/fs/cpio.c
+++ b/fs/cpio.c
@@ -352,9 +352,9 @@ static struct grub_fs grub_cpio_fs = {
 };
 
 #ifdef MODE_USTAR
-GRUB_MOD_INIT (cpio)
-#else
 GRUB_MOD_INIT (tar)
+#else
+GRUB_MOD_INIT (cpio)
 #endif
 {
   grub_fs_register (&grub_cpio_fs);