diff options
author | RajithaY <rajithax.yerrumsetty@intel.com> | 2017-04-25 03:31:15 -0700 |
---|---|---|
committer | Rajitha Yerrumchetty <rajithax.yerrumsetty@intel.com> | 2017-05-22 06:48:08 +0000 |
commit | bb756eebdac6fd24e8919e2c43f7d2c8c4091f59 (patch) | |
tree | ca11e03542edf2d8f631efeca5e1626d211107e3 /qemu/roms/openbios/forth/admin/banner.fs | |
parent | a14b48d18a9ed03ec191cf16b162206998a895ce (diff) |
Adding qemu as a submodule of KVMFORNFV
This Patch includes the changes to add qemu as a submodule to
kvmfornfv repo and make use of the updated latest qemu for the
execution of all testcase
Change-Id: I1280af507a857675c7f81d30c95255635667bdd7
Signed-off-by:RajithaY<rajithax.yerrumsetty@intel.com>
Diffstat (limited to 'qemu/roms/openbios/forth/admin/banner.fs')
-rw-r--r-- | qemu/roms/openbios/forth/admin/banner.fs | 49 |
1 files changed, 0 insertions, 49 deletions
diff --git a/qemu/roms/openbios/forth/admin/banner.fs b/qemu/roms/openbios/forth/admin/banner.fs deleted file mode 100644 index 5439fc082..000000000 --- a/qemu/roms/openbios/forth/admin/banner.fs +++ /dev/null @@ -1,49 +0,0 @@ -\ 7.4.10 Banner - -defer builtin-logo -defer builtin-banner -0 value suppress-banner? - -:noname - 0 0 -; to builtin-logo - -:noname - builddate s" built on " version s" Welcome to OpenBIOS v" pocket - tmpstrcat tmpstrcat tmpstrcat drop -; to builtin-banner - -: suppress-banner ( -- ) - 1 to suppress-banner? -; - -: banner ( -- ) - suppress-banner - stdout @ ?dup 0= if exit then - - \ draw logo if stdout is a "display" node - dup ihandle>phandle " device_type" rot get-package-property if 0 0 then - " display" strcmp if - drop - else - \ draw logo ( ihandle ) - dup ihandle>phandle " draw-logo" rot find-method if - ( ihandle xt ) - swap >r >r - 0 \ line # - oem-logo? if oem-logo else builtin-logo then - ( 0 addr logo-len ) - 200 = if - d# 64 d# 64 - r> r> call-package - else - r> r> 2drop 2drop - then - else - drop - then - then - - oem-banner? if oem-banner else builtin-banner then - type cr -; |