--- a/sys/src/9/boot/boot.c Tue Mar 11 23:46:27 2014 +++ b/sys/src/9/boot/boot.c Wed Feb 11 11:32:11 2026 @@ -233,6 +233,7 @@ int fd, afd, islocal, ishybrid; char *rsp; Method *mp; + char buf[32]; fmtinstall('r', errfmt); opencons(); @@ -252,6 +253,11 @@ }ARGEND readfile("#e/cputype", cputype, sizeof(cputype)); + readfile("#e/service", buf, sizeof(buf)); + if(strcmp(buf, "cpu") == 0) + cpuflag = 1; + else if(strcmp(buf, "terminal") == 0) + cpuflag = 0; /* * set up usb keyboard & mouse, if any.