mirror of
https://github.com/Atmosphere-NX/Atmosphere.git
synced 2024-11-10 14:11:43 +00:00
boot2: launch new eth sysmodule after bsdsockets
This commit is contained in:
parent
ed0572bd53
commit
dddb5bfdea
2 changed files with 4 additions and 0 deletions
|
@ -97,6 +97,7 @@ namespace ams::ncm {
|
||||||
static const SystemProgramId Ngct;
|
static const SystemProgramId Ngct;
|
||||||
static const SystemProgramId Pgl;
|
static const SystemProgramId Pgl;
|
||||||
static const SystemProgramId Omm;
|
static const SystemProgramId Omm;
|
||||||
|
static const SystemProgramId Eth;
|
||||||
|
|
||||||
static const SystemProgramId End;
|
static const SystemProgramId End;
|
||||||
|
|
||||||
|
@ -203,6 +204,7 @@ namespace ams::ncm {
|
||||||
inline constexpr const SystemProgramId SystemProgramId::Ngct = { 0x0100000000000041ul };
|
inline constexpr const SystemProgramId SystemProgramId::Ngct = { 0x0100000000000041ul };
|
||||||
inline constexpr const SystemProgramId SystemProgramId::Pgl = { 0x0100000000000042ul };
|
inline constexpr const SystemProgramId SystemProgramId::Pgl = { 0x0100000000000042ul };
|
||||||
inline constexpr const SystemProgramId SystemProgramId::Omm = { 0x0100000000000045ul };
|
inline constexpr const SystemProgramId SystemProgramId::Omm = { 0x0100000000000045ul };
|
||||||
|
inline constexpr const SystemProgramId SystemProgramId::Eth = { 0x0100000000000046ul };
|
||||||
|
|
||||||
inline constexpr const SystemProgramId SystemProgramId::End = { 0x01000000000007FFul };
|
inline constexpr const SystemProgramId SystemProgramId::End = { 0x01000000000007FFul };
|
||||||
|
|
||||||
|
|
|
@ -50,6 +50,7 @@ namespace ams::boot2 {
|
||||||
ncm::SystemProgramId::Wlan, /* wlan */
|
ncm::SystemProgramId::Wlan, /* wlan */
|
||||||
ncm::SystemProgramId::Bluetooth, /* bluetooth */
|
ncm::SystemProgramId::Bluetooth, /* bluetooth */
|
||||||
ncm::SystemProgramId::BsdSockets, /* bsdsockets */
|
ncm::SystemProgramId::BsdSockets, /* bsdsockets */
|
||||||
|
ncm::SystemProgramId::Eth, /* eth */
|
||||||
ncm::SystemProgramId::Nifm, /* nifm */
|
ncm::SystemProgramId::Nifm, /* nifm */
|
||||||
ncm::SystemProgramId::Ldn, /* ldn */
|
ncm::SystemProgramId::Ldn, /* ldn */
|
||||||
ncm::SystemProgramId::Account, /* account */
|
ncm::SystemProgramId::Account, /* account */
|
||||||
|
@ -94,6 +95,7 @@ namespace ams::boot2 {
|
||||||
ncm::SystemProgramId::Wlan, /* wlan */
|
ncm::SystemProgramId::Wlan, /* wlan */
|
||||||
ncm::SystemProgramId::Bluetooth, /* bluetooth */
|
ncm::SystemProgramId::Bluetooth, /* bluetooth */
|
||||||
ncm::SystemProgramId::BsdSockets, /* bsdsockets */
|
ncm::SystemProgramId::BsdSockets, /* bsdsockets */
|
||||||
|
ncm::SystemProgramId::Eth, /* eth */
|
||||||
ncm::SystemProgramId::Nifm, /* nifm */
|
ncm::SystemProgramId::Nifm, /* nifm */
|
||||||
ncm::SystemProgramId::Ldn, /* ldn */
|
ncm::SystemProgramId::Ldn, /* ldn */
|
||||||
ncm::SystemProgramId::Account, /* account */
|
ncm::SystemProgramId::Account, /* account */
|
||||||
|
|
Loading…
Reference in a new issue