Commit 5dbb5e7f5aa6dfbf2767a0209ea98ace31d7bc4c

Con Kolivas 2014-03-11T00:32:41

Whitelist all firmwares <= 0.5 on hfa for software rolling of ntime.

1
2
3
4
5
6
7
8
9
10
11
12
13
diff --git a/driver-hashfast.c b/driver-hashfast.c
index 9ba1d9a..6e9de97 100644
--- a/driver-hashfast.c
+++ b/driver-hashfast.c
@@ -1696,7 +1696,7 @@ restart:
 		/* Older firmwares actually had ntime rolling disabled so we
 		 * can roll the work ourselves here to minimise the amount of
 		 * work we need to generate. */
-		if (info->firmware_version < 0.5 && base_work->drv_rolllimit > jobs) {
+		if (info->firmware_version < 0.6 && base_work->drv_rolllimit > jobs) {
 			base_work->drv_rolllimit--;
 			roll_work(base_work);
 			work = make_clone(base_work);