diff options
author | Darren Hart <dvhart@linux.intel.com> | 2011-04-28 21:49:31 -0700 |
---|---|---|
committer | Richard Purdie <richard.purdie@linuxfoundation.org> | 2011-05-04 00:54:37 +0100 |
commit | fc934af7c843a899f41d43fdb239d255da777903 (patch) | |
tree | b3a9391af053141103455de4661f059e91bea035 /meta/classes/srec.bbclass | |
parent | 0e2eb05f46192e179912160cc557f274148dcf15 (diff) | |
download | poky-fc934af7c843a899f41d43fdb239d255da777903.tar.gz |
logging: update existing oe* logging users to the bb* interface
The new bash logging class provides bbnote, bbwarn, bbfatal, and bbdebug
replacements (as well as bbplain and bberror) for the oe* equivalents. Use the
new bb* API in preparation to delete the oe* logging API.
This patch was automatically generated by a sed script. The result has been
visually inspected and used to build core-image-sato for qemux86.
(From OE-Core rev: a1f09fce5caba389d0484b169f0cde85d64514fa)
Signed-off-by: Darren Hart <dvhart@linux.intel.com>
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
Diffstat (limited to 'meta/classes/srec.bbclass')
-rw-r--r-- | meta/classes/srec.bbclass | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/meta/classes/srec.bbclass b/meta/classes/srec.bbclass index a869a4f1f3..390d5abb3a 100644 --- a/meta/classes/srec.bbclass +++ b/meta/classes/srec.bbclass | |||
@@ -14,7 +14,7 @@ do_srec[nostamp] = "1" | |||
14 | 14 | ||
15 | do_srec () { | 15 | do_srec () { |
16 | if [ ${SREC_VMAADDR} = "" ] ; then | 16 | if [ ${SREC_VMAADDR} = "" ] ; then |
17 | oefatal Cannot do_srec without SREC_VMAADDR defined. | 17 | bbfatal Cannot do_srec without SREC_VMAADDR defined. |
18 | fi | 18 | fi |
19 | for type in ${IMAGE_FSTYPES}; do | 19 | for type in ${IMAGE_FSTYPES}; do |
20 | for skiptype in ${SREC_SKIP}; do | 20 | for skiptype in ${SREC_SKIP}; do |