From 2e07f2e8051a69042992a3fe4b3007c53bcfe3eb Mon Sep 17 00:00:00 2001 From: jmcmullan Date: Sat, 2 Jul 2011 18:05:50 +0000 Subject: [PATCH] filesystems: Resident= is now redundant if it is the same as the module's name .. but we can use it to add some aliases to AOS L: filenames Signed-off-by: Jason S. McMullan git-svn-id: https://svn.aros.org/svn/aros/trunk/AROS@39751 fb15a70f-31f2-0310-bbcc-cdcc74a49acc --- rom/devs/filesys/AmberRAM/amberram.conf | 1 + rom/devs/filesys/SFS/FS/sfs.conf | 3 ++- rom/devs/filesys/afs/afs.conf | 10 ++++++---- rom/devs/filesys/pfs3/fs/pfs3.conf | 3 ++- rom/devs/filesys/pfs3/fs/pfs3ds.conf | 3 ++- workbench/devs/CDVDFS/src/cdrom.conf | 1 + 6 files changed, 14 insertions(+), 7 deletions(-) diff --git a/rom/devs/filesys/AmberRAM/amberram.conf b/rom/devs/filesys/AmberRAM/amberram.conf index bf16588947..93b31922be 100644 --- a/rom/devs/filesys/AmberRAM/amberram.conf +++ b/rom/devs/filesys/AmberRAM/amberram.conf @@ -8,4 +8,5 @@ residentpri -1 # Run RAM task at lower priority .priority 9 AmberMain DosDevice=RAM +AmberMain Resident=Ram-Handler ##end handler diff --git a/rom/devs/filesys/SFS/FS/sfs.conf b/rom/devs/filesys/SFS/FS/sfs.conf index 44f4996621..5a2a43e41e 100644 --- a/rom/devs/filesys/SFS/FS/sfs.conf +++ b/rom/devs/filesys/SFS/FS/sfs.conf @@ -8,5 +8,6 @@ residentpri -1 # Can autodetect .autodetect 1 .stacksize 2048 -SFS_handler DosType=0x53465300 Resident=sfs.handler +SFS_handler DosType=0x53465300 +SFS_handler Resident=sfs-handler ##end handler diff --git a/rom/devs/filesys/afs/afs.conf b/rom/devs/filesys/afs/afs.conf index ffa022f668..00ba540cc7 100644 --- a/rom/devs/filesys/afs/afs.conf +++ b/rom/devs/filesys/afs/afs.conf @@ -8,12 +8,14 @@ residentpri -1 # Highest level autodetect priority .autodetect 127 AFS_work DosType=0x444f5307 -AFS_work DosType=0x444f5306 AFS_work DosType=0x444f5305 -AFS_work DosType=0x444f5304 AFS_work DosType=0x444f5303 -AFS_work DosType=0x444f5302 AFS_work DosType=0x444f5301 +AFS_work Resident=FastFileSystem +# Now, try the OFS variants +AFS_work DosType=0x444f5306 +AFS_work DosType=0x444f5304 +AFS_work DosType=0x444f5302 AFS_work DosType=0x444f5300 -AFS_work Resident=afs.handler +AFS_work Resident=FileSystem ##end handler diff --git a/rom/devs/filesys/pfs3/fs/pfs3.conf b/rom/devs/filesys/pfs3/fs/pfs3.conf index 7412064ae0..f8b9b0b63f 100644 --- a/rom/devs/filesys/pfs3/fs/pfs3.conf +++ b/rom/devs/filesys/pfs3/fs/pfs3.conf @@ -9,5 +9,6 @@ residentpri -1 .autodetect 1 # In units of SIPTR .stacksize 2500 -EntryPoint DosType=0x50465303 Resident=pfs3.handler +EntryPoint DosType=0x50465303 +EntryPoint Resident=pfs3-handler ##end handler diff --git a/rom/devs/filesys/pfs3/fs/pfs3ds.conf b/rom/devs/filesys/pfs3/fs/pfs3ds.conf index b337b76fe5..fdfea4285c 100644 --- a/rom/devs/filesys/pfs3/fs/pfs3ds.conf +++ b/rom/devs/filesys/pfs3/fs/pfs3ds.conf @@ -9,5 +9,6 @@ residentpri -1 .autodetect 1 # In units of SIPTR .stacksize 2500 -EntryPoint DosType=0x50445303 Resident=pfs3ds.handler +EntryPoint DosType=0x50445303 +EntryPoint Resident=pfs3ds-handler ##end handler diff --git a/workbench/devs/CDVDFS/src/cdrom.conf b/workbench/devs/CDVDFS/src/cdrom.conf index 26a6e70218..77921696ae 100644 --- a/workbench/devs/CDVDFS/src/cdrom.conf +++ b/workbench/devs/CDVDFS/src/cdrom.conf @@ -6,4 +6,5 @@ residentpri -1 ##begin handler CDVD_Main DosType=0x43445644 +CDVD_Main Resident=CDFileSystem ##end handler -- 2.11.4.GIT