You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
This is more of an issue with nxdk itself, however, nxdk-rdt is directly affected by it.
Currently, the network settings are hardcoded in net.c
For me, this meant that whenever I wanted to run nxdk-rdt in XQEMU, I had to go in and change the source code to use DHCP. When running on Xbox, I manually had to change it to use hardcoded addresses.
I've locally solved the issue by setting up a DHCP server for the ethernet port on my laptop, so the connected Xbox would also work with DHCP.
However, other people should not have to go through this.
We should fix this by loading the systems network settings from EEPROM.
The implementation should probably be in nxdk, but nxdk-rdt is currently the primary stakeholder. nxdk-rdt will also require some code changes. Hence the issue on this repository.
The text was updated successfully, but these errors were encountered:
Good idea...configure your network settings for Xbox, let the titles use them as expected. I think the code really belongs in some kind of generic network startup function in nxdk. We can do it here for now since this is the only real application, but down the road it'll probably just get copy-pasted, so I'd rather it be in the common code.
This is also what I meant in my first post (see the first line and the last sentence). = This is an nxdk issue, but the issue is more likely to be fixed if it's listed here. It should still be implemented directly in nxdk. However nxdk-rdt also needs a PR to support the changes in nxdk when this happens.
This is more of an issue with nxdk itself, however, nxdk-rdt is directly affected by it.
Currently, the network settings are hardcoded in net.c
For me, this meant that whenever I wanted to run nxdk-rdt in XQEMU, I had to go in and change the source code to use DHCP. When running on Xbox, I manually had to change it to use hardcoded addresses.
I've locally solved the issue by setting up a DHCP server for the ethernet port on my laptop, so the connected Xbox would also work with DHCP.
However, other people should not have to go through this.
We should fix this by loading the systems network settings from EEPROM.
The implementation should probably be in nxdk, but nxdk-rdt is currently the primary stakeholder. nxdk-rdt will also require some code changes. Hence the issue on this repository.
The text was updated successfully, but these errors were encountered: