summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--bitbake/lib/toaster/orm/models.py10
1 files changed, 6 insertions, 4 deletions
diff --git a/bitbake/lib/toaster/orm/models.py b/bitbake/lib/toaster/orm/models.py
index 53b9e3a024..f60d138fe9 100644
--- a/bitbake/lib/toaster/orm/models.py
+++ b/bitbake/lib/toaster/orm/models.py
@@ -74,11 +74,13 @@ class Task(models.Model):
74 (SSTATE_RESTORED, 'Restored'), # succesfully restored 74 (SSTATE_RESTORED, 'Restored'), # succesfully restored
75 ) 75 )
76 76
77 CODING_NOEXEC = 0 77 CODING_NA = 0
78 CODING_PYTHON = 1 78 CODING_NOEXEC = 1
79 CODING_SHELL = 2 79 CODING_PYTHON = 2
80 CODING_SHELL = 3
80 81
81 TASK_CODING = ( 82 TASK_CODING = (
83 (CODING_NA, 'N/A'),
82 (CODING_NOEXEC, 'NoExec'), 84 (CODING_NOEXEC, 'NoExec'),
83 (CODING_PYTHON, 'Python'), 85 (CODING_PYTHON, 'Python'),
84 (CODING_SHELL, 'Shell'), 86 (CODING_SHELL, 'Shell'),
@@ -110,7 +112,7 @@ class Task(models.Model):
110 task_name = models.CharField(max_length=100) 112 task_name = models.CharField(max_length=100)
111 source_url = models.FilePathField(max_length=255, blank=True) 113 source_url = models.FilePathField(max_length=255, blank=True)
112 work_directory = models.FilePathField(max_length=255, blank=True) 114 work_directory = models.FilePathField(max_length=255, blank=True)
113 script_type = models.IntegerField(choices=TASK_CODING, default=CODING_NOEXEC) 115 script_type = models.IntegerField(choices=TASK_CODING, default=CODING_NA)
114 line_number = models.IntegerField(default=0) 116 line_number = models.IntegerField(default=0)
115 disk_io = models.IntegerField(null=True) 117 disk_io = models.IntegerField(null=True)
116 cpu_usage = models.DecimalField(max_digits=6, decimal_places=2, null=True) 118 cpu_usage = models.DecimalField(max_digits=6, decimal_places=2, null=True)