Rev 4153 | Go to most recent revision | Show entire file | Ignore whitespace | Details | Blame | Last modification | View Log | RSS feed
| Rev 4153 | Rev 4263 | ||
|---|---|---|---|
| Line 116... | Line 116... | ||
| 116 | panic("Cannot find '/aliases'."); |
116 | panic("Cannot find '/aliases'."); |
| 117 | 117 | ||
| 118 | /* "def-cn" = "default console" */ |
118 | /* "def-cn" = "default console" */ |
| 119 | prop = ofw_tree_getprop(aliases, "def-cn"); |
119 | prop = ofw_tree_getprop(aliases, "def-cn"); |
| 120 | 120 | ||
| 121 | if ((!prop) || (!prop->value) || (strcmp(prop->value, "/sgcn") != 0)) { |
121 | if ((!prop) || (!prop->value) || (str_cmp(prop->value, "/sgcn") != 0)) { |
| 122 | standard_console_init(aliases); |
122 | standard_console_init(aliases); |
| 123 | } else { |
123 | } else { |
| 124 | serengeti_init(); |
124 | serengeti_init(); |
| 125 | } |
125 | } |
| 126 | } |
126 | } |