Skip to content
GitLab
Menu
Projects
Groups
Snippets
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
Menu
Open sidebar
Erik Strand
lufa
Commits
0a00ee40
Commit
0a00ee40
authored
May 13, 2012
by
Dean Camera
Browse files
Minor tweaks to the build tests to ensure that they will operate properly on all systems.
parent
998009c4
Changes
3
Hide whitespace changes
Inline
Side-by-side
BuildTests/BoardDriverTest/BoardDeviceMap.cfg
View file @
0a00ee40
# BOARD DEFINE = {ARCH} : {MCU} :
#
BOARD_USER = avr8 : at90usb1287 :
BOARD_NONE = avr8 : at90usb1287 :
BOARD_USBKEY = avr8 : at90usb1287 :
...
...
@@ -50,3 +50,4 @@ BOARD_BIGMULTIO = avr8 : atmega32u4 :
BOARD_DUCE = avr8 : atmega32u2 :
BOARD_OLIMEX32U4 = avr8 : atmega32u4 :
BOARD_OLIMEXT32U4 = avr8 : atmega32u4 :
#
\ No newline at end of file
BuildTests/BootloaderTest/BootloaderDeviceMap.cfg
View file @
0a00ee40
# BOOTLOADER = {ARCH} : {MCU} : {BOARD} : {FLASH SIZE KB} : {BOOT SIZE KB} :
#
# ------------ CDC Bootloader -------------
CDC = avr8 : at90usb1287 : NONE : 128 : 8 :
CDC = avr8 : at90usb647 : NONE : 64 : 4 :
...
...
@@ -12,7 +12,7 @@ CDC = avr8 : atmega16u2 : NONE : 16 : 4 :
CDC = avr8 : atmega8u2 : NONE : 8 : 4 :
CDC = avr8 : at90usb162 : NONE : 16 : 4 :
CDC = avr8 : at90usb82 : NONE : 8 : 4 :
#
# ------------ DFU Bootloader -------------
DFU = avr8 : at90usb1287 : NONE : 128 : 8 :
DFU = avr8 : at90usb647 : NONE : 64 : 4 :
...
...
@@ -26,7 +26,7 @@ DFU = avr8 : atmega16u2 : NONE : 16 : 4 :
DFU = avr8 : atmega8u2 : NONE : 8 : 4 :
DFU = avr8 : at90usb162 : NONE : 16 : 4 :
DFU = avr8 : at90usb82 : NONE : 8 : 4 :
#
# ------------ HID Bootloader -------------
HID = avr8 : at90usb1287 : NONE : 128 : 4 :
HID = avr8 : at90usb647 : NONE : 64 : 4 :
...
...
@@ -40,3 +40,4 @@ HID = avr8 : atmega16u2 : NONE : 16 : 2 :
HID = avr8 : atmega8u2 : NONE : 8 : 2 :
HID = avr8 : at90usb162 : NONE : 16 : 2 :
HID = avr8 : at90usb82 : NONE : 8 : 2 :
#
\ No newline at end of file
BuildTests/BootloaderTest/makefile
View file @
0a00ee40
...
...
@@ -31,7 +31,7 @@ testbootloaders:
do
\
build_cfg
=
`
echo
$$
line |
sed
's/ //g'
|
grep
-v
"#"
`
;
\
\
if
(
!
test
-
z
"
$$
build_cfg"
)
;
then
\
if
(
test
-
n
"
$$
build_cfg"
)
;
then
\
build_bootloader
=
`
echo
$$
build_cfg |
cut
-d
'='
-f1
`
;
\
build_arch
=
`
echo
$$
build_cfg |
cut
-d
'='
-f2-
|
cut
-d
':'
-f1
`
;
\
build_mcu
=
`
echo
$$
build_cfg |
cut
-d
'='
-f2-
|
cut
-d
':'
-f2
`
;
\
...
...
Write
Preview
Supports
Markdown
0%
Try again
or
attach a new file
.
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment