• Hello MLAers! We've re-enabled auto-approval for accounts. If you are still waiting on account approval, please check this thread for more information.

Search results

  1. uyjulian

    Looks like TLS 1.3 has been made to work on Windows 3.1. Can the same be done for System 7?

    You can use a ssh client on your Mac if you like coding on your Mac. This allows you to use e.g. retro68 and nano from your Mac. https://68kmla.org/bb/index.php?threads/ssheven-a-modern-ssh-client-for-mac-os-7-8-9.38593/
  2. uyjulian

    In-System-Programmable ROM SIMM

    An alternative would be to expose MTP. Then you can change files without eject/reinsert...
  3. uyjulian

    Macintosh IIci Logicboard recreation

    Nice I have some bombed boards I could use for ports. Some additional ideas I'll throw in: Integrate ram and e.g. zuluscsi on the mainboard mini-ITX/ATX compatible layout
  4. uyjulian

    Installer SDK tips?

    If there is a mechanism like NSIS plugins, you could use that to handle your driver installation code.
  5. uyjulian

    MAME/SNES Sound & Music Rippers

    vgmtrans? https://github.com/vgmtrans/vgmtrans Or https://code.google.com/archive/p/loveemu/
  6. uyjulian

    Getting rid of the 'Your clock is not set to the correct time' alert dialog after System 7 boots

    Probably a more foolproof method would be to set the time to the last modified of the INIT, then modify the last modified of the INIT on shutdown
  7. uyjulian

    alternatives for WPA2 networking under OS9

    I'm not sure if RNDIS or USB-ECM drivers exist for OS9, but if they do, you could probably skip the ethernet adapter and just connect the phone directly for tethering.
  8. uyjulian

    LocalTalk... but faster?

    I wonder if it would be possible to use both the modem and the printer serial ports together for faster speeds.
  9. uyjulian

    Porting LinuxDoom to System 7 (or trying to) - progress and questions

    alloca is usually implemented as a compiler builtin. It allocates a buffer on the stack. There is usually no library associated with it In a lot of cases you can usually replace alloca calls with malloc / free. And it may be needed if you are low on stack space
  10. uyjulian

    Porting LinuxDoom to System 7 (or trying to) - progress and questions

    You can use Universal Interfaces to have support for those post system-7 features in Retro68
  11. uyjulian

    Motorola 68060 upgrade

    I believe the missing part to get any accelerator working on Macs is timing/arbitration related to interfacing with the rest of the hardware. That's most likely why stuff like floppy and SCSI have some issues working. If you just want to run software, but faster, without original hardware, then...
  12. uyjulian

    Looks like TLS 1.3 has been made to work on Windows 3.1. Can the same be done for System 7?

    RSA signatures are definitely slow, but ed25519 signatures might give you better performance.
  13. uyjulian

    A/UX 3.1.1 Post Install Scripts

    Whoops, another mistake: forgot of= pax -w -p /path/to/directory | dd bs=16384 of=/dev/rdsk/c1d0s31
  14. uyjulian

    [A/UX] Drop-in clean A/UX install image for SCSI2SD

    mount /dev/dsk/cXd0sY /your/mountpoint where X is the SCSI id, Y is the slice, and /your/mountpoint is the mountpoint If you are not sure of the slice, dp /dev/dsk/cXd0s31 (X is the SCSI id. slice=31 is the whole disk) Type "P" as the command and this will print out the partition table...
  15. uyjulian

    [A/UX] Drop-in clean A/UX install image for SCSI2SD

    Yes, boot into MacOS to run the LaCie Silverlining driver installer, and set the 1st drive as the target The sad mac error is a result of a bad disk driver on the first drive
  16. uyjulian

    [A/UX] Drop-in clean A/UX install image for SCSI2SD

    On bluescsi, you need to do the following 1. Split the image: https://68kmla.org/bb/index.php?threads/announcing-scsi2sd_to_hda-a-quick-and-dirty-script-i-wrote-to-convert-scsi2sd-images-to-hda-files-compatible-with-rascsi-bluescsi.39733/ 2. Install LaCie Silverlining disk driver on the first drive
  17. uyjulian

    Use cases for a new AppleTalk stack

    Actually, (at least on Linux) it is possible to point all of a FTP server, a NFS server, a SMB server, and a AFP server at the same location at the same time. So, probably in macOS, running the existing file server and Netatalk2 on the same directory shouldn't be a problem.
  18. uyjulian

    A/UX 3.1.1 Post Install Scripts

    Some mistakes in the command: file operand was missing and using rdsk is faster. pax -w -p /path/to/directory | dd bs=16384 /dev/rdsk/c1d0s31
  19. uyjulian

    A/UX 3.1.1 Post Install Scripts

    More tidbits... If you use e.g. /dev/dsk/c1d0s31 (SCSI ID is 1, slice is 31) then the offset will start at 0 instead of 0x19800 bytes. This means you can simply remove "offset" or "seek" options, reducing the complexity. The tar data appears to be there immediately in the image and seems to...
  20. uyjulian

    announcing beigeATX for 10 pin PSU Macs

    Works great, thanks
Back
Top