Add qemu 2.4.0
[kvmfornfv.git] / qemu / roms / openbios / packages / init.c
1 /*
2  *   Creation Date: <2003/12/23 00:28:05 samuel>
3  *   Time-stamp: <2003/12/28 19:43:41 samuel>
4  *
5  *      <init.c>
6  *
7  *      Module intialization
8  *
9  *   Copyright (C) 2003 Samuel Rydh (samuel@ibrium.se)
10  *
11  *   This program is free software; you can redistribute it and/or
12  *   modify it under the terms of the GNU General Public License
13  *   version 2
14  *
15  */
16
17 #include "config.h"
18 #include "kernel/kernel.h"
19 #include "packages.h"
20
21 void
22 modules_init( void )
23 {
24 #ifdef CONFIG_CMDLINE
25         cmdline_init();
26 #endif
27 #ifdef CONFIG_DEBLOCKER
28         deblocker_init();
29 #endif
30 #ifdef CONFIG_DISK_LABEL
31         disklabel_init();
32 #endif
33 #ifdef CONFIG_HFSP
34         hfsp_init();
35 #endif
36 #ifdef CONFIG_HFS
37         hfs_init();
38 #endif
39 #ifdef CONFIG_EXT2
40         ext2_init();
41 #endif
42 #ifdef CONFIG_ISO9660
43         iso9660_init();
44 #endif
45 #ifdef CONFIG_GRUBFS
46         grubfs_init();
47 #endif
48 #ifdef CONFIG_MAC_PARTS
49         macparts_init();
50 #endif
51 #ifdef CONFIG_PC_PARTS
52         pcparts_init();
53 #endif
54 #ifdef CONFIG_SUN_PARTS
55         sunparts_init();
56 #endif
57 #ifdef CONFIG_LOADER_XCOFF
58         xcoff_loader_init();
59 #endif
60 #ifdef CONFIG_LOADER_ELF
61         elf_loader_init();
62 #endif
63 #ifdef CONFIG_LOADER_BOOTINFO
64         bootinfo_loader_init();
65 #endif
66
67 }