Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

feat: Added O:\ and D:\ (SRA) mountpoints and T:\ ERA mountpoint #97

Merged
merged 1 commit into from
Jul 23, 2024
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
10 changes: 9 additions & 1 deletion docs/operating-system/xbox-operating-system.md
Original file line number Diff line number Diff line change
Expand Up @@ -34,7 +34,7 @@ of the console. This operating system is currently based on Windows

### SRA Virtual Drives

| File Name | Mount Point as seen by SystemOS | Dev-Only | Read-Only | Desc |
| File Name | Mount Point as seen by SystemOS | Dev-Only | Read-Only | Desc |
| ------------------ | ----------- | -------- | --------- | -------------------------------------------------------------- |
| system.xvd | C:\\ | false | true | System Boot. |
| systemaux.xvd | X:\\ | false | true | Inbox apps. |
Expand All @@ -46,6 +46,13 @@ of the console. This operating system is currently based on Windows
| user.xvd | U:\\ | false | false | User and application data. |
| user-devkit.xvd | U:\\ | true | false | User and application data. |

Other Mount points

| Device | Mount Point as seen by SystemOS | Dev-Only | Read-Only | Desc |
| ----------------------------- | ----------- | -------- | --------- | --------------------------------------------------------------------- |
| USB Storage | D:\\ | false | false | 1st USB Storage device, plain NTFS, for media storage only, not Games.|
| Optical Disc Drive | O:\\ | false | true | Optical Disc Drive (ODD) |

## Game/Era

The Game operating system is used exclusively for games that target the
Expand All @@ -59,6 +66,7 @@ smaller and more efficient.
| ------------ | ----------- | ------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- |
| ERA.xvd | C:\\ | GameOS's Windows installation. Packaged with games via the XVC's user data. Attempts to read from this partition will result in the hypervisor terminating the ERA VM. |
| Game.XVC | G:\\ | Running game's binaries/data. The XVC mounted and decrypted. |
| tempXX | T:\\ | ERA Temporary XVD - Used by ERA-Games for temporary storage, `XX` being a placeholder |
| ERATools.xvd | J:\\ | (MS Internal (and ERA Test?) Devkits with XDK recoveries only). Contains tools like ipconfig, telnetd, debug support dlls and dlls needed to connect to the XDK via the XB CLI tools. |

## GameCore
Expand Down
Loading