DMAENGINE: COH 901 318 configure channel direction
[safe/jmp/linux-2.6] / init / do_mounts_rd.c
index dcaeb1f..027a402 100644 (file)
@@ -9,12 +9,10 @@
 #include <linux/string.h>
 
 #include "do_mounts.h"
+#include "../fs/squashfs/squashfs_fs.h"
 
 #include <linux/decompress/generic.h>
 
-#include <linux/decompress/bunzip2.h>
-#include <linux/decompress/unlzma.h>
-#include <linux/decompress/inflate.h>
 
 int __initdata rd_prompt = 1;/* 1 = prompt for RAM disk, 0 = don't prompt */
 
@@ -43,13 +41,14 @@ static int __init crd_load(int in_fd, int out_fd, decompress_fn deco);
  * numbers could not be found.
  *
  * We currently check for the following magic numbers:
- *     minix
- *     ext2
+ *     minix
+ *     ext2
  *     romfs
  *     cramfs
- *     gzip
+ *     squashfs
+ *     gzip
  */
-static int __init 
+static int __init
 identify_ramdisk_image(int fd, int start_block, decompress_fn *decompressor)
 {
        const int size = 512;
@@ -57,8 +56,10 @@ identify_ramdisk_image(int fd, int start_block, decompress_fn *decompressor)
        struct ext2_super_block *ext2sb;
        struct romfs_super_block *romfsb;
        struct cramfs_super *cramfsb;
+       struct squashfs_super_block *squashfsb;
        int nblocks = -1;
        unsigned char *buf;
+       const char *compress_name;
 
        buf = kmalloc(size, GFP_KERNEL);
        if (!buf)
@@ -68,55 +69,26 @@ identify_ramdisk_image(int fd, int start_block, decompress_fn *decompressor)
        ext2sb = (struct ext2_super_block *) buf;
        romfsb = (struct romfs_super_block *) buf;
        cramfsb = (struct cramfs_super *) buf;
+       squashfsb = (struct squashfs_super_block *) buf;
        memset(buf, 0xe5, size);
 
        /*
-        * Read block 0 to test for gzipped kernel
+        * Read block 0 to test for compressed kernel
         */
        sys_lseek(fd, start_block * BLOCK_SIZE, 0);
        sys_read(fd, buf, size);
 
-#ifdef CONFIG_RD_GZIP
-       /*
-        * If it matches the gzip magic numbers, return 0
-        */
-       if (buf[0] == 037 && ((buf[1] == 0213) || (buf[1] == 0236))) {
-               printk(KERN_NOTICE
-                      "RAMDISK: Compressed image found at block %d\n",
-                      start_block);
-               *decompressor = gunzip;
-               nblocks = 0;
-               goto done;
-       }
-#endif
-
-#ifdef CONFIG_RD_BZIP2
-       /*
-        * If it matches the bzip2 magic numbers, return -1
-        */
-       if (buf[0] == 0x42 && (buf[1] == 0x5a)) {
-               printk(KERN_NOTICE
-                      "RAMDISK: Bzipped image found at block %d\n",
-                      start_block);
-               *decompressor = bunzip2;
-               nblocks = 0;
-               goto done;
-       }
-#endif
-
-#ifdef CONFIG_RD_LZMA
-       /*
-        * If it matches the lzma magic numbers, return -1
-        */
-       if (buf[0] == 0x5d && (buf[1] == 0x00)) {
-               printk(KERN_NOTICE
-                      "RAMDISK: Lzma image found at block %d\n",
-                      start_block);
-               *decompressor = unlzma;
+       *decompressor = decompress_method(buf, size, &compress_name);
+       if (compress_name) {
+               printk(KERN_NOTICE "RAMDISK: %s image found at block %d\n",
+                      compress_name, start_block);
+               if (!*decompressor)
+                       printk(KERN_EMERG
+                              "RAMDISK: %s decompressor not configured!\n",
+                              compress_name);
                nblocks = 0;
                goto done;
        }
-#endif
 
        /* romfs is at block zero too */
        if (romfsb->word0 == ROMSB_WORD0 &&
@@ -136,6 +108,16 @@ identify_ramdisk_image(int fd, int start_block, decompress_fn *decompressor)
                goto done;
        }
 
+       /* squashfs is at block zero too */
+       if (le32_to_cpu(squashfsb->s_magic) == SQUASHFS_MAGIC) {
+               printk(KERN_NOTICE
+                      "RAMDISK: squashfs filesystem found at block %d\n",
+                      start_block);
+               nblocks = (le64_to_cpu(squashfsb->bytes_used) + BLOCK_SIZE - 1)
+                        >> BLOCK_SIZE_BITS;
+               goto done;
+       }
+
        /*
         * Read block 1 to test for minix and ext2 superblock
         */
@@ -165,7 +147,7 @@ identify_ramdisk_image(int fd, int start_block, decompress_fn *decompressor)
        printk(KERN_NOTICE
               "RAMDISK: Couldn't find valid RAM disk image starting at %d.\n",
               start_block);
-       
+
 done:
        sys_lseek(fd, start_block * BLOCK_SIZE, 0);
        kfree(buf);
@@ -224,7 +206,7 @@ int __init rd_load_image(char *from)
                       nblocks, rd_blocks);
                goto done;
        }
-               
+
        /*
         * OK, time to copy in the data
         */