add tpmver detection
This commit is contained in:
parent
a7f3965da6
commit
9a6415235d
@ -3,6 +3,7 @@
|
|||||||
|
|
||||||
#include <stdint.h>
|
#include <stdint.h>
|
||||||
#include <stddef.h>
|
#include <stddef.h>
|
||||||
|
#include <stdlib.h>
|
||||||
|
|
||||||
#include "tpm.h"
|
#include "tpm.h"
|
||||||
|
|
||||||
@ -39,4 +40,19 @@ const char* getFirmwareVersion(){
|
|||||||
// uint32_t getKernelVersion(){
|
// uint32_t getKernelVersion(){
|
||||||
// }
|
// }
|
||||||
|
|
||||||
|
// this is kinda shitty, but until the TPM2 API is done, this is how we have to do it
|
||||||
|
const char* getTpmVersion(){
|
||||||
|
char cmd[] = "tpmc tpmver";
|
||||||
|
static char output[5];
|
||||||
|
|
||||||
|
FILE* fp = popen(cmd, "r");
|
||||||
|
fgets(output, sizeof(output), fp);
|
||||||
|
fclose(fp);
|
||||||
|
|
||||||
|
trim_newline(output);
|
||||||
|
|
||||||
|
return output;
|
||||||
|
}
|
||||||
|
|
||||||
|
|
||||||
#endif
|
#endif
|
@ -2,6 +2,6 @@
|
|||||||
#define UI_H
|
#define UI_H
|
||||||
|
|
||||||
void ui_flash(char* flashtype);
|
void ui_flash(char* flashtype);
|
||||||
void ui_header(const char* fwver, char* kernver, char* tpmver, char* fwmp, char* gscver, char* gsctype);
|
void ui_header(const char* fwver, char* kernver, const char* tpmver, char* fwmp, char* gscver, char* gsctype);
|
||||||
|
|
||||||
#endif
|
#endif
|
@ -14,7 +14,7 @@ int main(int argc, char **argv) {
|
|||||||
// example values for testing
|
// example values for testing
|
||||||
const char* fwver = getFirmwareVersion();
|
const char* fwver = getFirmwareVersion();
|
||||||
char* kernver = "0x00010001";
|
char* kernver = "0x00010001";
|
||||||
char* tpmver = "2.0";
|
const char* tpmver = getTpmVersion();
|
||||||
char* fwmp = "0x1";
|
char* fwmp = "0x1";
|
||||||
char* gscver = "0.5.229";
|
char* gscver = "0.5.229";
|
||||||
char* gsctype = "Cr50";
|
char* gsctype = "Cr50";
|
||||||
|
@ -75,7 +75,7 @@ void ui_flash(char* flashtype) {
|
|||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
void ui_header(const char* fwver, char* kernver, char* tpmver, char* fwmp, char* gscver, char* gsctype){
|
void ui_header(const char* fwver, char* kernver, const char* tpmver, char* fwmp, char* gscver, char* gsctype){
|
||||||
printf("KVS: Kernel Version Switcher (codename Maglev, bid: 2.0.0))\n");
|
printf("KVS: Kernel Version Switcher (codename Maglev, bid: 2.0.0))\n");
|
||||||
printf("FW Version: %s\n", fwver);
|
printf("FW Version: %s\n", fwver);
|
||||||
printf("Kernel Version: %s\n", kernver);
|
printf("Kernel Version: %s\n", kernver);
|
||||||
|
Loading…
x
Reference in New Issue
Block a user