Most likely, the "/dev/syscon" file was corrupted. There are two
ways you might be able to recover it from SASH:
Here are the two ways:
a. Directly copy /dev/syscon from one of the Eschatology partitions.
For example:
pname -s 3 "Eschatology 1"
rm -f /dev/syscon /dev/console /dev/systty
cp (0,0,3)/dev/syscon /dev/syscon
ln /dev/syscon /dev/console
ln /dev/syscon /dev/systty
b. Create /dev/syscon from scratch.
rm -f /dev/syscon /dev/console /dev/systty
mknod /dev/syscon c 7 0
chmod 722 /dev/syscon
ln /dev/syscon /dev/console
ln /dev/syscon /dev/systty
Note that "/dev/console", "/dev/syscon", and "/dev/systty" are all hard-linked.