mirror of
https://github.com/vivier/EMILE.git
synced 2024-12-22 10:29:31 +00:00
add gestaltid
This commit is contained in:
parent
581846611c
commit
5bfe6dfb97
@ -58,7 +58,7 @@ int start(emile_l2_header_t* info)
|
||||
printf("EMILE v"VERSION" (c) 2004 Laurent Vivier\n");
|
||||
printf("This is free software, redistribute it under GPL\n");
|
||||
|
||||
if (info->signature != EMILE_02_SIGNATURE)
|
||||
if (info->signature < EMILE_03_SIGNATURE)
|
||||
error("Bad header signature !\n");
|
||||
|
||||
arch_init();
|
||||
@ -69,6 +69,11 @@ int start(emile_l2_header_t* info)
|
||||
bank_dump();
|
||||
#endif
|
||||
|
||||
if (info->gestaltID != 0) {
|
||||
machine_id = info->gestaltID;
|
||||
printf("User forces gestalt ID to %ld\n", machine_id);
|
||||
}
|
||||
|
||||
/* load kernel */
|
||||
|
||||
printf("vmlinux %s\n", info->command_line);
|
||||
|
Loading…
Reference in New Issue
Block a user