main: log architecture at startup

This commit is contained in:
Daniel Eklöf 2020-06-09 20:35:21 +02:00
parent 8624a8823c
commit 7fb2da3cf9
No known key found for this signature in database
GPG key ID: 5BBD4992C116573F

9
main.c
View file

@ -11,6 +11,7 @@
#include <sys/types.h>
#include <sys/sysinfo.h>
#include <sys/utsname.h>
#include <fcntl.h>
#include <fcft/fcft.h>
@ -305,6 +306,14 @@ main(int argc, char *const *argv)
LOG_INFO("version: %s", FOOT_VERSION);
{
struct utsname name;
if (uname(&name) < 0)
LOG_ERRNO("uname() failed");
else
LOG_INFO("arch: %s", name.machine);
}
struct config conf = {NULL};
if (!config_load(&conf, conf_path)) {
config_free(conf);