No description
Find a file
2018-02-04 23:32:50 +01:00
.vs Merge from dev to master 2018-02-04 21:02:03 +01:00
AndroidData Merge from dev to master 2018-02-04 21:02:03 +01:00
conf Add empty directory for configuration, save state ... 2015-05-23 21:58:09 +00:00
data Merge from dev to master 2018-02-04 21:02:03 +01:00
kickstarts Add empty directory for configuration, save state ... 2015-05-23 21:58:09 +00:00
nbproject Merge from dev to master 2018-02-04 21:02:03 +01:00
savestates Add empty directory for configuration, save state ... 2015-05-23 21:58:09 +00:00
screenshots Add empty directory for configuration, save state ... 2015-05-23 21:58:09 +00:00
src Merge remote-tracking branch 'origin/dev' 2018-02-04 23:32:50 +01:00
VisualGDB Merge from dev to master 2018-02-04 21:02:03 +01:00
VSLinux Merge from dev to master 2018-02-04 21:02:03 +01:00
.gitattributes Merge from dev to master 2018-02-04 21:02:03 +01:00
.gitignore Merge from dev to master 2018-02-04 21:02:03 +01:00
_config.yml Set theme jekyll-theme-minimal 2017-01-16 09:33:28 +01:00
AndroidAppSettings.cfg Merge from dev to master 2018-02-04 21:02:03 +01:00
AndroidBuild.sh Merge from dev to master 2018-02-04 21:02:03 +01:00
banner.png Merge from dev to master 2018-02-04 21:02:03 +01:00
CODE_OF_CONDUCT.md Create CODE_OF_CONDUCT.md 2018-01-03 10:17:01 +01:00
COPYING Create COPYING 2017-02-10 11:02:02 +01:00
icon.png Merge from dev to master 2018-02-04 21:02:03 +01:00
ISSUE_TEMPLATE.md Create ISSUE_TEMPLATE.md 2018-01-03 10:23:03 +01:00
Makefile Took away "-dev" from generated binaries 2018-02-04 21:10:32 +01:00
PULL_REQUEST_TEMPLATE Create PULL_REQUEST_TEMPLATE 2018-01-03 10:25:01 +01:00
README.md Merge from dev to master 2018-02-04 21:02:03 +01:00

Amiga emulator for the Raspberry Pi and other ARM SoC

Warning: this branch is where Development takes place. It may be unstable, crash, not work from time to time - If you're looking for the latest "stable" version, please use the master branch for now.

Compiling SDL2

If you want to run the SDL2 version, you currently need to compile SDL2 from source on the Raspberry Pi, to get support for launching full screen applications from the console. The version bundled with Stretch is not compiled with support for the "rpi" driver, so it only works under X11.

Follow these steps to download, compile and install SDL2 from source:

https://github.com/midwan/amiberry/wiki/Compile-SDL2-from-source

With SDL2 installed, you can proceed to install Amiberry as follows:

Pre-requisites

Install the following packages:

  sudo apt-get install libxml2-dev libflac-dev libmpg123-dev libpng-dev libmpeg2-4-dev

Compiling Amiberry

Clone this repo:

  cd ~
  git clone https://github.com/midwan/amiberry -b dev amiberry-dev
  cd amiberry-dev

The default platform is currently "rpi3", so for Raspberry Pi 3 (SDL1) you can just type:

  make all

For Raspberry Pi 2 (SDL1):

  make all PLATFORM=rpi2

For Raspberry Pi 1/Zero (SDL1):

  make all PLATFORM=rpi1

And for the SDL2 versions, you can use the following:

  make all PLATFORM=rpi3-sdl2

Or for Raspberry Pi 2 (SDL2):

  make all PLATFORM=rpi2-sdl2

Or for Raspberry Pi 1/Zero (SDL2):

  make all PLATFORM=rpi1-sdl2

You can check the Makefile for a full list of supported platforms!