Skip to content
Snippets Groups Projects
Commit ced71a2f authored by Bin Meng's avatar Bin Meng
Browse files

bootvx: Exit if bootline address is not specified


Exit the 'bootvx' command if bootline address is not specified.

Signed-off-by: default avatarBin Meng <bmeng.cn@gmail.com>
parent 7824ad6a
No related branches found
No related tags found
No related merge requests found
...@@ -304,76 +304,73 @@ int do_bootvx(cmd_tbl_t *cmdtp, int flag, int argc, char * const argv[]) ...@@ -304,76 +304,73 @@ int do_bootvx(cmd_tbl_t *cmdtp, int flag, int argc, char * const argv[])
tmp = env_get("bootaddr"); tmp = env_get("bootaddr");
if (!tmp) { if (!tmp) {
printf("## VxWorks bootline address not specified\n"); printf("## VxWorks bootline address not specified\n");
} else { return 1;
bootaddr = simple_strtoul(tmp, NULL, 16); }
bootaddr = simple_strtoul(tmp, NULL, 16);
/*
* Check to see if the bootline is defined in the 'bootargs' parameter.
* If it is not defined, we may be able to construct the info.
*/
bootline = env_get("bootargs");
if (!bootline) {
tmp = env_get("bootdev");
if (tmp) {
strcpy(build_buf, tmp);
ptr = strlen(tmp);
} else {
printf("## VxWorks boot device not specified\n");
}
tmp = env_get("bootfile");
if (tmp)
ptr += sprintf(build_buf + ptr, "host:%s ", tmp);
else
ptr += sprintf(build_buf + ptr, "host:vxWorks ");
/* /*
* Check to see if the bootline is defined in the 'bootargs' * The following parameters are only needed if 'bootdev'
* parameter. If it is not defined, we may be able to * is an ethernet device, otherwise they are optional.
* construct the info.
*/ */
bootline = env_get("bootargs"); tmp = env_get("ipaddr");
if (!bootline) { if (tmp) {
tmp = env_get("bootdev"); ptr += sprintf(build_buf + ptr, "e=%s", tmp);
tmp = env_get("netmask");
if (tmp) { if (tmp) {
strcpy(build_buf, tmp); u32 mask = env_get_ip("netmask").s_addr;
ptr = strlen(tmp);
} else
printf("## VxWorks boot device not specified\n");
tmp = env_get("bootfile");
if (tmp)
ptr += sprintf(build_buf + ptr,
"host:%s ", tmp);
else
ptr += sprintf(build_buf + ptr, ptr += sprintf(build_buf + ptr,
"host:vxWorks "); ":%08x ", ntohl(mask));
} else {
/* ptr += sprintf(build_buf + ptr, " ");
* The following parameters are only needed if 'bootdev'
* is an ethernet device, otherwise they are optional.
*/
tmp = env_get("ipaddr");
if (tmp) {
ptr += sprintf(build_buf + ptr, "e=%s", tmp);
tmp = env_get("netmask");
if (tmp) {
u32 mask = env_get_ip("netmask").s_addr;
ptr += sprintf(build_buf + ptr,
":%08x ", ntohl(mask));
} else {
ptr += sprintf(build_buf + ptr, " ");
}
} }
}
tmp = env_get("serverip"); tmp = env_get("serverip");
if (tmp) if (tmp)
ptr += sprintf(build_buf + ptr, "h=%s ", tmp); ptr += sprintf(build_buf + ptr, "h=%s ", tmp);
tmp = env_get("gatewayip");
if (tmp)
ptr += sprintf(build_buf + ptr, "g=%s ", tmp);
tmp = env_get("hostname"); tmp = env_get("gatewayip");
if (tmp) if (tmp)
ptr += sprintf(build_buf + ptr, "tn=%s ", tmp); ptr += sprintf(build_buf + ptr, "g=%s ", tmp);
tmp = env_get("othbootargs"); tmp = env_get("hostname");
if (tmp) { if (tmp)
strcpy(build_buf + ptr, tmp); ptr += sprintf(build_buf + ptr, "tn=%s ", tmp);
ptr += strlen(tmp);
}
bootline = build_buf; tmp = env_get("othbootargs");
if (tmp) {
strcpy(build_buf + ptr, tmp);
ptr += strlen(tmp);
} }
memcpy((void *)bootaddr, bootline, bootline = build_buf;
max(strlen(bootline), (size_t)255));
flush_cache(bootaddr, max(strlen(bootline), (size_t)255));
printf("## Using bootline (@ 0x%lx): %s\n", bootaddr,
(char *)bootaddr);
} }
memcpy((void *)bootaddr, bootline, max(strlen(bootline), (size_t)255));
flush_cache(bootaddr, max(strlen(bootline), (size_t)255));
printf("## Using bootline (@ 0x%lx): %s\n", bootaddr, (char *)bootaddr);
#ifdef CONFIG_X86 #ifdef CONFIG_X86
/* /*
* Get VxWorks's physical memory base address from environment, * Get VxWorks's physical memory base address from environment,
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment