summaryrefslogtreecommitdiffstats
path: root/qemu/roms/openbios/forth/packages
diff options
context:
space:
mode:
authorRajithaY <rajithax.yerrumsetty@intel.com>2017-04-25 03:31:15 -0700
committerRajitha Yerrumchetty <rajithax.yerrumsetty@intel.com>2017-05-22 06:48:08 +0000
commitbb756eebdac6fd24e8919e2c43f7d2c8c4091f59 (patch)
treeca11e03542edf2d8f631efeca5e1626d211107e3 /qemu/roms/openbios/forth/packages
parenta14b48d18a9ed03ec191cf16b162206998a895ce (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/packages')
-rw-r--r--qemu/roms/openbios/forth/packages/Kconfig16
-rw-r--r--qemu/roms/openbios/forth/packages/README11
-rw-r--r--qemu/roms/openbios/forth/packages/build.xml19
-rw-r--r--qemu/roms/openbios/forth/packages/deblocker.fs63
-rw-r--r--qemu/roms/openbios/forth/packages/disklabel.fs22
-rw-r--r--qemu/roms/openbios/forth/packages/obp-tftp.fs22
-rw-r--r--qemu/roms/openbios/forth/packages/packages.fs17
-rw-r--r--qemu/roms/openbios/forth/packages/terminal-emulator.fs23
8 files changed, 0 insertions, 193 deletions
diff --git a/qemu/roms/openbios/forth/packages/Kconfig b/qemu/roms/openbios/forth/packages/Kconfig
deleted file mode 100644
index 16fa30657..000000000
--- a/qemu/roms/openbios/forth/packages/Kconfig
+++ /dev/null
@@ -1,16 +0,0 @@
-
-config PKG_DEBLOCKER
- bool "Deblocker"
- default y
-
-config PKG_DISKLABEL
- bool "Disk Label"
- default y
-
-config PKG_OBP_TFTP
- bool "OBP-TFTP"
- default y
-
-config PKG_TERMINAL_EMULATOR
- bool "Terminal Emulator"
- default y
diff --git a/qemu/roms/openbios/forth/packages/README b/qemu/roms/openbios/forth/packages/README
deleted file mode 100644
index 009f9ec35..000000000
--- a/qemu/roms/openbios/forth/packages/README
+++ /dev/null
@@ -1,11 +0,0 @@
-IEEE 1275-1994 support packages
--------------------------------
-
-These files create the sub nodes of the /packages node. The nodes
-do normally not need an open or close method since their methods are
-called statically.
-
-Currently there are the following support packages:
-* deblocker
-* obp-tftp
-*
diff --git a/qemu/roms/openbios/forth/packages/build.xml b/qemu/roms/openbios/forth/packages/build.xml
deleted file mode 100644
index 16184717e..000000000
--- a/qemu/roms/openbios/forth/packages/build.xml
+++ /dev/null
@@ -1,19 +0,0 @@
-<build>
-
- <!--
- build description for Open Firmware support packages
-
- Copyright (C) 2004-2005 by Stefan Reinauer
- See the file "COPYING" for further information about
- the copyright and warranty status of this work.
- -->
-
- <dictionary name="openbios" target="forth">
- <object source="packages.fs"/>
- <object source="deblocker.fs" condition="PKG_DEBLOCKER"/>
- <object source="disklabel.fs" condition="PKG_DISKLABEL"/>
- <object source="terminal-emulator.fs" condition="PKG_TERM_EMUL"/>
- <object source="obp-tftp.fs" condition="OBP_TFTP"/>
- </dictionary>
-
-</build>
diff --git a/qemu/roms/openbios/forth/packages/deblocker.fs b/qemu/roms/openbios/forth/packages/deblocker.fs
deleted file mode 100644
index 31a37d002..000000000
--- a/qemu/roms/openbios/forth/packages/deblocker.fs
+++ /dev/null
@@ -1,63 +0,0 @@
-\ tag: deblocker support package
-\
-\ Copyright (C) 2003 Stefan Reinauer
-\
-\ See the file "COPYING" for further information about
-\ the copyright and warranty status of this work.
-\
-
-" /packages" find-device
-
-\ The deblocker package makes it easy to implement byte-oriented device
-\ methods, using the block-oriented or record-oriented methods defined by
-\ devices such as disks or tapes. It provides a layer of buffering between
-\ the high-level byte-oriented interface and the low-level block-oriented
-\ interface. deblocker uses the max-transfer, block-size, read-blocks and
-\ write-blocks methods of its parent.
-
-new-device
- " deblocker" device-name
- \ open ( -- flag )
- \ Prepares the package for subsequent use, allocating the buffers used
- \ by the deblocking process based upon the values returned by the parent
- \ instance's max-transfer and block-size methods. Returns -1 if the
- \ operation succeeds, 0 otherwise.
- : open ( -- flag )
-
- ;
-
- \ close ( -- )
- \ Frees all resources that were allocated by open.
- : close ( -- )
- ;
-
- \ read ( adr len -- actual )
- \ Reads at most len bytes from the device into the memory buffer
- \ beginning at adr. Returns actual, the number of bytes actually
- \ read, or 0 if the read operation failed. Uses the parent's read-
- \ blocks method as necessary to satisfy the request, buffering any
- \ unused bytes for the next request.
-
- : read ( adr len -- actual )
- ;
-
- \ Writes at most len bytes from the device into the memory buffer
- \ beginning at adr. Returns actual, the number of bytes actually
- \ read, or 0 if the write operation failed. Uses the parent's write-
- \ blocks method as necessary to satisfy the request, buffering any
- \ unused bytes for the next request.
-
- : write ( adr len -- actual )
- ;
-
- \ Sets the device position at which the next read or write will take
- \ place. The position is specified by the 64-bit number x.position.
- \ Returns 0 if the operation succeeds or -1 if it fails.
-
- : seek ( x.position -- flag )
- ;
-
-finish-device
-
-\ clean up afterwards
-device-end
diff --git a/qemu/roms/openbios/forth/packages/disklabel.fs b/qemu/roms/openbios/forth/packages/disklabel.fs
deleted file mode 100644
index 39aa13e50..000000000
--- a/qemu/roms/openbios/forth/packages/disklabel.fs
+++ /dev/null
@@ -1,22 +0,0 @@
-\ tag: disklabel support package
-\
-\ Copyright (C) 2003 Stefan Reinauer
-\
-\ See the file "COPYING" for further information about
-\ the copyright and warranty status of this work.
-\
-
-" /packages" find-device
-
-\
-\ IEEE 1275 disklabel package
-\
-
-new-device
- " disklabel" device-name
- \ now the methods...
-
-finish-device
-
-\ clean up afterwards
-device-end
diff --git a/qemu/roms/openbios/forth/packages/obp-tftp.fs b/qemu/roms/openbios/forth/packages/obp-tftp.fs
deleted file mode 100644
index 62f0e72e5..000000000
--- a/qemu/roms/openbios/forth/packages/obp-tftp.fs
+++ /dev/null
@@ -1,22 +0,0 @@
-\ tag: tftp support package
-\
-\ Copyright (C) 2003 Stefan Reinauer
-\
-\ See the file "COPYING" for further information about
-\ the copyright and warranty status of this work.
-\
-
-" /packages" find-device
-
-\
-\ IEEE 1275 obp-tftp package
-\
-
-new-device
- " obp-tftp" device-name
- \ now the methods...
-
-finish-device
-
-\ clean up afterwards
-device-end
diff --git a/qemu/roms/openbios/forth/packages/packages.fs b/qemu/roms/openbios/forth/packages/packages.fs
deleted file mode 100644
index 9f79f9e5f..000000000
--- a/qemu/roms/openbios/forth/packages/packages.fs
+++ /dev/null
@@ -1,17 +0,0 @@
-\ tag: /packages sub device tree
-\
-\ Copyright (C) 2003 Stefan Reinauer
-\
-\ See the file "COPYING" for further information about
-\ the copyright and warranty status of this work.
-\
-
-" /" find-device
-
-new-device
- " packages" device-name
- : open true ;
- : close ;
-finish-device
-
-device-end
diff --git a/qemu/roms/openbios/forth/packages/terminal-emulator.fs b/qemu/roms/openbios/forth/packages/terminal-emulator.fs
deleted file mode 100644
index 0ecd348be..000000000
--- a/qemu/roms/openbios/forth/packages/terminal-emulator.fs
+++ /dev/null
@@ -1,23 +0,0 @@
-\ tag: terminal emulator support package
-\
-\ Copyright (C) 2003 Stefan Reinauer
-\
-\ See the file "COPYING" for further information about
-\ the copyright and warranty status of this work.
-\
-
-" /packages" find-device
-
-\
-\ IEEE 1275 terminal-emulator package
-\
-
-new-device
- " terminal-emulator" device-name
- \ now the methods...
-
-finish-device
-
-\ clean up afterwards
-
-device-end