From f32b634c1622fc03fb733d41fbaeda26ae5661a5 Mon Sep 17 00:00:00 2001 From: Ajay Nath Date: Tue, 22 Sep 2020 09:58:03 -0400 Subject: [PATCH] Updated per issue #70 --- configs/swerv.config | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/configs/swerv.config b/configs/swerv.config index 36a9507..d4f4dc5 100755 --- a/configs/swerv.config +++ b/configs/swerv.config @@ -1959,8 +1959,9 @@ sub dump_whisper_config{#{{{ collect_mem_protection("data", $config, \@data_mem_prot); $jh{memmap}{inst} = [@inst_mem_prot] if @inst_mem_prot; $jh{memmap}{data} = [@data_mem_prot] if @data_mem_prot; - foreach my $tag (qw ( size page_size serialio )) { - $jh{memmap}{tag} = $config{memmap}{ta} if exists $config{memmap}{tag}; + $config{memmap}{consoleio} = $config{memmap}{serialio} if exists $config{memmap}{serialio}; + foreach my $tag (qw (size page_size serialio consoleio)) { + $jh{memmap}{$tag} = $config{memmap}{$tag} if exists $config{memmap}{$tag}; } # Collect load/store-error rollback parameter.