Rev 4344 | Rev 4346 | Go to most recent revision | Show entire file | Ignore whitespace | Details | Blame | Last modification | View Log | RSS feed
| Rev 4344 | Rev 4345 | ||
|---|---|---|---|
| Line 25... | Line 25... | ||
| 25 | * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF |
25 | * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF |
| 26 | * THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. |
26 | * THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. |
| 27 | */ |
27 | */ |
| 28 | 28 | ||
| 29 | /** @addtogroup init Init |
29 | /** @addtogroup init Init |
| 30 | * @brief Init process for testing purposes. |
30 | * @brief Init process for user space environment configuration. |
| 31 | * @{ |
31 | * @{ |
| 32 | */ |
32 | */ |
| 33 | /** |
33 | /** |
| 34 | * @file |
34 | * @file |
| 35 | */ |
35 | */ |
| 36 | 36 | ||
| 37 | #include <stdio.h> |
37 | #include <stdio.h> |
| 38 | #include <unistd.h> |
38 | #include <unistd.h> |
| - | 39 | #include <ipc/ipc.h> |
|
| 39 | #include <vfs/vfs.h> |
40 | #include <vfs/vfs.h> |
| 40 | #include <bool.h> |
41 | #include <bool.h> |
| 41 | #include <errno.h> |
42 | #include <errno.h> |
| 42 | #include <fcntl.h> |
43 | #include <fcntl.h> |
| 43 | #include <task.h> |
44 | #include <task.h> |
| 44 | #include <malloc.h> |
45 | #include <malloc.h> |
| - | 46 | #include <macros.h> |
|
| 45 | #include "init.h" |
47 | #include "init.h" |
| 46 | #include "version.h" |
48 | #include "version.h" |
| 47 | 49 | ||
| 48 | #define BUF_SIZE 150000 |
- | |
| 49 | - | ||
| 50 | static char *buf; |
- | |
| 51 | - | ||
| 52 | static void console_wait(void) |
- | |
| 53 | { |
- | |
| 54 | while (get_cons_phone() < 0) |
- | |
| 55 | usleep(50000); // FIXME |
- | |
| 56 | } |
- | |
| 57 | - | ||
| 58 | static bool mount_fs(const char *fstype) |
50 | static bool mount_fs(const char *fstype) |
| 59 | { |
51 | { |
| 60 | int rc = -1; |
52 | int rc = -1; |
| 61 | 53 | ||
| 62 | while (rc < 0) { |
54 | while (rc < 0) { |
| 63 | rc = mount(fstype, "/", "initrd"); |
55 | rc = mount(fstype, "/", "initrd", IPC_FLAG_BLOCKING); |
| 64 | 56 | ||
| 65 | switch (rc) { |
57 | switch (rc) { |
| 66 | case EOK: |
58 | case EOK: |
| 67 | printf(NAME ": Root filesystem mounted\n"); |
59 | printf(NAME ": Root filesystem mounted\n"); |
| 68 | break; |
60 | break; |
| 69 | case EBUSY: |
61 | case EBUSY: |
| Line 73... | Line 65... | ||
| 73 | printf(NAME ": Unable to mount root filesystem\n"); |
65 | printf(NAME ": Unable to mount root filesystem\n"); |
| 74 | return false; |
66 | return false; |
| 75 | case ENOENT: |
67 | case ENOENT: |
| 76 | printf(NAME ": Unknown filesystem type (%s)\n", fstype); |
68 | printf(NAME ": Unknown filesystem type (%s)\n", fstype); |
| 77 | return false; |
69 | return false; |
| 78 | default: |
- | |
| 79 | sleep(5); // FIXME |
- | |
| 80 | } |
70 | } |
| 81 | } |
71 | } |
| 82 | 72 | ||
| 83 | return true; |
73 | return true; |
| 84 | } |
74 | } |
| 85 | 75 | ||
| 86 | static void spawn(char *fname) |
76 | static void spawn(char *fname) |
| 87 | { |
77 | { |
| 88 | char *argv[2]; |
78 | char *argv[2]; |
| 89 | 79 | ||
| 90 | printf(NAME ": Spawning %s\n", fname); |
80 | printf(NAME ": Spawning %s\n", fname); |
| 91 | 81 | ||
| 92 | argv[0] = fname; |
82 | argv[0] = fname; |
| 93 | argv[1] = NULL; |
83 | argv[1] = NULL; |
| 94 | 84 | ||
| 95 | if (task_spawn(fname, argv) != 0) { |
85 | if (task_spawn(fname, argv)) |
| - | 86 | /* Add reasonable delay to avoid |
|
| 96 | /* Success */ |
87 | intermixed klog output */ |
| 97 | sleep(1); |
88 | usleep(10000); |
| 98 | } |
89 | else |
| - | 90 | printf(NAME ": Error spawning %s\n", fname); |
|
| 99 | } |
91 | } |
| 100 | 92 | ||
| 101 | int main(int argc, char *argv[]) |
93 | int main(int argc, char *argv[]) |
| 102 | { |
94 | { |
| 103 | info_print(); |
95 | info_print(); |
| 104 | sleep(5); // FIXME |
- | |
| 105 | 96 | ||
| 106 | if (!mount_fs("tmpfs") && !mount_fs("fat")) { |
97 | if (!mount_fs(STRING(RDFMT))) { |
| 107 | printf(NAME ": Exiting\n"); |
98 | printf(NAME ": Exiting\n"); |
| 108 | return -1; |
99 | return -1; |
| 109 | } |
100 | } |
| 110 | 101 | ||
| 111 | // FIXME: spawn("/srv/pci"); |
102 | // FIXME: spawn("/srv/pci"); |
| Line 119... | Line 110... | ||
| 119 | version_print(); |
110 | version_print(); |
| 120 | 111 | ||
| 121 | spawn("/app/klog"); |
112 | spawn("/app/klog"); |
| 122 | spawn("/app/bdsh"); |
113 | spawn("/app/bdsh"); |
| 123 | 114 | ||
| 124 | free(buf); |
- | |
| 125 | return 0; |
115 | return 0; |
| 126 | } |
116 | } |
| 127 | 117 | ||
| 128 | /** @} |
118 | /** @} |
| 129 | */ |
119 | */ |