From dddb5bfdeaced12b8aa4fea5a972caf8b7c09036 Mon Sep 17 00:00:00 2001 From: Michael Scire Date: Tue, 11 Oct 2022 15:47:29 -0700 Subject: [PATCH] boot2: launch new eth sysmodule after bsdsockets --- .../include/stratosphere/ncm/ncm_system_content_meta_id.hpp | 2 ++ .../source/boot2/boot2_api.board.nintendo_nx.cpp | 2 ++ 2 files changed, 4 insertions(+) diff --git a/libraries/libstratosphere/include/stratosphere/ncm/ncm_system_content_meta_id.hpp b/libraries/libstratosphere/include/stratosphere/ncm/ncm_system_content_meta_id.hpp index 9d68e9a3e..cadd5b9a5 100644 --- a/libraries/libstratosphere/include/stratosphere/ncm/ncm_system_content_meta_id.hpp +++ b/libraries/libstratosphere/include/stratosphere/ncm/ncm_system_content_meta_id.hpp @@ -97,6 +97,7 @@ namespace ams::ncm { static const SystemProgramId Ngct; static const SystemProgramId Pgl; static const SystemProgramId Omm; + static const SystemProgramId Eth; static const SystemProgramId End; @@ -203,6 +204,7 @@ namespace ams::ncm { inline constexpr const SystemProgramId SystemProgramId::Ngct = { 0x0100000000000041ul }; inline constexpr const SystemProgramId SystemProgramId::Pgl = { 0x0100000000000042ul }; inline constexpr const SystemProgramId SystemProgramId::Omm = { 0x0100000000000045ul }; + inline constexpr const SystemProgramId SystemProgramId::Eth = { 0x0100000000000046ul }; inline constexpr const SystemProgramId SystemProgramId::End = { 0x01000000000007FFul }; diff --git a/libraries/libstratosphere/source/boot2/boot2_api.board.nintendo_nx.cpp b/libraries/libstratosphere/source/boot2/boot2_api.board.nintendo_nx.cpp index 7141f7427..005e38e95 100644 --- a/libraries/libstratosphere/source/boot2/boot2_api.board.nintendo_nx.cpp +++ b/libraries/libstratosphere/source/boot2/boot2_api.board.nintendo_nx.cpp @@ -50,6 +50,7 @@ namespace ams::boot2 { ncm::SystemProgramId::Wlan, /* wlan */ ncm::SystemProgramId::Bluetooth, /* bluetooth */ ncm::SystemProgramId::BsdSockets, /* bsdsockets */ + ncm::SystemProgramId::Eth, /* eth */ ncm::SystemProgramId::Nifm, /* nifm */ ncm::SystemProgramId::Ldn, /* ldn */ ncm::SystemProgramId::Account, /* account */ @@ -94,6 +95,7 @@ namespace ams::boot2 { ncm::SystemProgramId::Wlan, /* wlan */ ncm::SystemProgramId::Bluetooth, /* bluetooth */ ncm::SystemProgramId::BsdSockets, /* bsdsockets */ + ncm::SystemProgramId::Eth, /* eth */ ncm::SystemProgramId::Nifm, /* nifm */ ncm::SystemProgramId::Ldn, /* ldn */ ncm::SystemProgramId::Account, /* account */