+Mon Nov 6 20:49:56 1995 Andrew Cagney <cagney@highland.com.au>
+
+ * sim_calls.c (sim_open): Fix parsing of `target sim' options.
+
+ * device_tree.c (device_tree_add_string): Wasn't saving the value
+ of the string being entered into the tree.
+
+ * psim.c (create_filed_device_tree): Not terminating string device
+ names with a null.
+
+ * psim.c (psim_create): Use `env' instead of
+ `environment-architecture' to be consistent with configure.
+ Reconize user/uea, virtual/vea and operating/oea.
+
Sat Nov 4 12:29:45 1995 Fred Fish <fnf@cygnus.com>
* core.c: Rename to corefile.c
MAX_NR_PROCESSORS);
device_tree_add_boolean(root, "/options/little-endian?",
!image->xvec->byteorder_big_p);
- device_tree_add_string(root, "/options/environment-architecture",
+ device_tree_add_string(root, "/options/env",
"operating");
device_tree_add_boolean(root, "/options/strict-alignment?",
(WITH_ALIGNMENT == STRICT_ALIGNMENT
device_tree_add_integer(root, "/options/smp", 1); /* always */
device_tree_add_boolean(root, "/options/little-endian?",
!image->xvec->byteorder_big_p);
- device_tree_add_string(root, "/options/environment-architecture",
+ device_tree_add_string(root, "/options/env",
(WITH_ENVIRONMENT == USER_ENVIRONMENT
? "user" : "virtual"));
device_tree_add_boolean(root, "/options/strict-alignment?",
}
else {
/* any thing else */
- space = '\0';
+ *space = '\0';
device_tree_add_string(root, device_path, space + 1);
}
}
/* fill in the missing OEA/VEA information */
env = device_tree_find_string(system->devices,
- "/options/environment-architecture");
- current_environment = (strcmp(env, "user") == 0
+ "/options/env");
+ current_environment = ((strcmp(env, "user") == 0
+ || strcmp(env, "uea") == 0)
? USER_ENVIRONMENT
- : strcmp(env, "virtual") == 0
+ : (strcmp(env, "virtual") == 0
+ || strcmp(env, "vea") == 0)
? VIRTUAL_ENVIRONMENT
- : strcmp(env, "operating") == 0
+ : (strcmp(env, "operating") == 0
+ || strcmp(env, "oea") == 0)
? OPERATING_ENVIRONMENT
: 0);
if (current_environment == 0)
- error("unreconized /options/environment-architecture\n");
+ error("unreconized /options/env\n");
if (CURRENT_ENVIRONMENT != current_environment)
error("target environment conflict\n");