-
Notifications
You must be signed in to change notification settings - Fork 11
/
Copy pathupdate_bootbin_mac.py
executable file
·55 lines (50 loc) · 2.4 KB
/
update_bootbin_mac.py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
#!/usr/bin/python
## Copyright (c) 2014 Quanta Research Cambridge, Inc.
## Permission is hereby granted, free of charge, to any person
## obtaining a copy of this software and associated documentation
## files (the "Software"), to deal in the Software without
## restriction, including without limitation the rights to use, copy,
## modify, merge, publish, distribute, sublicense, and/or sell copies
## of the Software, and to permit persons to whom the Software is
## furnished to do so, subject to the following conditions:
## The above copyright notice and this permission notice shall be
## included in all copies or substantial portions of the Software.
## THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
## EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
## MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
## NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS
## BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN
## ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN
## CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
## SOFTWARE.
import os, sys
import argparse
target_string = 'THE NEXT FIELD IS THE LOCAL MAC ADDRESS FOR UPDATE'
dtb_header = [0, 0, 0, 0, 0, 3, 0, 0, 0, 6, 0, 0] # last two bytes vary with machine 0x6c
if len(sys.argv) != 3:
print 'update_bootbin_mac: Usage: update_bootbin_mac.py <filename> <new_hex_value>'
sys.exit(1)
inbuf = open(sys.argv[1], 'r+b').read()
ind = inbuf.find(target_string)
if ind < 0:
print 'update_bootbin_mac: string not found', target_string
sys.exit(1)
#print 'JJ', ind, len(inbuf)
ind = ind + len(target_string)
if ind + len(dtb_header) + 7 > len(inbuf):
print 'update_bootbin_mac: file too short'
sys.exit(1)
indorig = ind
for cbyte in dtb_header:
if ord(inbuf[ind]) != cbyte:
print 'update_bootbin_mac: byte not found', indorig, len(inbuf)
print 'update_bootbin_mac: actual', [p.encode('hex') for p in inbuf[indorig:indorig+len(dtb_header)]]
print 'update_bootbin_mac: expected', dtb_header
sys.exit(1)
ind = ind + 1
ind = ind + 2 # last two bytes in dtb header vary with machine
print 'current', [p.encode('hex') for p in inbuf[ind: ind + 6]]
inbuf = inbuf[:ind+4] + chr(int(sys.argv[2], 0)) + inbuf[ind+5:]
print 'updated', [p.encode('hex') for p in inbuf[ind: ind + 6]]
open(sys.argv[1], 'w+b').write(inbuf)
sys.exit(0)