diff options
author | Peter Lemenkov <lemenkov@gmail.com> | 2022-04-30 18:43:17 +0200 |
---|---|---|
committer | Stefan Reinauer <stefan.reinauer@coreboot.org> | 2023-06-10 00:25:04 +0000 |
commit | ac0e7448e423fd2b125e147a70e3d45977fd4c58 (patch) | |
tree | a5b3b31f18d8e278eb18b4a53913fe723c1ecd64 | |
parent | 8da40efea393d576aa78d6b24b6155539b66bcae (diff) |
util/inteltool: suggest booting with iomem=relaxed
Signed-off-by: Peter Lemenkov <lemenkov@gmail.com>
Change-Id: Ib80efd7d1ba516cb0ae4bdb86f95877855195ce0
Reviewed-on: https://review.coreboot.org/c/coreboot/+/63999
Reviewed-by: Stefan Reinauer <stefan.reinauer@coreboot.org>
Tested-by: build bot (Jenkins) <no-reply@coreboot.org>
-rw-r--r-- | util/inteltool/rootcmplx.c | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/util/inteltool/rootcmplx.c b/util/inteltool/rootcmplx.c index eee6899753..c9703e2859 100644 --- a/util/inteltool/rootcmplx.c +++ b/util/inteltool/rootcmplx.c @@ -135,6 +135,7 @@ int print_rcba(struct pci_dev *sb) if (rcba == NULL) { perror("Error mapping RCBA"); + printf("Try booting with iomem=relaxed.\n"); exit(1); } |