diff options
| author | Jeremy Katz <katzj@redhat.com> | 2003-06-06 16:33:31 +0000 |
|---|---|---|
| committer | Jeremy Katz <katzj@redhat.com> | 2003-06-06 16:33:31 +0000 |
| commit | e0779b7bf137a60bf6e6cd3adee4aabffcd28c73 (patch) | |
| tree | 20b8340a621390a3fc967ef5fb3723c78b4033c7 /loader2/loader.c | |
| parent | 91d5fc40d23a5fb5b225287090e8074d0054fa6e (diff) | |
merge taroon branch. mostly package bits, but a lot of other misc stuff
and cleanups in here too
Diffstat (limited to 'loader2/loader.c')
| -rw-r--r-- | loader2/loader.c | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/loader2/loader.c b/loader2/loader.c index 00423aba8..60c870b6a 100644 --- a/loader2/loader.c +++ b/loader2/loader.c @@ -688,6 +688,11 @@ static char *doLoaderMain(char * location, if (url && !FL_RESCUE(flags)) return url; } + /* iSeries vio console users will be telnetting in to the primary + partition, so use a terminal type that is appripriate */ + if (isVioConsole()) + setenv("TERM", "vt100", 1); + startNewt(flags); step = STEP_LANG; @@ -984,6 +989,7 @@ int main(int argc, char ** argv) { /* JKFIXME: very very bad hack */ secondStageModuleLocation = malloc(sizeof(struct moduleBallLocation)); secondStageModuleLocation->path = strdup("/mnt/runtime/modules/modules.cgz"); + secondStageModuleLocation->version = CURRENT_MODBALLVER; if (!strcmp(argv[0] + strlen(argv[0]) - 6, "insmod")) return ourInsmodCommand(argc, argv); |
