Hello, With the sudden glut of Igel thin clients being seen at the moment, I invested and found to my pleasure that 9front runs nicely on them These are based on AMD X86  SOCs, so I modified devarch.c (/sys/src/9/pc) to include them, and ask that they be considered for addition. The patch is attached, but is so short I’ll put it here verbatim. diff e52c3b4a5ba1574b1ff65e134fb9118fe2a86bba uncommitted --- a/sys/src/9/pc/devarch.c +++ b/sys/src/9/pc/devarch.c @@ -435,6 +435,8 @@         { 6,    -1,     11,     "AMD-Athlon", },/* guesswork */         { 0xF,  -1,     11,     "AMD-K8", },    /* guesswork */         { 0x1F, -1,     11,     "AMD-K10", },   /* guesswork */ +       { 22,   0,      11,     "AMD Jaguar", }, +       { 22,   3,      11,     "AMD Puma", },         { 23,   1,      13,     "AMD Ryzen" },         { -1,   -1,     11,     "unknown", },   /* total default */ Regards, Dave.