Poster | Thread |
Trekiej
|  |
Re: sam460 emulated in qemu Posted on 1-Aug-2019 3:41:46
| | [ #361 ] |
|
|
 |
Cult Member  |
Joined: 17-Oct-2006 Posts: 890
From: Unknown | | |
|
| @tlosm
I would like to dedicate a laptop to running AOS4 in emulation. My main machine is a win10 machine. I have a laptop that has Ubuntu 18.04 installed.
I am not able to get anything running yet.
_________________ John 3:16 |
|
Status: Offline |
|
|
Hammer
 |  |
Re: sam460 emulated in qemu Posted on 1-Aug-2019 17:21:59
| | [ #362 ] |
|
|
 |
Elite Member  |
Joined: 9-Mar-2003 Posts: 6180
From: Australia | | |
|
| @Trekiej
Quote:
Trekiej wrote: @Hammer
I would agree that installing Win10 was and is easier. edit:
Yet, using Flower Pot made installation better to me. The only problem I could think of was the SCSI Drivers. They had a size of zero K. There was a fix for it.
|
I can handle AmigaOS 4.1 FE install on classic Amiga 4000 PPC, hence I didn't need Flower Pot.
_________________ Amiga 1200 (rev 1D1, KS 3.2, PiStorm32/RPi CM4/Emu68) Amiga 500 (rev 6A, ECS, KS 3.2, PiStorm/RPi 4B/Emu68) Ryzen 9 7950X, DDR5-6000 64 GB RAM, GeForce RTX 4080 16 GB |
|
Status: Offline |
|
|
Hammer
 |  |
Re: sam460 emulated in qemu Posted on 1-Aug-2019 17:32:55
| | [ #363 ] |
|
|
 |
Elite Member  |
Joined: 9-Mar-2003 Posts: 6180
From: Australia | | |
|
| @Trekiej
Quote:
Try add -serial none
to disable all serial ports. _________________ Amiga 1200 (rev 1D1, KS 3.2, PiStorm32/RPi CM4/Emu68) Amiga 500 (rev 6A, ECS, KS 3.2, PiStorm/RPi 4B/Emu68) Ryzen 9 7950X, DDR5-6000 64 GB RAM, GeForce RTX 4080 16 GB |
|
Status: Offline |
|
|
bison
 |  |
Re: sam460 emulated in qemu Posted on 1-Aug-2019 18:23:44
| | [ #364 ] |
|
|
 |
Elite Member  |
Joined: 18-Dec-2007 Posts: 2112
From: N-Space | | |
|
| @Trekiej
Quote:
Ubuntu 19.04 has the same version, so I don't think you'll have much luck finding a newer binary package.
I downloaded the source for qemu 4.1.0-rc3 and tried to build it, but without success. I can usually get things to compile by tweaking the makefile and headers, but there are missing symbols in some of the source files, so I jumped straight to "screw it" pretty quickly. I suspect there may be library dependency issues, which would explain why the Debian repository has such an old version. _________________ "Unix is supposed to fix that." -- Jay Miner |
|
Status: Offline |
|
|
tlosm
|  |
Re: sam460 emulated in qemu Posted on 2-Aug-2019 6:35:38
| | [ #365 ] |
|
|
 |
Elite Member  |
Joined: 28-Jul-2012 Posts: 2755
From: Amiga land | | |
|
| guys can you write here what did you write when make the executable ? Plus can you share your errors? i have the suspect that you miss some dependency or some of needeed packages are missed. _________________ I love Amiga and new hope by AmigaNG A 500 + ; CDTV; CD32; PowerMac G5 Quad 8GB,SSD,SSHD,7800gtx,Radeon R5 230 2GB; MacBook Pro Retina I7 2.3ghz; #nomorea-eoninmyhome |
|
Status: Offline |
|
|
Fl@sh
|  |
Re: sam460 emulated in qemu Posted on 2-Aug-2019 7:41:08
| | [ #366 ] |
|
|
 |
Regular Member  |
Joined: 6-Oct-2004 Posts: 253
From: Napoli - Italy | | |
|
| @bison
On QEmu website there are all instructions to compile it from sources. Under Linux yup should have no problem for a correct executable. If you fail you have to install some dependencies for sure. _________________ Pegasos II G4@1GHz 2GB Radeon 9250 256MB AmigaOS4.1 fe - MorphOS - Debian 9 Jessie |
|
Status: Offline |
|
|
Trekiej
|  |
Re: sam460 emulated in qemu Posted on 2-Aug-2019 14:54:33
| | [ #367 ] |
|
|
 |
Cult Member  |
Joined: 17-Oct-2006 Posts: 890
From: Unknown | | |
|
| @Hammer
I will give it a try.
_________________ John 3:16 |
|
Status: Offline |
|
|
billt
|  |
Re: sam460 emulated in qemu Posted on 2-Aug-2019 15:23:23
| | [ #368 ] |
|
|
 |
Elite Member  |
Joined: 24-Oct-2003 Posts: 3205
From: Maryland, USA | | |
|
| @tlosm
To compile and use qemu 4.0.0, I needed the libsdl-dev and/or the libgtk-dev packages to fix the "Display not available" error. If I did not request the sdl or the gtk display, then it defaulted to vnc, which I was not able to figure out how to use. Go for at least the gtk mode, or both gtk and sdl, but I did not have a mouse pointer in sdl mode.
After unpacking the qemy source code tarball file, cd into the dir it unpacked as
On the commandline, run Quote:
The configure command looks at your system to make sure you have the compiler, and also looks to see if you have other required and optional features and dependencies installed.
If you want to choose where it will be installed to, then give that location with ./configure --prefix=/full/path/to/where/you/want and then it will later be installed into /full/path/to/where/you/want/
You can see my path in a previous post, without that computer nearby I mostly remember that I did: Quote:
./configure --prefix=/opt/emulation/qemu/4.0.0 |
After you run the configure script, scroll back up through its piles of output, and look for yes and no answers to various features. If it says no to one you want or require, then go install the dev package for that and run configure again. I figured out the gtk and sdl dev kits were missing on my machine because the configure output said no for them. After I installed those things, then it said yes and included them in the build and I got a display working.
After you are happy with your configure, then do Quote:
and go do something else for a few hours, as it will take a while.
After make all finishes successfully, then do
Quote:
and that will install it to your chosen location, or to whatever the default location is if you do not do the --prefix thing.
Then you will need to use full path to the qemu executable. If you do not use full path, then it will either not be found, or it will run the old version you got from apt install.
You can add the qemu bin dir to your Linux shell $PATH, so that it will be found without typing full path to it.
So I need to do Quote:
/opt/emulation/qemu/4.0.0/bin/qemu-system-ppc |
instead if just Quote:
The command to add /opt/emulation/qemu/4.0.0/bin to your $PATH depends on which shell you use (bash shell has different syntax than tcsh shell, and I am more familiar with csh style as that's what we use at work, but I think ubuntu uses bash by default, and I don't know it)
That should be enough to get you running something. If you have problems, then paste the output of configure into a post here._________________ All glory to the Hypnotoad! |
|
Status: Offline |
|
|
bison
 |  |
Re: sam460 emulated in qemu Posted on 2-Aug-2019 16:27:00
| | [ #369 ] |
|
|
 |
Elite Member  |
Joined: 18-Dec-2007 Posts: 2112
From: N-Space | | |
|
| @Fl@sh
I'm running LM 19.1, which is based on Ubuntu 18.04 LTS, so some of the libraries are quite old. Someone running Fedora 30 might have better success.
Update:
I tried again, and I seem to be getting further this time. I have a script in ~/bin that acts as a trojan for /bin/rm so that I don't accidentally rm -rf anything. I had to edit the configure script to account for this. I'm only using one core to build, so it could take a long time...
Interesting bit of information: the source tree has 1334 makefiles!
Update:
It took about 38 minutes to build on my i5-7600 using one core, which is less than what I thought it might have been. I have my global CFLAGS environment variable set to Quote:
-std=c11 -Wall -Werror -Wextra -fmax-errors=1 -D_DEFAULT_SOURCE -D_GNU_SOURCE |
I had to unset this before the build, since it was turning sign comparison (and other) warnings into errors. I usually work around these types of errors by adding -Wno-whatever directives to the makefile, but this was impractical, since there are so many makefiles.
I don't know what the library dependencies are, since I built this on a system that I use for development and have many additional libraries already installed.Last edited by bison on 02-Aug-2019 at 06:21 PM. Last edited by bison on 02-Aug-2019 at 05:06 PM. Last edited by bison on 02-Aug-2019 at 04:56 PM.
_________________ "Unix is supposed to fix that." -- Jay Miner |
|
Status: Offline |
|
|
tlosm
|  |
Re: sam460 emulated in qemu Posted on 3-Aug-2019 8:38:41
| | [ #370 ] |
|
|
 |
Elite Member  |
Joined: 28-Jul-2012 Posts: 2755
From: Amiga land | | |
|
| @billt
can you share your configure .. about no screen look like you dint have libsdl2-dev installed probably.
This is mine on mate 19
gprof enabled no sparse enabled no strip binaries yes profiler no static build no SDL support yes (2.0.8) SDL image support no GTK support yes (3.22.30) GTK GL support yes VTE support no TLS priority NORMAL GNUTLS support no libgcrypt no nettle no libtasn1 no PAM no iconv support yes curses support no virgl support yes (0.6.0) curl support no mingw32 support no Audio drivers pa oss Block whitelist (rw) Block whitelist (ro) VirtFS support no Multipath support no VNC support yes VNC SASL support no VNC JPEG support no VNC PNG support yes xen support no brlapi support no bluez support no Documentation no PIE yes vde support no netmap support no Linux AIO support no ATTR/XATTR support yes Install blobs yes KVM support yes HAX support no HVF support no WHPX support no TCG support yes TCG debug enabled no TCG interpreter no malloc trim support yes RDMA support no PVRDMA support no fdt support git membarrier no preadv support yes fdatasync yes madvise yes posix_madvise yes posix_memalign yes libcap-ng support no vhost-net support yes vhost-crypto support yes vhost-scsi support yes vhost-vsock support yes vhost-user support yes Trace backends log spice support no rbd support no xfsctl support no smartcard support no libusb yes usb net redir yes OpenGL support yes OpenGL dmabufs yes libiscsi support no libnfs support no build guest agent yes QGA VSS support no QGA w32 disk info no QGA MSI support no seccomp support no coroutine backend ucontext coroutine pool yes debug stack usage no mutex debugging no crypto afalg no GlusterFS support no gcov gcov gcov enabled no TPM support yes libssh support no QOM debugging yes Live block migration yes lzo support no snappy support no bzip2 support no lzfse support no NUMA host support no libxml2 no tcmalloc support no jemalloc support no avx2 optimization yes replication support yes VxHS block device no bochs support yes cloop support yes dmg support yes qcow v1 support yes vdi support yes vvfat support yes qed support yes parallels support yes sheepdog support yes capstone git docker no libpmem support no libudev yes default devices yes
_________________ I love Amiga and new hope by AmigaNG A 500 + ; CDTV; CD32; PowerMac G5 Quad 8GB,SSD,SSHD,7800gtx,Radeon R5 230 2GB; MacBook Pro Retina I7 2.3ghz; #nomorea-eoninmyhome |
|
Status: Offline |
|
|
jabirulo
|  |
Re: sam460 emulated in qemu Posted on 4-Aug-2019 10:43:18
| | [ #371 ] |
|
|
 |
Regular Member  |
Joined: 20-Jun-2004 Posts: 370
From: Donosti (GUIPUZCOA) | | |
|
| @Fl@sh
I created a bash script to download dependcies, then GIT qemu and ./configure et all, not sure if it still works, but here is my qemu "build" script (this is to build under ubuntu mate on a x86 machine):
#!/bin/bash echo ******************************* echo "Downloading QEMU dependencies..." echo ******************************* sudo apt-get -y install git libglib2.0-dev libfdt-dev libpixman-1-dev zlib1g-dev sudo apt-get -y install libaio-dev libbluetooth-dev libbrlapi-dev libbz2-dev sudo apt-get -y install libcap-dev libcap-ng-dev libcurl4-gnutls-dev libgtk-3-dev sudo apt-get -y install libibverbs-dev libjpeg8-dev libncurses5-dev libnuma-dev sudo apt-get -y install librbd-dev librdmacm-dev sudo apt-get -y install libsasl2-dev libsdl2.0-dev libseccomp-dev libsnappy-dev libssh2-1-dev sudo apt-get -y install libvde-dev libvdeplug-dev libvte-2.90-dev libxen-dev liblzo2-dev #sudo apt-get -y install valgrind xfslibs-dev sudo apt-get -y install libnfs-dev libiscsi-dev
#exit
echo ****************************** echo "Getting latest QEMU sources..." echo ****************************** git clone https://github.com/dgibson/qemu.git #https://github.com/dgibson/qemu/tree/ppc-for-3.0
echo ****************************** echo "Building QEMU ppc-softmmu..." echo ****************************** # Switch to the QEMU root directory. cd qemu # Prepare a native debug build. mkdir -p bin/debug/native cd bin/debug/native # Configure QEMU and start the build. ../../../configure --enable-debug --target-list=ppc-softmmu make -j2
Last edited by jabirulo on 04-Aug-2019 at 10:49 AM. Last edited by jabirulo on 04-Aug-2019 at 10:45 AM. Last edited by jabirulo on 04-Aug-2019 at 10:44 AM.
|
|
Status: Offline |
|
|
billt
|  |
Re: sam460 emulated in qemu Posted on 6-Aug-2019 3:37:47
| | [ #372 ] |
|
|
 |
Elite Member  |
Joined: 24-Oct-2003 Posts: 3205
From: Maryland, USA | | |
|
| @tlosm
Quote:
can you share your configure |
./configure --prefix=/opt/emulation/qemu/4.0.0
Install prefix /opt/emulation/qemu/4.0.0 BIOS directory /opt/emulation/qemu/4.0.0/share/qemu firmware path /opt/emulation/qemu/4.0.0/share/qemu-firmware binary directory /opt/emulation/qemu/4.0.0/bin library directory /opt/emulation/qemu/4.0.0/lib module directory /opt/emulation/qemu/4.0.0/lib/qemu libexec directory /opt/emulation/qemu/4.0.0/libexec include directory /opt/emulation/qemu/4.0.0/include config directory /opt/emulation/qemu/4.0.0/etc local state directory /opt/emulation/qemu/4.0.0/var Manual directory /opt/emulation/qemu/4.0.0/share/man ELF interp prefix /usr/gnemul/qemu-%M Source path /home/billt/downloads/qemu-4.0.0 GIT binary git GIT submodules C compiler cc Host C compiler cc C++ compiler c++ Objective-C compiler clang ARFLAGS rv CFLAGS -O2 -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=2 -g QEMU_CFLAGS -I/usr/include/pixman-1 -I$(SRC_PATH)/dtc/libfdt -pthread -I/usr/include/glib-2.0 -I/usr/lib/x86_64-linux-gnu/glib-2.0/include -fPIE -DPIE -m64 -mcx16 -D_GNU_SOURCE -D_FILE_OFFSET_BITS=64 -D_LARGEFILE_SOURCE -Wstrict-prototypes -Wredundant-decls -Wall -Wundef -Wwrite-strings -Wmissing-prototypes -fno-strict-aliasing -fno-common -fwrapv -std=gnu99 -Wexpansion-to-defined -Wendif-labels -Wno-shift-negative-value -Wno-missing-include-dirs -Wempty-body -Wnested-externs -Wformat-security -Wformat-y2k -Winit-self -Wignored-qualifiers -Wold-style-declaration -Wold-style-definition -Wtype-limits -fstack-protector-strong -I/usr/include/libpng16 -I/usr/include/capstone LDFLAGS -Wl,--warn-common -Wl,-z,relro -Wl,-z,now -pie -m64 -g QEMU_LDFLAGS -L$(BUILD_DIR)/dtc/libfdt make make install install python python -B (2.7.16) slirp support internal smbd /usr/sbin/smbd module support no host CPU x86_64 host big endian no target list aarch64-softmmu alpha-softmmu arm-softmmu cris-softmmu hppa-softmmu i386-softmmu lm32-softmmu m68k-softmmu microblaze-softmmu microblazeel-softmmu mips-softmmu mips64-softmmu mips64el-softmmu mipsel-softmmu moxie-softmmu nios2-softmmu or1k-softmmu ppc-softmmu ppc64-softmmu riscv32-softmmu riscv64-softmmu s390x-softmmu sh4-softmmu sh4eb-softmmu sparc-softmmu sparc64-softmmu tricore-softmmu unicore32-softmmu x86_64-softmmu xtensa-softmmu xtensaeb-softmmu aarch64-linux-user aarch64_be-linux-user alpha-linux-user arm-linux-user armeb-linux-user cris-linux-user hppa-linux-user i386-linux-user m68k-linux-user microblaze-linux-user microblazeel-linux-user mips-linux-user mips64-linux-user mips64el-linux-user mipsel-linux-user mipsn32-linux-user mipsn32el-linux-user nios2-linux-user or1k-linux-user ppc-linux-user ppc64-linux-user ppc64abi32-linux-user ppc64le-linux-user riscv32-linux-user riscv64-linux-user s390x-linux-user sh4-linux-user sh4eb-linux-user sparc-linux-user sparc32plus-linux-user sparc64-linux-user tilegx-linux-user x86_64-linux-user xtensa-linux-user xtensaeb-linux-user gprof enabled no sparse enabled no strip binaries yes profiler no static build no SDL support yes (2.0.9) SDL image support no GTK support yes (3.24.8) GTK GL support no VTE support no TLS priority NORMAL GNUTLS support no libgcrypt no nettle no libtasn1 no PAM no iconv support yes curses support yes virgl support no curl support no mingw32 support no Audio drivers pa oss Block whitelist (rw) Block whitelist (ro) VirtFS support no Multipath support no VNC support yes VNC SASL support no VNC JPEG support yes VNC PNG support yes xen support no brlapi support no bluez support no Documentation yes PIE yes vde support no netmap support no Linux AIO support no ATTR/XATTR support yes Install blobs yes KVM support yes HAX support no HVF support no WHPX support no TCG support yes TCG debug enabled no TCG interpreter no malloc trim support yes RDMA support no PVRDMA support no fdt support git membarrier no preadv support yes fdatasync yes madvise yes posix_madvise yes posix_memalign yes libcap-ng support no vhost-net support yes vhost-crypto support yes vhost-scsi support yes vhost-vsock support yes vhost-user support yes Trace backends log spice support no rbd support no xfsctl support no smartcard support no libusb no usb net redir no OpenGL support no OpenGL dmabufs no libiscsi support no libnfs support no build guest agent yes QGA VSS support no QGA w32 disk info no QGA MSI support no seccomp support no coroutine backend ucontext coroutine pool yes debug stack usage no mutex debugging no crypto afalg no GlusterFS support no gcov gcov gcov enabled no TPM support yes libssh2 support no TPM passthrough TPM emulator QOM debugging yes Live block migration yes lzo support no snappy support no bzip2 support yes lzfse support no NUMA host support yes libxml2 no tcmalloc support no jemalloc support no avx2 optimization yes replication support yes VxHS block device no bochs support yes cloop support yes dmg support yes qcow v1 support yes vdi support yes vvfat support yes qed support yes parallels support yes sheepdog support yes capstone system docker yes libpmem support no libudev yes default devices yes
NOTE: cross-compilers enabled: 'cc' 'cc'
_________________ All glory to the Hypnotoad! |
|
Status: Offline |
|
|
tlosm
|  |
Re: sam460 emulated in qemu Posted on 7-Aug-2019 12:55:39
| | [ #373 ] |
|
|
 |
Elite Member  |
Joined: 28-Jul-2012 Posts: 2755
From: Amiga land | | |
|
| @billt
what i can see is you dont have gtk gl support virgl support . is better you have it istalled.
by the way. Qemu-ppc (etc etc) -display sdl or qemu-ppc (etc etc) -display sdl,gl=on for use open gl for rendering. or qemu-ppc (etc etc) -display gtk qemu-ppc (etc etc) -display gtk,gl=on (this you will be able use when install gtk gl support) _________________ I love Amiga and new hope by AmigaNG A 500 + ; CDTV; CD32; PowerMac G5 Quad 8GB,SSD,SSHD,7800gtx,Radeon R5 230 2GB; MacBook Pro Retina I7 2.3ghz; #nomorea-eoninmyhome |
|
Status: Offline |
|
|
Sidewinder
|  |
Re: sam460 emulated in qemu Posted on 7-Aug-2019 18:09:49
| | [ #374 ] |
|
|
 |
Regular Member  |
Joined: 10-Mar-2003 Posts: 152
From: Saint Paul, Minnesota, USA | | |
|
| @tlosm
Do you know if there was ever a solution found for the iprefs crash on boot? I saw it mentioned early on, but didn't see a solution. It is still giving me grief.
Thanks, Mike |
|
Status: Offline |
|
|
Trekiej
|  |
Re: sam460 emulated in qemu Posted on 7-Aug-2019 18:51:01
| | [ #375 ] |
|
|
 |
Cult Member  |
Joined: 17-Oct-2006 Posts: 890
From: Unknown | | |
|
| @tlosm
I have a GTK and a pixbuf issue.
I made a batch file and put my commands into that and added -serial none.
The main screen says guest has not initialize display yet, I think.
_________________ John 3:16 |
|
Status: Offline |
|
|
tlosm
|  |
Re: sam460 emulated in qemu Posted on 7-Aug-2019 19:13:43
| | [ #376 ] |
|
|
 |
Elite Member  |
Joined: 28-Jul-2012 Posts: 2755
From: Amiga land | | |
|
| @Sidewinder
open a shell/Cli and stack 2000000 i fix like this. _________________ I love Amiga and new hope by AmigaNG A 500 + ; CDTV; CD32; PowerMac G5 Quad 8GB,SSD,SSHD,7800gtx,Radeon R5 230 2GB; MacBook Pro Retina I7 2.3ghz; #nomorea-eoninmyhome |
|
Status: Offline |
|
|
Sidewinder
|  |
Re: sam460 emulated in qemu Posted on 7-Aug-2019 19:14:00
| | [ #377 ] |
|
|
 |
Regular Member  |
Joined: 10-Mar-2003 Posts: 152
From: Saint Paul, Minnesota, USA | | |
|
| Trekiej wrote: Quote:
I made a batch file and put my commands into that and added -serial none.
The main screen says guest has not initialize display yet, I think.
|
I get the same behavior when I add -serial none to the invocation command, the VM just seems to hang, or at least doesn't update the display.
|
|
Status: Offline |
|
|
tlosm
|  |
Re: sam460 emulated in qemu Posted on 7-Aug-2019 19:14:27
| | [ #378 ] |
|
|
 |
Elite Member  |
Joined: 28-Jul-2012 Posts: 2755
From: Amiga land | | |
|
| @Trekiej
no display yet ? ... strange can you wirte all your command line? Last edited by tlosm on 07-Aug-2019 at 07:14 PM.
_________________ I love Amiga and new hope by AmigaNG A 500 + ; CDTV; CD32; PowerMac G5 Quad 8GB,SSD,SSHD,7800gtx,Radeon R5 230 2GB; MacBook Pro Retina I7 2.3ghz; #nomorea-eoninmyhome |
|
Status: Offline |
|
|
Sidewinder
|  |
Re: sam460 emulated in qemu Posted on 7-Aug-2019 19:17:43
| | [ #379 ] |
|
|
 |
Regular Member  |
Joined: 10-Mar-2003 Posts: 152
From: Saint Paul, Minnesota, USA | | |
|
| @tlosm
Quote:
open a shell/Cli and stack 2000000 i fix like this. |
I don't understand. The crash occurs before Workbench starts, so I don't have the ability to open a shell and set the stack. Must this be done somewhere in the startup-sequence?
Or are you saying the stack on the Linux side needs to be set? That would be with ulimit though, so I don't think that's what you mean. |
|
Status: Offline |
|
|
tlosm
|  |
Re: sam460 emulated in qemu Posted on 7-Aug-2019 19:18:51
| | [ #380 ] |
|
|
 |
Elite Member  |
Joined: 28-Jul-2012 Posts: 2755
From: Amiga land | | |
|
| in case this are my command linnes
Sam460 amigaos
qemu-system-ppc -machine sam460ex -rtc base=localtime -device ide-hd,drive=hd-drive,bus=ide.1 -drive file='/home/gigi/amigaos.img',if=none,id=hd-drive,format=raw -display sdl,gl=on -m 2048
Mac Morphos
qemu-system-ppc64 -cpu G4 -machine mac99,via=pmu -m 1024 -prom-env 'boot-device=hd:,\boot.img' -bios /home/gigi/Scaricati/openbios-qemu.elf -display sdl,gl=on -device ide-hd,drive=hd-drive,bus=ide.0 -drive file='/home/gigi/mos.img',if=none,id=hd-drive,format=raw -device rtl8139 -net user -device ati-vga
_________________ I love Amiga and new hope by AmigaNG A 500 + ; CDTV; CD32; PowerMac G5 Quad 8GB,SSD,SSHD,7800gtx,Radeon R5 230 2GB; MacBook Pro Retina I7 2.3ghz; #nomorea-eoninmyhome |
|
Status: Offline |
|
|