Difference between revisions of "Constructing pi64"
From Jay's Cafe' Wiki
Jayctheriot (talk | contribs) |
Jayctheriot (talk | contribs) |
||
Line 9: | Line 9: | ||
#Configure booting to self-login CLI | #Configure booting to self-login CLI | ||
<code> | <code> | ||
apt update | apt update<br /> | ||
apt full-upgrade -y | apt full-upgrade -y<br /> | ||
</code> | </code> | ||
'''Begin installing base packages to compile vice-3.2.tar.gz''' | '''Begin installing base packages to compile vice-3.2.tar.gz''' | ||
<code> | <code> | ||
apt install bison flex xa65 libpcap* libsdl1.2* | apt install bison flex xa65 libpcap* libsdl1.2*<br /> | ||
./configure --enable-sdlui --enable-ethernet | ./configure --enable-sdlui --enable-ethernet<br /> | ||
make | make<br /> | ||
sudo make install | sudo make install<br /> | ||
sudo apt install tcpser | sudo apt install tcpser<br /> | ||
sudo reboot | sudo reboot<br /> | ||
</code> | </code> |
Revision as of 18:03, 12 June 2018
Design objectives:
- a functional cycle-appropriate implementation of a C64/C128 with ethernet access on a Raspberry Pi Zero
- Minimal GUI using SDL1 as the base
Concerns
- the C64 or C128 will not perform near 100% of their original speed
- Use retropi as a base install
- Configure booting to self-login CLI
apt update
Begin installing base packages to compile vice-3.2.tar.gz
apt full-upgrade -y
apt install bison flex xa65 libpcap* libsdl1.2*
./configure --enable-sdlui --enable-ethernet
make
sudo make install
sudo apt install tcpser
sudo reboot