[cuberevo] fix query model logic

Origin commit data
------------------
Branch: master
Commit: b7bb43a670
Author: Jacek Jendrzej <overx300@gmail.com>
Date: 2015-04-07 (Tue, 07 Apr 2015)


------------------
No further description and justification available within origin commit message!

------------------
This commit was generated by Migit
This commit is contained in:
Jacek Jendrzej
2015-04-07 21:33:06 +02:00
parent 84e12be31b
commit f0d8517420

View File

@@ -150,16 +150,6 @@ hw_caps_t *get_hwcaps(void)
caps.can_cec = 1;
caps.has_fan = 0;
}
else if (!strncmp(buf, "cuberevo", 8)) {
strcpy(caps.boxvendor, "DUCKBOX");
strcpy(caps.boxname, buf);
caps.can_shutdown = 1;
caps.has_HDMI = 1;
caps.has_SCART = 1;
caps.can_cec = 0;
caps.has_fan = 1;
caps.has_CI = 2;
}
else if (!strncmp(buf, "cuberevo-mini", 14)) {
strcpy(caps.boxvendor, "DUCKBOX");
strcpy(caps.boxname, buf);
@@ -200,6 +190,16 @@ hw_caps_t *get_hwcaps(void)
caps.has_fan = 0;
caps.has_CI = 0;
}
else if (!strncmp(buf, "cuberevo", 8)) {
strcpy(caps.boxvendor, "DUCKBOX");
strcpy(caps.boxname, buf);
caps.can_shutdown = 1;
caps.has_HDMI = 1;
caps.has_SCART = 1;
caps.can_cec = 0;
caps.has_fan = 1;
caps.has_CI = 2;
}
else if (!strncmp(buf, "ipbox9900", 9)) {
strcpy(caps.boxvendor, "DUCKBOX");
strcpy(caps.boxname, buf);