summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorHelge Deller <deller@gmx.de>2019-08-02 12:09:40 +0200
committerHelge Deller <deller@gmx.de>2019-08-02 12:09:40 +0200
commit964bca53e3b53bde102a9d2af11e7da01e638c70 (patch)
tree5a7077b48778866202598e041646c45c6b7cae7c
parent3a408c8ef9b2f2e77793bb504bffa672836e8b73 (diff)
downloadpalo-964bca53e3b53bde102a9d2af11e7da01e638c70.tar.gz
iplboot: Drop debug info about entry start and number of segments
Signed-off-by: Helge Deller <deller@gmx.de>
-rw-r--r--ipl/ipl.c3
1 files changed, 2 insertions, 1 deletions
diff --git a/ipl/ipl.c b/ipl/ipl.c
index 2a25e7c..968f3e1 100644
--- a/ipl/ipl.c
+++ b/ipl/ipl.c
@@ -175,7 +175,8 @@ load_kernel(int fd, unsigned *entryp, int *wide)
loadable.entry = PHYS(loadable.entry);
loadable.first = PHYS(loadable.first);
- printf("\nEntry %08x first %08x n %d\n",
+ if (Debug)
+ printf("\nEntry %08x first %08x n %d\n",
loadable.entry, loadable.first, loadable.n);
malloc_start = malloc_aligned(0, 1);