Login
Username:

Password:

Remember me



Lost Password?

Register now!

Sections

Who's Online
70 user(s) are online (59 user(s) are browsing Forums)

Members: 0
Guests: 70

more...

Headlines

Forum Index


Board index » All Posts (derfs)




Re: Problems with AmiUpdate
Just popping in
Just popping in


@Deniil

That is the default setting/location for where to extract failed files.

You can change the destination for 'Temporary directory for unpacking' in preferences (update tab).

Doesn't stop it being a bad default, but at least it can be worked around

Go to top


Re: Problems with AmiUpdate
Just popping in
Just popping in


If I remember correctly, its because of the version of AmiSSL you currently have installed is too old, so you may need to download that from OS4Depot separately before everything else works.

Go to top


Re: usb boot iso over amidvd on x5k questions
Just popping in
Just popping in


@kas1e

I found for my RX580 that you can force the 'compose' settings and it works correctly. Saves having to change the settings yourself later.

copy :Installation-Files/GUI-compose.prefs env:sys/GUI.prefs
setenv _INSTALL_HWACCEL 1

Go to top


Re: RadeonHD V.5 driver
Just popping in
Just popping in


@Spectre660Quote:
Spectre660 wrote:@derfs

In this particular case we have actual user feedback at least for X1000 and Sam460ex that 1080p playback is not working as was expected.


Im just trying to rule out any 4k videos or H265 videos, as the UVD on SI cards was not built for that.

Go to top


Re: RadeonHD V.5 driver
Just popping in
Just popping in


If you are having issues with playback speed with SI cards, remember to post a link to the file or the specs of the compression used, as I would guess that the issues are from non-H264 files.

Go to top


Re: Updater tool: latest releases and updates
Just popping in
Just popping in


@DJBaseQuote:
DJBase wrote:WTF... its getting better with every update... now drivers are divided by platforms? what next? divided by graphic card models?


You mean like RadeonHD and RadeonRX? like it already is?

Go to top


Re: Updater tool: latest releases and updates
Just popping in
Just popping in


@amigakit

Thats better, its correctly saying that I need to purchase it to download so now i wait until its available to buy and download digitally - Amistore soon?

Go to top


Re: x5000 benchmarks / speed up
Just popping in
Just popping in


X5000
Kingston Fury KF318C10BBK2/8
2x4GB DDR3 1866MHz

RAGEMEM v0.37 compiled 11/06/2010

CPU
Freescale P5020 (E5500 core1.2 1995 Mhz
Caches Sizes
L132 KB L2512 KB L3none
Cache Line
64

---> CPU <---
MAX MIPS:  3988

---> L1 <---
READ32:  7533 MB/Sec
READ64
:  15044 MB/Sec
WRITE32
7535 MB/Sec
WRITE64
15048 MB/Sec

---> L2 <---
READ32:  4286 MB/Sec
READ64
:  7722 MB/Sec
WRITE32
5020 MB/Sec
WRITE64
8817 MB/Sec

---> RAM <---
READ32:  681 MB/Sec
READ64
:  1217 MB/Sec
WRITE32
1477 MB/Sec
WRITE64
1482 MB/Sec
WRITE
2313 MB/Sec (Tricky)

---> 
VIDEO BUS <---
READ:  23 MB/Sec
WRITE
540 MB/Sec

Go to top


Re: Updater tool: latest releases and updates
Just popping in
Just popping in


@amigakitQuote:
amigakit wrote:Today the following public releases have been made available to download on Updater utility:

RadeonHD.chip V5.14 for X5000

Download available for registered users.


"RadeonHD.chip V5.14 for X5000" and MultiEdit both come up with the "missing on server" message.

Go to top


Re: GL4ES / SDL+GL4ES / CLIB2 / Outdated NEWLIB libs and OnWards
Just popping in
Just popping in


@kas1e

X5000
RX580

1 - 200-250fps
2 - 190-220fps

Go to top


Re: Amiwest 2022. Any OS4 announcements expected?
Just popping in
Just popping in


@ddni

The answer to a few of these is on the page you linked to!

Quote:
6:00:00 PM GMT+1 - Main Show Day 1 start time, Oct 22
...
6:15:00 PM GMT+1 - News and annoucements from show sponsor A-Eon - Trevor Dickinson
7:15:00 PM GMT+1 - OS 4 updates from ExecSG development lead - Steven Solie

Go to top


Re: Radeon 7950 HD Power Cable Help
Just popping in
Just popping in


your psu should have come with 2 pci-e cables - the 2 8-pin connectors on the top left of the psu picture. use those as you should be able to unclip 2 pins to make it a 6-pin connector that you need.

Go to top


Re: Are 4k screens supported by any AmigaNG compatible gfx-card?
Just popping in
Just popping in



Go to top


Re: MUI installation leads to forceful unwanted ASL patching
Just popping in
Just popping in


@rjd324

Its all down to the installer, in that if you set it to 'Beginner' then you do not get asked if you want to replace the ASL requester with the MUI one. Set it to anything else and you have the choice.

Go to top


Re: How to build AmigaOS4 cross-compiler (Binutils 2.23.2 & GCC 8.3.0) on CYGWIN
Just popping in
Just popping in


@Raziel

I built ppc-amigaos-gcc-8.4.0 just a few days ago. Here are my personal notes from installing adtools which are just rewritten from the ones in this thread.

This assumes Cygwin has been set up with all the appropriate packages.

//adtools setup

//set up git email and user name details. type following in cygwin window (adding in your email and user name where appropriate):

git config --global user.email "you@example.com"
git config --global user.name "Your Name"



cd /
mkdir /amiga
cd 
/amiga
git 
clone https://github.com/sba1/adtools
cd adtools

git submodule init
git submodule update

gild
/bin/gild clone     //(will take a little while - 10 mins)
gild/bin/gild checkout binutils 2.23.2
gild
/bin/gild checkout gcc 8


cd 
/amiga
git 
clone https://github.com/fragglet/lhasa
cd lhasa
./autogen.sh
make
make install


cd 
/amiga/adtools
make 
-C native-build gcc-cross CROSS_PREFIX=/usr/local/amiga -j4    //(will take a long while - around an hour on a Ryzen 2600)

export PATH=/usr/local/amiga/bin:$PATH
//add the above line to the /home/user/.bashrc file and restart cygwin

//test gcc cross compiler - create file.c with following text
#include <stdio.h>
void main()
{
printf("gcc 8.4.0 enabled\n");
}

//compile test.c
ppc-amigaos-gcc -flto test.-o test
ppc
-amigaos-readelf -h test

//transfer test to amiga and run, make sure file executable after transfer via sftp

//end.

Go to top


Re: Cannot upload GfxBench2D results to HDRLab
Just popping in
Just popping in


@derfs

and to also mention, the windows version of the program has the same issue, but it has a seperate libcurl library that can be replaced.

Go to top


Re: Cannot upload GfxBench2D results to HDRLab
Just popping in
Just popping in


@Gregor

with debug on its gives this

------------------------------------------------------------
GfxBench2D 2.8 (19.6.2012)
A benchmark tool for graphics cards.
Written by Hans de Ruiter.

Copyright (C2011by Hans de Ruiterall rights reserved
------------------------------------------------------------

Testing the connection to the server...
(
2Preparing object of typeBenchmarkOperatingSystem
(2Getting ID for an object of type BenchmarkOperatingSystem from the server.
(
4timeout on name lookup is not supported
(4About to connect() to hdrlab.org.nz port 443 (#0)
(4)   Trying 112.109.82.69... (4connected
(4libcurl is now using a weak random seed!
(
4successfully set certificate verify locations:
(
4)   CAfilePROGDIR:curl-ca-bundle.crt
  CApath
none
(4SSLv3TLS handshakeClient hello (1):
(
4SSLv3TLS alertServer hello (2):
(
4error:1407742E:SSL routines:SSL23_GET_SERVER_HELLO:tlsv1 alert protocol version
(4Closing connection #0
(4SSL connect error
(2Search queryhttps://hdrlab.org.nz/api/v1/BenchmarkOperatingSystem?Name=AmigaOS&
Connection to the server failed with HTTP response code0, and messageERRORSearch query (https://hdrlab.org.nz/api/v1/BenchmarkOperatingSystem?Name=AmigaOS&) failed with error: SSL connect error.
Test failed.


so it is to do with an old version of the tls protocol used by libcurl, and as it looks like the amiga version was built with libcurl embedded i dont think its a simple case of getting the latest version of libcurl.

i would assume, not knowing amiga programming that well, that GFXBench2D would need to be recompiled with the new libcurl, or use the libcurl sobjs.

Go to top


Re: Cannot upload GfxBench2D results to HDRLab
Just popping in
Just popping in


@Gregor

Its probably because of the old version of curllib that cant connect to the server as it uses a newer tls version.

Go to top


Re: Reverse engineered GTA III and Vice City
Just popping in
Just popping in


@geennaam

There was a reverse-DMCA notice and so the code was brought back.

Go to top


Re: X5000 not booting
Just popping in
Just popping in


@DStastny

I had the exact same issue. It wasnothing to do with the RAM (mine says the same as yours), its to do with what the Bios is doing next.

It will either be a power issue (PSU 12v ATX connector not plugged in correctly) or more likely the CR2032 battery (if charged) is not 100% in the correct place.


Go to top



TopTop
(1) 2 3 4 ... 9 »




Powered by XOOPS 2.0 © 2001-2016 The XOOPS Project