]> code.ossystems Code Review - openembedded-core.git/commitdiff
meta/classes: fix bb.build.FuncFailed typos
authorJonathan Liu <net147@gmail.com>
Sun, 7 Aug 2016 08:34:28 +0000 (18:34 +1000)
committerRichard Purdie <richard.purdie@linuxfoundation.org>
Sun, 7 Aug 2016 21:18:21 +0000 (22:18 +0100)
Signed-off-by: Jonathan Liu <net147@gmail.com>
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
meta/classes/grub-efi.bbclass
meta/classes/gummiboot.bbclass
meta/classes/syslinux.bbclass
meta/classes/systemd-boot.bbclass

index b8c20dd8a69e39335c1d9ae79a055ce69736d33b..ae8ee382cd4c545abc602e3602bbc0c9e4cc7411 100644 (file)
@@ -95,7 +95,7 @@ python build_efi_cfg() {
     try:
          cfgfile = open(cfile, 'w')
     except OSError:
-        raise bb.build.funcFailed('Unable to open %s' % (cfile))
+        raise bb.build.FuncFailed('Unable to open %s' % (cfile))
 
     cfgfile.write('# Automatically created by OE\n')
 
index 14fa4cfaa02ac8be78a9a6fc73b28ebf762e45d9..e6eba17da1161508f11d82cf1716e9d5d01eb268 100644 (file)
@@ -74,7 +74,7 @@ python build_efi_cfg() {
     try:
          cfgfile = open(cfile, 'w')
     except OSError:
-        raise bb.build.funcFailed('Unable to open %s' % (cfile))
+        raise bb.build.FuncFailed('Unable to open %s' % (cfile))
 
     cfgfile.write('# Automatically created by OE\n')
     cfgfile.write('default %s\n' % (labels.split()[0]))
@@ -97,7 +97,7 @@ python build_efi_cfg() {
         try:
             entrycfg = open(entryfile, "w")
         except OSError:
-            raise bb.build.funcFailed('Unable to open %s' % (entryfile))
+            raise bb.build.FuncFailed('Unable to open %s' % (entryfile))
         localdata.setVar('OVERRIDES', label + ':' + overrides)
         bb.data.update_data(localdata)
 
index 1d310dddf273cc73928c4be4832cdc45119588ae..fa3e3ec8a4fe512f60fac67265c131eafddc2bb5 100644 (file)
@@ -105,7 +105,7 @@ python build_syslinux_cfg () {
     try:
         cfgfile = open(cfile, 'w')
     except OSError:
-        raise bb.build.funcFailed('Unable to open %s' % (cfile))
+        raise bb.build.FuncFailed('Unable to open %s' % (cfile))
 
     cfgfile.write('# Automatically created by OE\n')
 
index 9e9398a2a5aeaa7e30c97de6b04d3dee1cee2e89..b550b61a7cb948348f05a9f3fb781078b5c09bb1 100644 (file)
@@ -77,7 +77,7 @@ python build_efi_cfg() {
     try:
          cfgfile = open(cfile, 'w')
     except OSError:
-        raise bb.build.funcFailed('Unable to open %s' % (cfile))
+        raise bb.build.FuncFailed('Unable to open %s' % (cfile))
 
     cfgfile.write('# Automatically created by OE\n')
     cfgfile.write('default %s\n' % (labels.split()[0]))
@@ -100,7 +100,7 @@ python build_efi_cfg() {
         try:
             entrycfg = open(entryfile, "w")
         except OSError:
-            raise bb.build.funcFailed('Unable to open %s' % (entryfile))
+            raise bb.build.FuncFailed('Unable to open %s' % (entryfile))
         localdata.setVar('OVERRIDES', label + ':' + overrides)
         bb.data.update_data(localdata)