[U-Boot] [PATCH v3 3/4] tools: moveconfig: Fix bug in make Slot.poll()...

Joe Hershberger joe.hershberger at ni.com
Fri Jun 10 21:53:31 CEST 2016


When this was moved out of add(), it should have started using 'self.'

Signed-off-by: Joe Hershberger <joe.hershberger at ni.com>
---

Changes in v3: None
Changes in v2: None

 tools/moveconfig.py | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/tools/moveconfig.py b/tools/moveconfig.py
index 4832b86..7d1e1ea 100755
--- a/tools/moveconfig.py
+++ b/tools/moveconfig.py
@@ -688,7 +688,7 @@ class Slot:
         """Run 'make <board>_defconfig' to create the .config file."""
 
         cmd = list(self.make_cmd)
-        cmd.append(defconfig)
+        cmd.append(self.defconfig)
         self.ps = subprocess.Popen(cmd, stdout=self.devnull,
                                    stderr=subprocess.PIPE)
         self.state = STATE_DEFCONFIG
-- 
1.7.11.5



More information about the U-Boot mailing list