mirror of
https://github.com/opnsense/src.git
synced 2026-06-08 16:22:46 -04:00
A comment in subr_devmap.c mentions that devmap_print_table() should
be called on bootverbose. Do so on RISV-V too. Submitted by: Nicholas O'Brien <nickisobrien_gmail.com> Reviewed by: imp, kp Sponsored by: Axiado Differential Revision: https://reviews.freebsd.org/D21998
This commit is contained in:
parent
1b6ddd9404
commit
d195cbc09d
1 changed files with 2 additions and 0 deletions
|
|
@ -158,6 +158,8 @@ cpu_startup(void *dummy)
|
|||
printf("avail memory = %ju (%ju MB)\n",
|
||||
ptoa((uintmax_t)vm_free_count()),
|
||||
ptoa((uintmax_t)vm_free_count()) / (1024 * 1024));
|
||||
if (bootverbose)
|
||||
devmap_print_table();
|
||||
|
||||
bufinit();
|
||||
vm_pager_bufferinit();
|
||||
|
|
|
|||
Loading…
Reference in a new issue