aboutsummaryrefslogtreecommitdiff
path: root/lib/libhvcall/hvcall.code
diff options
context:
space:
mode:
authorNikunj A Dadhania <nikunj@linux.vnet.ibm.com>2013-11-21 11:14:54 +0530
committerNikunj A Dadhania <nikunj@linux.vnet.ibm.com>2013-12-16 11:56:42 +0530
commit79f0600b9aa14e5a52e6c8428b0ce0c3e24cd480 (patch)
tree92d34dada75869d0ef9d4d448e4daa0287e61500 /lib/libhvcall/hvcall.code
parente086e9992c26bc23cd75dfad2239949c10da1fb1 (diff)
downloadSLOF-79f0600b9aa14e5a52e6c8428b0ce0c3e24cd480.zip
SLOF-79f0600b9aa14e5a52e6c8428b0ce0c3e24cd480.tar.gz
SLOF-79f0600b9aa14e5a52e6c8428b0ce0c3e24cd480.tar.bz2
Output banner and initial display output in VNC window
Initial display output does not show up in the VGA/VNC window. Create replay buffer to store the initial output and when vga/vnc console starts, dump the buffer there. Signed-off-by: Nikunj A Dadhania <nikunj@linux.vnet.ibm.com>
Diffstat (limited to 'lib/libhvcall/hvcall.code')
-rw-r--r--lib/libhvcall/hvcall.code5
1 files changed, 5 insertions, 0 deletions
diff --git a/lib/libhvcall/hvcall.code b/lib/libhvcall/hvcall.code
index 9bd47c6..6d70b3c 100644
--- a/lib/libhvcall/hvcall.code
+++ b/lib/libhvcall/hvcall.code
@@ -110,3 +110,8 @@ PRIM(hv_X2d_cas)
unsigned long vec = TOS.u;
TOS.u = hv_cas(vec, buf, size);
MIRP
+
+PRIM(get_X2d_print_X2d_version)
+ unsigned long addr = TOS.u; POP;
+ get_print_banner(addr);
+MIRP