Add files

This commit is contained in:
Takumi Sueda
2020-09-28 00:49:26 +09:00
parent dbb63fcfc2
commit 619501c921
6 changed files with 222 additions and 2 deletions

38
r3build.toml Normal file
View File

@@ -0,0 +1,38 @@
[log]
time = true
[[job]]
name = "U-Boot"
path = './u-boot-brain'
type = "make"
directory = "u-boot-brain"
target = "u-boot.sb"
when = "modified"
glob = [
'./u-boot-brain/*.c',
'./u-boot-brain/*.h',
'./u-boot-brain/*.dts',
'./u-boot-brain/*config',
]
environment.ARCH = "arm"
environment.CROSS_COMPILE = "arm-linux-gnueabi-"
[[job]]
name = "Linux"
path = "./linux-brain"
type = "make"
target = "lbuild"
when = "modified"
regex = [
'./linux-brain/.+\.[ch]$',
'./linux-brain/.+\.dts$',
]
environment.ARCH = "arm"
environment.CROSS_COMPILE = "arm-linux-gnueabi-"