Long story short:
SLIP/CSLIP (pre-PPP connections) can be used by some older OSes to connect to Internet and I am wandering if it would be possible to get this option among the PPP/modem/console ones in the OSD for cores who support UART (C64/Minimig/ao486/ST etc) ? And what else would it take except the Linux image and /sbin/uartmode script modifications ?
What I did to get SLIP/CSLIP support (again, thank you @BinaryBond007) :
Linux side - modified /arch/arm/configs/MiSTer_defconfig to include:
Code: Select all
CONFIG_SLIP=y
CONFIG_SLIP_COMPRESSED=y
CONFIG_SLIP_SMART=y
CONFIG_SLIP_MODE_SLIP6=y
Code: Select all
slip_speed=$(cat /tmp/SLIP)
taskset 1 slattach -p slip -s $slip_speed /dev/ttyS1
ifconfig sl0 $localip pointopoint $remoteip
echo "Starting slip @ $slip_speed BPS..."
Now, I know this is a niche stuff for networking supporting cores, but I would like to see it as an option if possible