Skip to content
This repository was archived by the owner on Apr 25, 2021. It is now read-only.

Commit d66876a

Browse files
committed
EEPROM 개선 (마지막 부팅 파일시스템 컴포넌트 주소를 EEPROM.setData() 로 기록)
1 parent 4f91c05 commit d66876a

1 file changed

Lines changed: 2 additions & 1 deletion

File tree

src/modules/bios.py

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -51,7 +51,8 @@ def main():
5151
if not check_bootable(address):
5252
invoke(__path__, 'setData', b'')
5353
for address in filesystems:
54-
if check_bootable(address):
54+
if check_bootable(address):
55+
invoke(__path__, 'setData', address.encode())
5556
break
5657
else:
5758
crash("no bootable medium found")

0 commit comments

Comments
 (0)