|
Register or have you forgotten your password?
|
|
|
| Amiga Software Issues and Discussion This forum exists for the discussion of the use, issues with, and fun brought about by classic and next generation Amiga software. |
![]() |
|
|
Thread Tools | Display Modes |
|
|
#1 | ||||||||
|
' union select name,pwd--
Join Date: Aug 2002
Location: Helsinki, Finland
Posts: 6,946
|
I've been working on PFS3 by using a cross compiler on AMD64 linux box. This has prevented me from testing much of the changes so far, but I will do that shortly when I'll have access to my MorphOS box again.
So far I've:
To do:
Some links that might be of interest: Last edited by Piru; 04-21-2011 at 04:41 AM.. |
||||||||
|
|
|
|
|
#2 | ||||||||
|
Technoid
![]()
Join Date: Apr 2002
Posts: 349
|
you've got to be kidding? the Perfect File System 3 code? you ported it?
i tried many many times to contact the author to get this released to public over many many years!! i thought it was closed source, i.e. proprietary, paid for software. i always used this file system, was so much faster and more reliable than ffs, tests i have done show it to be faster than sfs too. Err, i'd love to see this file system back in development if you did manage to contact the author and get the code! All i can say is wow. well done!
__________________
It\'s not the question, that is the problem, it is the problem, that is the question. Last edited by SHADES; 04-21-2011 at 04:27 AM.. Reason: add more info |
||||||||
|
|
|
|
|
#3 | |||||||||||
|
' union select name,pwd--
Join Date: Aug 2002
Location: Helsinki, Finland
Posts: 6,946
|
Quote:
Quote:
Quote:
|
|||||||||||
|
|
|
|
|
#4 | ||||||||
|
Cult Member
![]()
|
Awesome news there Piru!!! I was expecting your contribution but wasn't expecting it so soon
![]() Btw the SourceForge milestones are really great! I can't wait for the future releases \o/ Are you gonna include binaries for both 3.x and MorphOS platforms in the future releases? (I hope so).
__________________
Visit my Amiga blog here - A4000D: 060@50/604@180, 384MB, ACard+80GB HD, SCSI Multicard Reader, DVD-RW, Grex4000 (RTG/Sound/NIC), Indivision 4000, RTG/AGA AutoSwitch, Deneb, ZorRAM - A600: 030@37.5, 64MB, A604, 16GB CF, Indivision ECS, Subway, MAS-Player (internal), Custom Audio Mixer |
||||||||
|
|
|
|
|
#5 | |||||||||
|
' union select name,pwd--
Join Date: Aug 2002
Location: Helsinki, Finland
Posts: 6,946
|
Quote:
My plan is to include the PFS3 is some future MorphOS release at least. The filesystem will be inside the boot.img, making it possible to use PFS3 easily with the supported Mac systems, too. Without being inside the boot.img you would be limited to systems with RDB support or to mounting via mountlists. Also the current 68k version functions just fine with MorphOS already, and since the filesystem is translated by the Trance JIT is likely to be exactly as fast as the native version will be. For now I've omitted committing the MorphOS Makefiles in the SVN. This is because I have been unable to test much my new code. I wouldn't want anyone to hose their data with a buggy filesystem. Once I've tested and bugfixed the code I'll add the Makefiles. At that stage anyone with the SDK installed can build the filesystem and play with it. Obviously even then I'd seriosly recommend only doing that with some spare partitions and avoid using the SVN version in production environments. Last edited by Piru; 04-21-2011 at 05:04 AM.. |
|||||||||
|
|
|
|
|
#6 | ||||||||
|
Guru Meditator
![]()
Join Date: Feb 2003
Location: Englistan
Posts: 6,829
|
Great work Piru, thanks!
![]() What gcc arguments do you recommend to compile it with for fastest performance on a CS 060? Just a simple -m68060 will suffice?
__________________
http://www.commodore.gen.tr/forum/in...38089#msg38089 http://sf.net/projects/amithlon/files/ “Socialism" is no more an evil word than "Christianity." Socialism no more prescribed Joseph Stalin and his secret police and shuttered churches than Christianity prescribed the Spanish Inquisition. Christianity and socialism alike, in fact, prescribe a society dedicated to the proposition that all men, women, and children are created equal and shall not starve.” - Kurt Vonnegut |
||||||||
|
|
|
|
|
#7 | ||||||||
|
' union select name,pwd--
Join Date: Aug 2002
Location: Helsinki, Finland
Posts: 6,946
|
Last I played with 68k target gcc it was back in the 2.95 time. Back then gcc produced far worse code for 68k than SAS/C. I don't know if things has changed since, but in general -O2 with the flag specifying the CPU target (in this case -m68060) is usually the best choice. -O3 is worth trying as well, but usually it only leads to very minimal speed up with the expense of the binary bloating up. As always try couple of different optimization flag combinations and benchmark your code.
|
||||||||
|
|
|
|
|
#8 | ||||||||
|
Defender of the Faith
![]()
|
@Piru
Thank you for your support to further develop PFS3. I was checking the project SVN and Bugtracker on a daily basis, and I am pleased you are both working on it. I just hope some more developers join in! |
||||||||
|
|
|
|
|
#9 | |||||||||
|
Defender of the Faith
![]()
Join Date: Aug 2009
Posts: 1,134
|
Quote:
|
|||||||||
|
|
|
|
|
#10 | ||||||||
|
Merely Curious
![]()
Join Date: Feb 2011
Posts: 14
|
Anyone experience with vbcc? Got a mail from Stefan Haubenthal who wants to make PFS compatible with it. The site http://sun.hasenbraten.de/vbcc/ claims pretty good performance.
Michiel |
||||||||
|
|
|
|
|
#11 | |||||||||
|
Sockologist
![]()
|
Quote:
__________________
OCA This isn't SCSI... This is SATA!!! I have CDO. It's like OCD except all the letters are in ascending order. The way they should be. Core2 Quad Q9450 2.66GHz / X48T / 4GB DDR3 / nVidia GTX275 / Linux x64, AROS, Win64 A1XE 800MHz / 512MB / Radeon 9200 / OS4.1 A1200T BPPC 240MHz / 256MB / Permedia 2 / OS 3.1 - OS3.9, OS4 A1200T Apollo 1240 28MHz / 32MB / Mediator1200 / Voodoo 3000 / OS3.9 A1200D Apollo 1240 25MHz (ejector seat ROM edition) / 32MB |
|||||||||
|
|
|
|
|
#12 | |||||||||
|
' union select name,pwd--
Join Date: Aug 2002
Location: Helsinki, Finland
Posts: 6,946
|
Quote:
I haven't used VBCC myself though. |
|||||||||
|
|
|
|
|
#13 | ||||||||
|
Defender of the Faith
![]()
Join Date: Mar 2006
Posts: 1,798
|
I hope the free PFS will be available for 68000 stock AmigaOS too.
|
||||||||
|
|
|
|
|
#14 | ||||||||
|
Technoid
![]()
Join Date: Nov 2002
Posts: 385
|
Thanks Piru,
Your support of MOS is a tremendous asset. I love PFS for the Amiga and look forward to it being used in MOS. Regards, Matt |
||||||||
|
|
|
![]() |
| Bookmarks |
| Tags |
| status , update , morphos , pfs3 |
| Thread Tools | |
| Display Modes | |
|
|