forked from M-Labs/artiq
runtime: we're growing, put storage at 1M instead of 512K.
This commit is contained in:
parent
e2513a2401
commit
188764693e
|
@ -70,7 +70,7 @@ SECTIONS
|
||||||
{
|
{
|
||||||
/* Keep in sync with artiq_flash.py */
|
/* Keep in sync with artiq_flash.py */
|
||||||
_fstorage = .;
|
_fstorage = .;
|
||||||
. = _ftext + 0x80000;
|
. = _ftext + 0x100000;
|
||||||
. += /*SPIFLASH_SECTOR_SIZE*/ 0x10000;
|
. += /*SPIFLASH_SECTOR_SIZE*/ 0x10000;
|
||||||
_estorage = .;
|
_estorage = .;
|
||||||
} > runtime
|
} > runtime
|
||||||
|
|
|
@ -188,7 +188,7 @@ def main():
|
||||||
parser = get_argparser()
|
parser = get_argparser()
|
||||||
opts = parser.parse_args()
|
opts = parser.parse_args()
|
||||||
|
|
||||||
storage_at = 0x80000 # Keep in sync with runtime.ld
|
storage_at = 0x100000 # Keep in sync with runtime.ld
|
||||||
config = {
|
config = {
|
||||||
"kc705": {
|
"kc705": {
|
||||||
"programmer_factory": partial(ProgrammerJtagSpi7, "kc705"),
|
"programmer_factory": partial(ProgrammerJtagSpi7, "kc705"),
|
||||||
|
|
Loading…
Reference in New Issue