summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorian <ian@FreeBSD.org>2014-03-17 16:10:42 +0000
committerian <ian@FreeBSD.org>2014-03-17 16:10:42 +0000
commitdcb2ac3517a9934fa6186afa3513e740ffc24f37 (patch)
treea79632e4146b99b8b7754958f966f48ab7e7e68a
parent3395c22f24c217d3db44a207cb27e1e6ae20fa0a (diff)
downloadFreeBSD-src-dcb2ac3517a9934fa6186afa3513e740ffc24f37.zip
FreeBSD-src-dcb2ac3517a9934fa6186afa3513e740ffc24f37.tar.gz
Cosmetic changes to printed output, mostly related to probing devices...
- Display slice and partition as <auto> instead of 0 or -1 when they're not set to specific values (the paritition=-1 was confusing folks). - When loaderdev isn't set in the u-boot environment, say so rather than displaying unknown device ''. - Print the loader(8) ident/version info earlier, so that all device- related info appears together afterwards. The one change here that isn't purely cosmetic is to call setheap() earlier. The comment says "Initialise heap as early as possible", now that's more accurate. It shouldn't make any functional difference, but may be safer if future changes lead to trying to allocate memory earlier.
-rw-r--r--sys/boot/uboot/common/main.c89
1 files changed, 53 insertions, 36 deletions
diff --git a/sys/boot/uboot/common/main.c b/sys/boot/uboot/common/main.c
index 833beed..16cea23 100644
--- a/sys/boot/uboot/common/main.c
+++ b/sys/boot/uboot/common/main.c
@@ -128,7 +128,7 @@ meminfo(void)
for (i = 0; i < 3; i++) {
size = memsize(si, t[i]);
if (size > 0)
- printf("%s:\t %lldMB\n", ub_mem_type(t[i]),
+ printf("%s: %lldMB\n", ub_mem_type(t[i]),
size / 1024 / 1024);
}
}
@@ -198,18 +198,20 @@ get_load_device(int *type, int *unit, int *slice, int *partition)
const char *p;
char *endp;
- devstr = ub_env_get("loaderdev");
- if (devstr == NULL)
- devstr = "";
- else
- printf("U-Boot setting: loaderdev=%s\n", devstr);
-
- p = get_device_type(devstr, type);
-
+ *type = -1;
*unit = -1;
*slice = 0;
*partition = -1;
+ devstr = ub_env_get("loaderdev");
+ if (devstr == NULL) {
+ printf("U-Boot env: loaderdev not set, will probe all devices.\n");
+ return;
+ }
+ printf("U-Boot env: loaderdev='%s'\n", devstr);
+
+ p = get_device_type(devstr, type);
+
/*
* Empty device string, or unknown device name, or a bare, known
* device name.
@@ -297,6 +299,27 @@ get_load_device(int *type, int *unit, int *slice, int *partition)
*partition = -1;
}
+static void
+print_disk_probe_info()
+{
+ char slice[32];
+ char partition[32];
+
+ if (currdev.d_disk.slice > 0)
+ sprintf(slice, "%d", currdev.d_disk.slice);
+ else
+ strcpy(slice, "<auto>");
+
+ if (currdev.d_disk.partition > 0)
+ sprintf(partition, "%d", currdev.d_disk.partition);
+ else
+ strcpy(partition, "<auto>");
+
+ printf(" Checking unit=%d slice=%s partition=%s...",
+ currdev.d_unit, slice, partition);
+
+}
+
static int
probe_disks(int devidx, int load_type, int load_unit, int load_slice,
int load_partition)
@@ -311,13 +334,11 @@ probe_disks(int devidx, int load_type, int load_unit, int load_slice,
open_result = -1;
if (load_type == -1) {
- printf("Probing all storage devices...\n");
+ printf(" Probing all disk devices...\n");
/* Try each disk in succession until one works. */
for (currdev.d_unit = 0; currdev.d_unit < UB_MAX_DEV;
currdev.d_unit++) {
- printf("Checking unit=%d slice=%d partition=%d...",
- currdev.d_unit, currdev.d_disk.slice,
- currdev.d_disk.partition);
+ print_disk_probe_info();
open_result = devsw[devidx]->dv_open(&f, &currdev);
if (open_result == 0) {
printf(" good.\n");
@@ -329,15 +350,13 @@ probe_disks(int devidx, int load_type, int load_unit, int load_slice,
}
if (load_unit == -1) {
- printf("Probing all %s devices...\n", device_typename(load_type));
+ printf(" Probing all %s devices...\n", device_typename(load_type));
/* Try each disk of given type in succession until one works. */
for (unit = 0; unit < UB_MAX_DEV; unit++) {
currdev.d_unit = uboot_diskgetunit(load_type, unit);
if (currdev.d_unit == -1)
break;
- printf("Checking unit=%d slice=%d partition=%d...",
- currdev.d_unit, currdev.d_disk.slice,
- currdev.d_disk.partition);
+ print_disk_probe_info();
open_result = devsw[devidx]->dv_open(&f, &currdev);
if (open_result == 0) {
printf(" good.\n");
@@ -349,18 +368,16 @@ probe_disks(int devidx, int load_type, int load_unit, int load_slice,
}
if ((currdev.d_unit = uboot_diskgetunit(load_type, load_unit)) != -1) {
- printf("Checking unit=%d slice=%d partition=%d...",
- currdev.d_unit, currdev.d_disk.slice,
- currdev.d_disk.partition);
+ print_disk_probe_info();
open_result = devsw[devidx]->dv_open(&f,&currdev);
if (open_result == 0) {
- printf("good.\n");
+ printf(" good.\n");
return (0);
}
printf("\n");
}
- printf("Requested disk type/unit not found\n");
+ printf(" Requested disk type/unit not found\n");
return (-1);
}
@@ -393,21 +410,26 @@ main(void)
bzero(__bss_start, _end - __bss_start);
/*
- * Set up console.
- */
+ * Initialise the heap as early as possible. Once this is done,
+ * alloc() is usable. The stack is buried inside us, so this is safe.
+ */
+ setheap((void *)end, (void *)(end + 512 * 1024));
+
+ /*
+ * Set up console.
+ */
cons_probe();
+ printf("Compatible U-Boot API signature found @%x\n", (uint32_t)sig);
- printf("Compatible API signature found @%x\n", (uint32_t)sig);
+ printf("\n");
+ printf("%s, Revision %s\n", bootprog_name, bootprog_rev);
+ printf("(%s, %s)\n", bootprog_maker, bootprog_date);
+ printf("\n");
dump_sig(sig);
dump_addr_info();
- /*
- * Initialise the heap as early as possible. Once this is done,
- * alloc() is usable. The stack is buried inside us, so this is
- * safe.
- */
- setheap((void *)end, (void *)(end + 512 * 1024));
+ meminfo();
/*
* Enumerate U-Boot devices
@@ -416,11 +438,6 @@ main(void)
panic("no U-Boot devices found");
printf("Number of U-Boot devices: %d\n", devs_no);
- printf("\n");
- printf("%s, Revision %s\n", bootprog_name, bootprog_rev);
- printf("(%s, %s)\n", bootprog_maker, bootprog_date);
- meminfo();
-
get_load_device(&load_type, &load_unit, &load_slice, &load_partition);
/*
OpenPOWER on IntegriCloud