Rev 4338 | Rev 4341 | Go to most recent revision | Show entire file | Ignore whitespace | Details | Blame | Last modification | View Log | RSS feed
| Rev 4338 | Rev 4339 | ||
|---|---|---|---|
| Line 177... | Line 177... | ||
| 177 | * Create thread that polls keyboard. |
177 | * Create thread that polls keyboard. |
| 178 | */ |
178 | */ |
| 179 | #ifdef SKI |
179 | #ifdef SKI |
| 180 | t = thread_create(kkbdpoll, NULL, TASK, 0, "kkbdpoll", true); |
180 | t = thread_create(kkbdpoll, NULL, TASK, 0, "kkbdpoll", true); |
| 181 | if (!t) |
181 | if (!t) |
| 182 | panic("cannot create kkbdpoll\n"); |
182 | panic("Cannot create kkbdpoll."); |
| 183 | thread_ready(t); |
183 | thread_ready(t); |
| 184 | #endif |
184 | #endif |
| 185 | 185 | ||
| 186 | #ifdef I460GX |
186 | #ifdef I460GX |
| 187 | devno_t kbd = device_assign_devno(); |
187 | devno_t kbd = device_assign_devno(); |
| Line 192... | Line 192... | ||
| 192 | devno_t mouse = device_assign_devno(); |
192 | devno_t mouse = device_assign_devno(); |
| 193 | i8042_init(kbd, IRQ_KBD, mouse, IRQ_MOUSE); |
193 | i8042_init(kbd, IRQ_KBD, mouse, IRQ_MOUSE); |
| 194 | #endif |
194 | #endif |
| 195 | t = thread_create(i8042_kkbdpoll, NULL, TASK, 0, "kkbdpoll", true); |
195 | t = thread_create(i8042_kkbdpoll, NULL, TASK, 0, "kkbdpoll", true); |
| 196 | if (!t) |
196 | if (!t) |
| 197 | panic("cannot create kkbdpoll\n"); |
197 | panic("Cannot create kkbdpoll."); |
| 198 | thread_ready(t); |
198 | thread_ready(t); |
| 199 | #endif |
199 | #endif |
| 200 | 200 | ||
| 201 | sysinfo_set_item_val("ia64_iospace", NULL, true); |
201 | sysinfo_set_item_val("ia64_iospace", NULL, true); |
| 202 | sysinfo_set_item_val("ia64_iospace.address", NULL, true); |
202 | sysinfo_set_item_val("ia64_iospace.address", NULL, true); |