Skip to content

Instantly share code, notes, and snippets.

@tuklusan
Created January 15, 2018 22:53
Show Gist options
  • Save tuklusan/2c1d79cec1ee390b9452798486239853 to your computer and use it in GitHub Desktop.
Save tuklusan/2c1d79cec1ee390b9452798486239853 to your computer and use it in GitHub Desktop.
Build sheep_net.ko networking kernel module for SheepShaver Power Macintosh G4 emulator for Classic Mac OS 9 emulation and connect over AppleTalk using Netatalk: See http://bit.ly/MacOS9-SheepShaver
#!/bin/bash
#
# build-sheep-net.sh
#
# Builds sheep_net.ko kernel module
# build-sheepshaver.sh should have been run previously
#
# ---
# Supratim Sanyal
# Details: http://bit.ly/MacOS9-SheepShaver
# ---
if [ -d ~/sheepshaver.build/macemu/SheepShaver/src/Unix/Linux/NetDriver ]; then
echo Netdriver source directory present.
else
echo "Run build-sheepshaver.sh first"
exit 0
fi
cd ~/sheepshaver.build/macemu/SheepShaver/src/Unix/Linux/NetDriver
make
date
ls -l ~/sheepshaver.build/macemu/SheepShaver/src/Unix/Linux/NetDriver/sheep_net.ko
echo now run install-sheep-net.sh
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment