git @ Cat's Eye Technologies Funicular / 43160f4
Inch yet closer. Chris Pressey 7 years ago
2 changed file(s) with 7 addition(s) and 17 deletion(s). Raw diff Collapse all Expand all
1111 DISTREPOS="
1212 catseye/apple-befunge
1313 "
14
15 setup_script() {
16 export CWD=`pwd`
17
18 cat >linapple.conf <<EOF
19 Computer Emulation = 1
20 Slot 6 Directory = $CWD
21 Disk Image 1 = $CWD/system.dsk
22 Slot 6 Autoload = 1
23 EOF
24 }
00 # Apple ][+ w/ Linapple w/ certain options
11
2 DISTFILE_URL='https://github.com/timob/linapple/archive/master.zip'
2 DISTFILE_URL='https://github.com/linappleii/linapple/archive/master.zip'
33
44 # floppies only, for now
55 platform_initsys() {
1515 }
1616
1717 platform_start() {
18 linapple
18 linapple -d1 "${SYSTEM_IMAGE}" -autoboot
1919 }
2020
2121 platform_setup() {
22 linapple
22 echo "Not starting emulator. No setup image required."
23 #linapple -d1 "${SYSTEM_IMAGE}" -autoboot
2324 }
2425
2526 platform_dist() {
26 linapple
27 echo "Not starting emulator. No in-architecture dist steps required."
2728 }
2829
2930 platform_distboot() {
30 linapple
31 linapple -d1 "${DIST_IMAGE}" -autoboot
3132 }
3233
3334 platform_install() {
34 echo "No install step. Installation will happen during setup."
35 cp Master.dsk "${SYSTEM_IMAGE}"
3536 }