mirror of
https://github.com/freebsd/freebsd-src.git
synced 2024-12-02 12:53:33 +00:00
Fix 64-bit build of libofw.
Adjust a couple of printf() lines that deal with dumping out addresses
to cast to uintmax_t.
This allows building a 64-bit libofw for use in things like a future
Petitboot loader for PowerPC64, and other FDT platforms that require
a 64-bit loader binary and want to use forth.
Sponsored by: Tag1 Consulting, Inc.
(cherry picked from commit 3e91d8268f
)
This commit is contained in:
parent
ce416dfad5
commit
d48dfb3318
@ -80,11 +80,11 @@ ofw_memmap(int acells)
|
||||
"Physical Range", "#Pages", "Mode");
|
||||
|
||||
for (i = 0; i < nmapping; i++) {
|
||||
sprintf(lbuf, "%08x-%08x\t%08x-%08x\t%8d\t%6x\n",
|
||||
mapptr[i].va,
|
||||
mapptr[i].va + mapptr[i].len,
|
||||
mapptr[i].pa,
|
||||
mapptr[i].pa + mapptr[i].len,
|
||||
sprintf(lbuf, "%08jx-%08jx\t%08jx-%08jx\t%8d\t%6x\n",
|
||||
(uintmax_t)mapptr[i].va,
|
||||
(uintmax_t)mapptr[i].va + mapptr[i].len,
|
||||
(uintmax_t)mapptr[i].pa,
|
||||
(uintmax_t)mapptr[i].pa + mapptr[i].len,
|
||||
mapptr[i].len / 0x1000,
|
||||
mapptr[i].mode);
|
||||
if (pager_output(lbuf))
|
||||
@ -98,11 +98,11 @@ ofw_memmap(int acells)
|
||||
"Physical Range", "#Pages", "Mode");
|
||||
|
||||
for (i = 0; i < nmapping; i++) {
|
||||
sprintf(lbuf, "%08x-%08x\t%08x-%08x\t%8d\t%6x\n",
|
||||
mapptr2[i].va,
|
||||
mapptr2[i].va + mapptr2[i].len,
|
||||
mapptr2[i].pa_lo,
|
||||
mapptr2[i].pa_lo + mapptr2[i].len,
|
||||
sprintf(lbuf, "%08jx-%08jx\t%08jx-%08jx\t%8d\t%6x\n",
|
||||
(uintmax_t)mapptr2[i].va,
|
||||
(uintmax_t)mapptr2[i].va + mapptr2[i].len,
|
||||
(uintmax_t)mapptr2[i].pa_lo,
|
||||
(uintmax_t)mapptr2[i].pa_lo + mapptr2[i].len,
|
||||
mapptr2[i].len / 0x1000,
|
||||
mapptr2[i].mode);
|
||||
if (pager_output(lbuf))
|
||||
|
Loading…
Reference in New Issue
Block a user