mirror of
https://github.com/CosmicScale/PSBBN-Definitive-English-Patch.git
synced 2025-03-10 18:27:59 +01:00
30 lines
850 B
TOML
30 lines
850 B
TOML
# Name of loaded config, to show to user
|
|
name = "UDPBD BDM driver with HDD support"
|
|
|
|
# Drivers this driver depends on (config file must exist)
|
|
depends = ["i_bdm", "i_dev9_ns"]
|
|
|
|
# Modules to load
|
|
[[module]]
|
|
file = "smap_udpbd.irx"
|
|
args = ["ip=192.168.1.10"]
|
|
env = ["LE", "EE"]
|
|
|
|
# Faking strategy
|
|
# ---------------
|
|
# To allow games to use hdd:
|
|
# - dev9 (no-shutdown) is resident, and can be used by hdd modules
|
|
# - all networking modules are faked (we hope they are not used)
|
|
[[fake]]
|
|
file = "ENT_SMAP.IRX"
|
|
name = "ent_smap"
|
|
version = 0x021f
|
|
loadrv = 0 # 0=ok, -xxx=error code (module not loaded)
|
|
startrv = 2 # 0=RESIDENT_END, 1=NO_RESIDENT_END, 2=REMOVABLE_END
|
|
[[fake]]
|
|
file = "SMAP.IRX"
|
|
name = "INET_SMAP_driver"
|
|
version = 0x0219
|
|
loadrv = 0 # 0=ok, -xxx=error code (module not loaded)
|
|
startrv = 2 # 0=RESIDENT_END, 1=NO_RESIDENT_END, 2=REMOVABLE_END
|