Check that boot loader config works in libs

pull/6056/head
Jimmy Brisson 2018-01-23 18:34:20 -06:00 committed by adbridge
parent 7d20c0adac
commit f94e06151a
3 changed files with 14 additions and 1 deletions

View File

@ -0,0 +1,9 @@
{
"name": "bl",
"target_overrides": {
"LPC1768": {
"target.bootloader_img": "does_not_exists.bin",
"target.restrict_size": "0xFFFFF"
}
}
}

View File

@ -1,7 +1,8 @@
{ {
"target_overrides": { "target_overrides": {
"K64F": { "K64F": {
"target.bootloader_img": "does_not_exists.bin" "target.bootloader_img": "does_not_exists.bin",
"target.restrict_size": "0xFFFFF"
} }
} }
} }

View File

@ -1,5 +1,8 @@
{ {
"K64F": { "K64F": {
"exception_msg": "not found" "exception_msg": "not found"
},
"LPC1768": {
"exception_msg": "not found"
} }
} }