Skip to content

Push to production #2686

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

Merged
merged 4 commits into from
Nov 2, 2022
Merged
Show file tree
Hide file tree
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
Original file line number Diff line number Diff line change
Expand Up @@ -214,6 +214,36 @@ Specify DHCP_OPTION97=0 to revert the old behaviour or a non-zero hex-value to s

Default: `0x34695052`

[[MAC_ADDRESS]]
==== MAC_ADDRESS

Overrides the Raspberry Pi Ethernet MAC address with the given value. e.g. `dc:a6:32:01:36:c2`

Default: ""

[[MAC_ADDRESS_OTP]]
==== MAC_ADDRESS_OTP
Overrides the Raspberry Pi Ethernet MAC address with a value stored in the xref:raspberry-pi.adoc#write-and-read-customer-otp-values[Customer OTP] registers.

For example, to use a MAC address stored in rows 0 and 1 of the `Customer OTP`.
----
MAC_ADDRESS_OTP=0,1
----

The first value (row 0 in the example) contains the OUI and the most significant 8 bits of the MAC address. The second value (row 1 in the example) stores the remaining 16-bits of the MAC address.
This is the same format as used for the Raspberry Pi MAC address programmed at manufacture.

Any two customer rows may be selected and combined in either order.

The `Customer OTP` rows are OTP registers 36 to 43 in the `vcgencmd otp_dump` output so if the first two rows are programmed as follows then `MAC_ADDRESS_OTP=0,1` would give a MAC address of `e4:5f:01:20:24:7e`.

----
36:247e0000
37:e45f0120
----

Default: ""

==== Static IP address configuration

If TFTP_IP and the following options are set then DHCP is skipped and the static IP configuration is applied. If the TFTP server is on the same subnet as the client then GATEWAY may be omitted.
Expand All @@ -239,13 +269,6 @@ The gateway address to use if the TFTP server is on a different subnet e.g. `192

Default: ""

[[MAC_ADDRESS]]
===== MAC_ADDRESS

Overrides the Ethernet MAC address with the given value. e.g. `dc:a6:32:01:36:c2`

Default: ""

[[DISABLE_HDMI]]
==== DISABLE_HDMI

Expand Down
1 change: 1 addition & 0 deletions jekyll-assets/_includes/footer.html
Original file line number Diff line number Diff line change
Expand Up @@ -148,6 +148,7 @@
<li class="__rptl-footer-item"><a href="/terms-conditions-sale/" class="__rptl-footer-link">Terms and conditions of sale</a></li>
<li class="__rptl-footer-item"><a href="/privacy/" class="__rptl-footer-link">Privacy</a></li>
<li class="__rptl-footer-item"><a href="/contact/security/" class="__rptl-footer-link">Security</a></li>
<li class="__rptl-footer-item"><a href="/verify/" class="__rptl-footer-link">Verify our bank details</a></li>
</ul>
</div>
<div class="__rptl-footer-column">
Expand Down