Clean up Apple-II Funicularfile.
Chris Pressey
9 years ago
0 | -- NOTE: we need | |
1 | -- ftp://ftp.apple.asimov.net/pub/apple_II/utility/a2tools-v003.zip | |
2 | -- even then, it needs a bugfix (when reading padded_name) | |
3 | -- TODO: import into Github repository! | |
0 | -- NOTE: this requires toolshelf and assumes gh:catseye/a2tools has been docked | |
4 | 1 | |
5 | 2 | return { |
6 | 3 | platform = Apple_II_Platform, |
19 | 16 | Disk Image 1 = $CWD/system.dsk |
20 | 17 | Slot 6 Autoload = 1 |
21 | 18 | EOF |
22 | # not fantastic because assumes toolshelf | |
23 | cp `toolshelf.py pwd linapple`/splash.bmp . | |
24 | cp `toolshelf.py pwd linapple`/charset40.bmp . | |
19 | ||
20 | # this is less than fantastic, but not sure how else to make sure this works | |
21 | LINAPPLE_DIR=`toolshelf.py pwd linapple` | |
22 | cp $LINAPPLE_DIR/splash.bmp . | |
23 | cp $LINAPPLE_DIR/charset40.bmp . | |
25 | 24 | # this is even less fantastic because no just no |
26 | cp `toolshelf.py pwd linapple`/Master.dsk system.dsk | |
27 | #cp distrepos/apple-befunge/* device8/ | |
25 | # instead, we should be using a2tools to put our things on a bootable disk image | |
26 | cp $LINAPPLE_DIR/Master.dsk system.dsk | |
28 | 27 | ]], |
29 | 28 | } |