From 10eb07526dd243d48ea251b190594dbf7336ba32 Mon Sep 17 00:00:00 2001 From: Yann Sionneau Date: Thu, 2 Jul 2015 17:19:55 +0200 Subject: [PATCH] bios: show memtest command in help --- software/bios/main.c | 3 +++ 1 file changed, 3 insertions(+) diff --git a/software/bios/main.c b/software/bios/main.c index 9f80f5f02..104c7f355 100644 --- a/software/bios/main.c +++ b/software/bios/main.c @@ -327,6 +327,9 @@ static void help(void) puts("flashboot - boot from flash"); #endif puts("revision - display revision"); +#ifdef CSR_SDRAM_BASE + puts("memtest - run a memory test"); +#endif } static char *get_token(char **str)