forked from M-Labs/artiq
firmware: enlarge bootloader partition to 4 sectors.
This commit is contained in:
parent
a9ad4f08e9
commit
55cfdec644
|
@ -37,7 +37,7 @@ mod imp {
|
|||
use spiflash;
|
||||
use super::Error;
|
||||
|
||||
// One flash sector immediately after the bootloader.
|
||||
// One flash sector immediately before the firmware.
|
||||
const ADDR: usize = ::mem::FLASH_BOOT_ADDRESS - spiflash::PAGE_SIZE;
|
||||
const SIZE: usize = spiflash::PAGE_SIZE;
|
||||
|
||||
|
|
|
@ -195,8 +195,8 @@ def main():
|
|||
"variants": ["nist_clock", "nist_qc2"],
|
||||
"gateware": (0, 0x000000),
|
||||
"bootloader": (0, 0xaf0000),
|
||||
"storage": (0, 0xb00000),
|
||||
"runtime": (0, 0xb10000),
|
||||
"storage": (0, 0xb30000),
|
||||
"runtime": (0, 0xb40000),
|
||||
},
|
||||
"sayma": {
|
||||
"programmer_factory": ProgrammerSayma,
|
||||
|
@ -204,8 +204,8 @@ def main():
|
|||
"variants": ["standalone"],
|
||||
"gateware": (0, 0x000000),
|
||||
"bootloader": (1, 0x000000),
|
||||
"storage": (1, 0x010000),
|
||||
"runtime": (1, 0x020000),
|
||||
"storage": (1, 0x040000),
|
||||
"runtime": (1, 0x050000),
|
||||
},
|
||||
}[opts.target]
|
||||
|
||||
|
|
Loading…
Reference in New Issue