Skip to content

Commit

Permalink
Tag B9S 1.1 firms in the header.
Browse files Browse the repository at this point in the history
  • Loading branch information
SciresM committed Jun 4, 2017
1 parent f61552c commit 6a3e99a
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion build_boot9strap_firm.py
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,9 @@ def main(argc, argv):
b9s.write(b'FIRM')
# Write (zero (boot priority)), ARM11 Entrypoint, ARM9 Entrypoint
b9s.write(struct.pack('<III', 0x00000000, 0x1FF80200, 0x08001000))
b9s.write(b'\x00' * 0x2D)
b9s.write(b'\x00' * 0x2C)
# Write version value
b9s.write(b'\x01')
# Write boot9strap magic value
b9s.write(b'B9S')
ofs = 0x200
Expand Down

2 comments on commit 6a3e99a

@Ryumarubr
Copy link

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

A question, the process of updating and done as.
Note: I already have boot9strap 1.0 installed on my 3DS.

@james-d-elliott
Copy link

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Just using the installer I believe. But a word of warning GM9 and Luma do not officially support this yet. I'd wait until it's no longer pre-release.

Please sign in to comment.