blob: d3c56fcb30b8d92f59d851a9902894030e00a186 [file] [log] [blame]
Linus Torvalds1da177e2005-04-16 15:20:36 -07001#include <linux/init.h>
2#include <linux/fs.h>
3#include <linux/slab.h>
4#include <linux/types.h>
5#include <linux/fcntl.h>
6#include <linux/delay.h>
7#include <linux/string.h>
Li, Shaohuadf520922008-08-13 17:26:01 +08008#include <linux/dirent.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -07009#include <linux/syscalls.h>
Nye Liu889d51a2008-10-15 22:01:40 -070010#include <linux/utime.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070011
12static __initdata char *message;
13static void __init error(char *x)
14{
15 if (!message)
16 message = x;
17}
18
Linus Torvalds1da177e2005-04-16 15:20:36 -070019/* link hash */
20
Mark Huang6a050da2006-05-15 09:44:03 -070021#define N_ALIGN(len) ((((len) + 1) & ~3) + 2)
22
Linus Torvalds1da177e2005-04-16 15:20:36 -070023static __initdata struct hash {
24 int ino, minor, major;
H. Peter Anvin2139a7f2006-06-26 00:28:02 -070025 mode_t mode;
Linus Torvalds1da177e2005-04-16 15:20:36 -070026 struct hash *next;
Mark Huang6a050da2006-05-15 09:44:03 -070027 char name[N_ALIGN(PATH_MAX)];
Linus Torvalds1da177e2005-04-16 15:20:36 -070028} *head[32];
29
30static inline int hash(int major, int minor, int ino)
31{
32 unsigned long tmp = ino + minor + (major << 3);
33 tmp += tmp >> 5;
34 return tmp & 31;
35}
36
H. Peter Anvin2139a7f2006-06-26 00:28:02 -070037static char __init *find_link(int major, int minor, int ino,
38 mode_t mode, char *name)
Linus Torvalds1da177e2005-04-16 15:20:36 -070039{
40 struct hash **p, *q;
41 for (p = head + hash(major, minor, ino); *p; p = &(*p)->next) {
42 if ((*p)->ino != ino)
43 continue;
44 if ((*p)->minor != minor)
45 continue;
46 if ((*p)->major != major)
47 continue;
H. Peter Anvin2139a7f2006-06-26 00:28:02 -070048 if (((*p)->mode ^ mode) & S_IFMT)
49 continue;
Linus Torvalds1da177e2005-04-16 15:20:36 -070050 return (*p)->name;
51 }
Thomas Petazzoni3265e662008-04-29 00:59:43 -070052 q = kmalloc(sizeof(struct hash), GFP_KERNEL);
Linus Torvalds1da177e2005-04-16 15:20:36 -070053 if (!q)
54 panic("can't allocate link hash entry");
Linus Torvalds1da177e2005-04-16 15:20:36 -070055 q->major = major;
H. Peter Anvin2139a7f2006-06-26 00:28:02 -070056 q->minor = minor;
57 q->ino = ino;
58 q->mode = mode;
Mark Huang6a050da2006-05-15 09:44:03 -070059 strcpy(q->name, name);
Linus Torvalds1da177e2005-04-16 15:20:36 -070060 q->next = NULL;
61 *p = q;
62 return NULL;
63}
64
65static void __init free_hash(void)
66{
67 struct hash **p, *q;
68 for (p = head; p < head + 32; p++) {
69 while (*p) {
70 q = *p;
71 *p = q->next;
Thomas Petazzoni3265e662008-04-29 00:59:43 -070072 kfree(q);
Linus Torvalds1da177e2005-04-16 15:20:36 -070073 }
74 }
75}
76
Nye Liu889d51a2008-10-15 22:01:40 -070077static long __init do_utime(char __user *filename, time_t mtime)
78{
79 struct timespec t[2];
80
81 t[0].tv_sec = mtime;
82 t[0].tv_nsec = 0;
83 t[1].tv_sec = mtime;
84 t[1].tv_nsec = 0;
85
86 return do_utimes(AT_FDCWD, filename, t, AT_SYMLINK_NOFOLLOW);
87}
88
89static __initdata LIST_HEAD(dir_list);
90struct dir_entry {
91 struct list_head list;
92 char *name;
93 time_t mtime;
94};
95
96static void __init dir_add(const char *name, time_t mtime)
97{
98 struct dir_entry *de = kmalloc(sizeof(struct dir_entry), GFP_KERNEL);
99 if (!de)
100 panic("can't allocate dir_entry buffer");
101 INIT_LIST_HEAD(&de->list);
102 de->name = kstrdup(name, GFP_KERNEL);
103 de->mtime = mtime;
104 list_add(&de->list, &dir_list);
105}
106
107static void __init dir_utime(void)
108{
109 struct dir_entry *de, *tmp;
110 list_for_each_entry_safe(de, tmp, &dir_list, list) {
111 list_del(&de->list);
112 do_utime(de->name, de->mtime);
113 kfree(de->name);
114 kfree(de);
115 }
116}
117
118static __initdata time_t mtime;
119
Linus Torvalds1da177e2005-04-16 15:20:36 -0700120/* cpio header parsing */
121
122static __initdata unsigned long ino, major, minor, nlink;
123static __initdata mode_t mode;
124static __initdata unsigned long body_len, name_len;
125static __initdata uid_t uid;
126static __initdata gid_t gid;
127static __initdata unsigned rdev;
128
129static void __init parse_header(char *s)
130{
131 unsigned long parsed[12];
132 char buf[9];
133 int i;
134
135 buf[8] = '\0';
136 for (i = 0, s += 6; i < 12; i++, s += 8) {
137 memcpy(buf, s, 8);
138 parsed[i] = simple_strtoul(buf, NULL, 16);
139 }
140 ino = parsed[0];
141 mode = parsed[1];
142 uid = parsed[2];
143 gid = parsed[3];
144 nlink = parsed[4];
Nye Liu889d51a2008-10-15 22:01:40 -0700145 mtime = parsed[5];
Linus Torvalds1da177e2005-04-16 15:20:36 -0700146 body_len = parsed[6];
147 major = parsed[7];
148 minor = parsed[8];
149 rdev = new_encode_dev(MKDEV(parsed[9], parsed[10]));
150 name_len = parsed[11];
151}
152
153/* FSM */
154
155static __initdata enum state {
156 Start,
157 Collect,
158 GotHeader,
159 SkipIt,
160 GotName,
161 CopyFile,
162 GotSymlink,
163 Reset
164} state, next_state;
165
166static __initdata char *victim;
167static __initdata unsigned count;
168static __initdata loff_t this_header, next_header;
169
Al Virob0a5ab92007-07-26 17:33:59 +0100170static inline void __init eat(unsigned n)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700171{
172 victim += n;
173 this_header += n;
174 count -= n;
175}
176
Nye Liu889d51a2008-10-15 22:01:40 -0700177static __initdata char *vcollected;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700178static __initdata char *collected;
179static __initdata int remains;
180static __initdata char *collect;
181
182static void __init read_into(char *buf, unsigned size, enum state next)
183{
184 if (count >= size) {
185 collected = victim;
186 eat(size);
187 state = next;
188 } else {
189 collect = collected = buf;
190 remains = size;
191 next_state = next;
192 state = Collect;
193 }
194}
195
196static __initdata char *header_buf, *symlink_buf, *name_buf;
197
198static int __init do_start(void)
199{
200 read_into(header_buf, 110, GotHeader);
201 return 0;
202}
203
204static int __init do_collect(void)
205{
206 unsigned n = remains;
207 if (count < n)
208 n = count;
209 memcpy(collect, victim, n);
210 eat(n);
211 collect += n;
212 if ((remains -= n) != 0)
213 return 1;
214 state = next_state;
215 return 0;
216}
217
218static int __init do_header(void)
219{
Arjan van de Ven2e591bb2006-12-06 20:37:19 -0800220 if (memcmp(collected, "070707", 6)==0) {
221 error("incorrect cpio method used: use -H newc option");
222 return 1;
223 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700224 if (memcmp(collected, "070701", 6)) {
225 error("no cpio magic");
226 return 1;
227 }
228 parse_header(collected);
229 next_header = this_header + N_ALIGN(name_len) + body_len;
230 next_header = (next_header + 3) & ~3;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700231 state = SkipIt;
232 if (name_len <= 0 || name_len > PATH_MAX)
233 return 0;
234 if (S_ISLNK(mode)) {
235 if (body_len > PATH_MAX)
236 return 0;
237 collect = collected = symlink_buf;
238 remains = N_ALIGN(name_len) + body_len;
239 next_state = GotSymlink;
240 state = Collect;
241 return 0;
242 }
243 if (S_ISREG(mode) || !body_len)
244 read_into(name_buf, N_ALIGN(name_len), GotName);
245 return 0;
246}
247
248static int __init do_skip(void)
249{
250 if (this_header + count < next_header) {
251 eat(count);
252 return 1;
253 } else {
254 eat(next_header - this_header);
255 state = next_state;
256 return 0;
257 }
258}
259
260static int __init do_reset(void)
261{
262 while(count && *victim == '\0')
263 eat(1);
264 if (count && (this_header & 3))
265 error("broken padding");
266 return 1;
267}
268
269static int __init maybe_link(void)
270{
271 if (nlink >= 2) {
H. Peter Anvin2139a7f2006-06-26 00:28:02 -0700272 char *old = find_link(major, minor, ino, mode, collected);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700273 if (old)
274 return (sys_link(old, collected) < 0) ? -1 : 1;
275 }
276 return 0;
277}
278
H. Peter Anvin2139a7f2006-06-26 00:28:02 -0700279static void __init clean_path(char *path, mode_t mode)
280{
281 struct stat st;
282
283 if (!sys_newlstat(path, &st) && (st.st_mode^mode) & S_IFMT) {
284 if (S_ISDIR(st.st_mode))
285 sys_rmdir(path);
286 else
287 sys_unlink(path);
288 }
289}
290
Linus Torvalds1da177e2005-04-16 15:20:36 -0700291static __initdata int wfd;
292
293static int __init do_name(void)
294{
295 state = SkipIt;
296 next_state = Reset;
297 if (strcmp(collected, "TRAILER!!!") == 0) {
298 free_hash();
299 return 0;
300 }
H. Peter Anvin2139a7f2006-06-26 00:28:02 -0700301 clean_path(collected, mode);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700302 if (S_ISREG(mode)) {
H. Peter Anvin2139a7f2006-06-26 00:28:02 -0700303 int ml = maybe_link();
304 if (ml >= 0) {
305 int openflags = O_WRONLY|O_CREAT;
306 if (ml != 1)
307 openflags |= O_TRUNC;
308 wfd = sys_open(collected, openflags, mode);
309
Linus Torvalds1da177e2005-04-16 15:20:36 -0700310 if (wfd >= 0) {
311 sys_fchown(wfd, uid, gid);
312 sys_fchmod(wfd, mode);
David Howellscb6ff202009-01-08 12:04:48 +0000313 sys_ftruncate(wfd, body_len);
Nye Liu889d51a2008-10-15 22:01:40 -0700314 vcollected = kstrdup(collected, GFP_KERNEL);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700315 state = CopyFile;
316 }
317 }
318 } else if (S_ISDIR(mode)) {
319 sys_mkdir(collected, mode);
320 sys_chown(collected, uid, gid);
321 sys_chmod(collected, mode);
Nye Liu889d51a2008-10-15 22:01:40 -0700322 dir_add(collected, mtime);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700323 } else if (S_ISBLK(mode) || S_ISCHR(mode) ||
324 S_ISFIFO(mode) || S_ISSOCK(mode)) {
325 if (maybe_link() == 0) {
326 sys_mknod(collected, mode, rdev);
327 sys_chown(collected, uid, gid);
328 sys_chmod(collected, mode);
Nye Liu889d51a2008-10-15 22:01:40 -0700329 do_utime(collected, mtime);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700330 }
331 }
332 return 0;
333}
334
335static int __init do_copy(void)
336{
337 if (count >= body_len) {
338 sys_write(wfd, victim, body_len);
339 sys_close(wfd);
Nye Liu889d51a2008-10-15 22:01:40 -0700340 do_utime(vcollected, mtime);
341 kfree(vcollected);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700342 eat(body_len);
343 state = SkipIt;
344 return 0;
345 } else {
346 sys_write(wfd, victim, count);
347 body_len -= count;
348 eat(count);
349 return 1;
350 }
351}
352
353static int __init do_symlink(void)
354{
355 collected[N_ALIGN(name_len) + body_len] = '\0';
H. Peter Anvin2139a7f2006-06-26 00:28:02 -0700356 clean_path(collected, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700357 sys_symlink(collected + N_ALIGN(name_len), collected);
358 sys_lchown(collected, uid, gid);
Nye Liu889d51a2008-10-15 22:01:40 -0700359 do_utime(collected, mtime);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700360 state = SkipIt;
361 next_state = Reset;
362 return 0;
363}
364
365static __initdata int (*actions[])(void) = {
366 [Start] = do_start,
367 [Collect] = do_collect,
368 [GotHeader] = do_header,
369 [SkipIt] = do_skip,
370 [GotName] = do_name,
371 [CopyFile] = do_copy,
372 [GotSymlink] = do_symlink,
373 [Reset] = do_reset,
374};
375
376static int __init write_buffer(char *buf, unsigned len)
377{
378 count = len;
379 victim = buf;
380
381 while (!actions[state]())
382 ;
383 return len - count;
384}
385
386static void __init flush_buffer(char *buf, unsigned len)
387{
388 int written;
389 if (message)
390 return;
391 while ((written = write_buffer(buf, len)) < len && !message) {
392 char c = buf[written];
393 if (c == '0') {
394 buf += written;
395 len -= written;
396 state = Start;
397 } else if (c == 0) {
398 buf += written;
399 len -= written;
400 state = Reset;
401 } else
402 error("junk in compressed archive");
403 }
404}
405
406/*
407 * gzip declarations
408 */
409
410#define OF(args) args
411
412#ifndef memzero
413#define memzero(s, n) memset ((s), 0, (n))
414#endif
415
416typedef unsigned char uch;
417typedef unsigned short ush;
418typedef unsigned long ulg;
419
420#define WSIZE 0x8000 /* window size--must be a power of two, and */
421 /* at least 32K for zip's deflate method */
422
423static uch *inbuf;
424static uch *window;
425
426static unsigned insize; /* valid bytes in inbuf */
427static unsigned inptr; /* index of next byte to be processed in inbuf */
428static unsigned outcnt; /* bytes in output buffer */
429static long bytes_out;
430
431#define get_byte() (inptr < insize ? inbuf[inptr++] : -1)
432
433/* Diagnostic functions (stubbed out) */
434#define Assert(cond,msg)
435#define Trace(x)
436#define Tracev(x)
437#define Tracevv(x)
438#define Tracec(c,x)
439#define Tracecv(c,x)
440
441#define STATIC static
442#define INIT __init
443
444static void __init flush_window(void);
445static void __init error(char *m);
Thomas Petazzoni2d6ffcc2008-07-25 01:45:44 -0700446
447#define NO_INFLATE_MALLOC
Linus Torvalds1da177e2005-04-16 15:20:36 -0700448
449#include "../lib/inflate.c"
450
Linus Torvalds1da177e2005-04-16 15:20:36 -0700451/* ===========================================================================
452 * Write the output window window[0..outcnt-1] and update crc and bytes_out.
453 * (Used for the decompressed data only.)
454 */
455static void __init flush_window(void)
456{
457 ulg c = crc; /* temporary variable */
458 unsigned n;
459 uch *in, ch;
460
461 flush_buffer(window, outcnt);
462 in = window;
463 for (n = 0; n < outcnt; n++) {
464 ch = *in++;
465 c = crc_32_tab[((int)c ^ ch) & 0xff] ^ (c >> 8);
466 }
467 crc = c;
468 bytes_out += (ulg)outcnt;
469 outcnt = 0;
470}
471
Li, Shaohuadf520922008-08-13 17:26:01 +0800472static char * __init unpack_to_rootfs(char *buf, unsigned len)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700473{
474 int written;
Thomas Petazzoni3265e662008-04-29 00:59:43 -0700475 header_buf = kmalloc(110, GFP_KERNEL);
476 symlink_buf = kmalloc(PATH_MAX + N_ALIGN(PATH_MAX) + 1, GFP_KERNEL);
477 name_buf = kmalloc(N_ALIGN(PATH_MAX), GFP_KERNEL);
478 window = kmalloc(WSIZE, GFP_KERNEL);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700479 if (!window || !header_buf || !symlink_buf || !name_buf)
480 panic("can't allocate buffers");
481 state = Start;
482 this_header = 0;
483 message = NULL;
484 while (!message && len) {
485 loff_t saved_offset = this_header;
486 if (*buf == '0' && !(this_header & 3)) {
487 state = Start;
488 written = write_buffer(buf, len);
489 buf += written;
490 len -= written;
491 continue;
492 }
493 if (!*buf) {
494 buf++;
495 len--;
496 this_header++;
497 continue;
498 }
499 this_header = 0;
500 insize = len;
501 inbuf = buf;
502 inptr = 0;
503 outcnt = 0; /* bytes in output buffer */
504 bytes_out = 0;
505 crc = (ulg)0xffffffffL; /* shift register contents */
506 makecrc();
507 gunzip();
508 if (state != Reset)
509 error("junk in gzipped archive");
510 this_header = saved_offset + inptr;
511 buf += inptr;
512 len -= inptr;
513 }
Nye Liu889d51a2008-10-15 22:01:40 -0700514 dir_utime();
Thomas Petazzoni3265e662008-04-29 00:59:43 -0700515 kfree(window);
516 kfree(name_buf);
517 kfree(symlink_buf);
518 kfree(header_buf);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700519 return message;
520}
521
Michael Neuling0a7b35cb2007-02-10 01:44:33 -0800522static int __initdata do_retain_initrd;
523
524static int __init retain_initrd_param(char *str)
525{
526 if (*str)
527 return 0;
528 do_retain_initrd = 1;
529 return 1;
530}
531__setup("retain_initrd", retain_initrd_param);
532
Linus Torvalds1da177e2005-04-16 15:20:36 -0700533extern char __initramfs_start[], __initramfs_end[];
Linus Torvalds1da177e2005-04-16 15:20:36 -0700534#include <linux/initrd.h>
Haren Myneni9c15e852006-02-10 01:51:05 -0800535#include <linux/kexec.h>
Jan Beulich0f3d2bd2005-09-13 01:25:12 -0700536
537static void __init free_initrd(void)
538{
Haren Myneni9c15e852006-02-10 01:51:05 -0800539#ifdef CONFIG_KEXEC
540 unsigned long crashk_start = (unsigned long)__va(crashk_res.start);
541 unsigned long crashk_end = (unsigned long)__va(crashk_res.end);
Michael Neuling0a7b35cb2007-02-10 01:44:33 -0800542#endif
543 if (do_retain_initrd)
544 goto skip;
Haren Myneni9c15e852006-02-10 01:51:05 -0800545
Michael Neuling0a7b35cb2007-02-10 01:44:33 -0800546#ifdef CONFIG_KEXEC
Haren Myneni9c15e852006-02-10 01:51:05 -0800547 /*
548 * If the initrd region is overlapped with crashkernel reserved region,
549 * free only memory that is not part of crashkernel region.
550 */
551 if (initrd_start < crashk_end && initrd_end > crashk_start) {
552 /*
553 * Initialize initrd memory region since the kexec boot does
554 * not do.
555 */
556 memset((void *)initrd_start, 0, initrd_end - initrd_start);
557 if (initrd_start < crashk_start)
558 free_initrd_mem(initrd_start, crashk_start);
559 if (initrd_end > crashk_end)
560 free_initrd_mem(crashk_end, initrd_end);
561 } else
562#endif
563 free_initrd_mem(initrd_start, initrd_end);
Michael Neuling0a7b35cb2007-02-10 01:44:33 -0800564skip:
Jan Beulich0f3d2bd2005-09-13 01:25:12 -0700565 initrd_start = 0;
566 initrd_end = 0;
567}
568
Li, Shaohuadf520922008-08-13 17:26:01 +0800569#define BUF_SIZE 1024
570static void __init clean_rootfs(void)
571{
572 int fd;
573 void *buf;
574 struct linux_dirent64 *dirp;
575 int count;
576
577 fd = sys_open("/", O_RDONLY, 0);
578 WARN_ON(fd < 0);
579 if (fd < 0)
580 return;
581 buf = kzalloc(BUF_SIZE, GFP_KERNEL);
582 WARN_ON(!buf);
583 if (!buf) {
584 sys_close(fd);
585 return;
586 }
587
588 dirp = buf;
589 count = sys_getdents64(fd, dirp, BUF_SIZE);
590 while (count > 0) {
591 while (count > 0) {
592 struct stat st;
593 int ret;
594
595 ret = sys_newlstat(dirp->d_name, &st);
596 WARN_ON_ONCE(ret);
597 if (!ret) {
598 if (S_ISDIR(st.st_mode))
599 sys_rmdir(dirp->d_name);
600 else
601 sys_unlink(dirp->d_name);
602 }
603
604 count -= dirp->d_reclen;
605 dirp = (void *)dirp + dirp->d_reclen;
606 }
607 dirp = buf;
608 memset(buf, 0, BUF_SIZE);
609 count = sys_getdents64(fd, dirp, BUF_SIZE);
610 }
611
612 sys_close(fd);
613 kfree(buf);
614}
615
Linus Torvalds9a9e0d62008-03-15 11:53:32 -0700616static int __init populate_rootfs(void)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700617{
618 char *err = unpack_to_rootfs(__initramfs_start,
Li, Shaohuadf520922008-08-13 17:26:01 +0800619 __initramfs_end - __initramfs_start);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700620 if (err)
621 panic(err);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700622 if (initrd_start) {
Zdenek Pavlas340e48e2006-03-25 03:07:49 -0800623#ifdef CONFIG_BLK_DEV_RAM
Linus Torvalds1da177e2005-04-16 15:20:36 -0700624 int fd;
625 printk(KERN_INFO "checking if image is initramfs...");
626 err = unpack_to_rootfs((char *)initrd_start,
Li, Shaohuadf520922008-08-13 17:26:01 +0800627 initrd_end - initrd_start);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700628 if (!err) {
629 printk(" it is\n");
Jan Beulich0f3d2bd2005-09-13 01:25:12 -0700630 free_initrd();
Linus Torvalds8d610dd2006-12-11 12:12:04 -0800631 return 0;
Li, Shaohuadf520922008-08-13 17:26:01 +0800632 } else {
633 clean_rootfs();
634 unpack_to_rootfs(__initramfs_start,
635 __initramfs_end - __initramfs_start);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700636 }
637 printk("it isn't (%s); looks like an initrd\n", err);
Jason Gunthorpe33644c52006-03-26 01:37:38 -0800638 fd = sys_open("/initrd.image", O_WRONLY|O_CREAT, 0700);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700639 if (fd >= 0) {
640 sys_write(fd, (char *)initrd_start,
641 initrd_end - initrd_start);
642 sys_close(fd);
Jan Beulich0f3d2bd2005-09-13 01:25:12 -0700643 free_initrd();
Linus Torvalds1da177e2005-04-16 15:20:36 -0700644 }
Zdenek Pavlas340e48e2006-03-25 03:07:49 -0800645#else
646 printk(KERN_INFO "Unpacking initramfs...");
647 err = unpack_to_rootfs((char *)initrd_start,
Li, Shaohuadf520922008-08-13 17:26:01 +0800648 initrd_end - initrd_start);
Zdenek Pavlas340e48e2006-03-25 03:07:49 -0800649 if (err)
650 panic(err);
651 printk(" done\n");
652 free_initrd();
653#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -0700654 }
Linus Torvalds8d610dd2006-12-11 12:12:04 -0800655 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700656}
Linus Torvalds8d610dd2006-12-11 12:12:04 -0800657rootfs_initcall(populate_rootfs);