body: add fw repo as submodule (#25420)

* body: add fw repo as submodule

* bump body

* file whitelist

* revert that for now
pull/25118/head
Adeeb Shihadeh 3 years ago committed by GitHub
parent f0214d5e83
commit 7e6f4e74bf
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
  1. 1
      .gitignore
  2. 23
      .gitmodules
  3. 2
      .pre-commit-config.yaml
  4. 10
      SConstruct
  5. 1
      body
  6. 13
      release/files_common

1
.gitignore vendored

@ -55,7 +55,6 @@ selfdrive/modeld/_dmonitoringmodeld
/src/ /src/
one one
/body/
openpilot openpilot
notebooks notebooks
xx xx

23
.gitmodules vendored

@ -1,15 +1,18 @@
[submodule "panda"] [submodule "panda"]
path = panda path = panda
url = ../../commaai/panda.git url = ../../commaai/panda.git
[submodule "opendbc"] [submodule "opendbc"]
path = opendbc path = opendbc
url = ../../commaai/opendbc.git url = ../../commaai/opendbc.git
[submodule "laika_repo"] [submodule "laika_repo"]
path = laika_repo path = laika_repo
url = ../../commaai/laika.git url = ../../commaai/laika.git
[submodule "cereal"] [submodule "cereal"]
path = cereal path = cereal
url = ../../commaai/cereal.git url = ../../commaai/cereal.git
[submodule "rednose_repo"] [submodule "rednose_repo"]
path = rednose_repo path = rednose_repo
url = ../../commaai/rednose.git url = ../../commaai/rednose.git
[submodule "body"]
path = body
url = ../../commaai/body.git

@ -54,7 +54,7 @@ repos:
entry: cppcheck entry: cppcheck
language: system language: system
types: [c++] types: [c++]
exclude: '^(third_party/)|(pyextra/)|(cereal/)|(rednose/)|(rednose_repo/)|(opendbc/)|(panda/)|(tools/)|(selfdrive/modeld/thneed/debug/)|(selfdrive/modeld/test/)|(selfdrive/camerad/test/)/|(installer/)' exclude: '^(third_party/)|(pyextra/)|(cereal/)|(body/)|(rednose/)|(rednose_repo/)|(opendbc/)|(panda/)|(tools/)|(selfdrive/modeld/thneed/debug/)|(selfdrive/modeld/test/)|(selfdrive/camerad/test/)|(installer/)'
args: args:
- --error-exitcode=1 - --error-exitcode=1
- --language=c++ - --language=c++

@ -393,9 +393,13 @@ if arch != "Darwin":
# Build openpilot # Build openpilot
SConscript(['cereal/SConscript']) # build submodules
SConscript(['panda/board/SConscript']) SConscript([
SConscript(['opendbc/can/SConscript']) 'cereal/SConscript',
'body/board/SConscript',
'panda/board/SConscript',
'opendbc/can/SConscript',
])
SConscript(['third_party/SConscript']) SConscript(['third_party/SConscript'])

@ -0,0 +1 @@
Subproject commit 04aeb30ce0bb14759989cd374158233877e1e151

@ -434,6 +434,19 @@ rednose/.gitignore
rednose/** rednose/**
laika/** laika/**
body/.gitignore
body/board/SConscript
body/board/*.h
body/board/*.c
body/board/*.s
body/board/*.ld
body/board/inc/**
body/board/obj/
body/board/bldc/**
body/board/drivers/**
body/certs/**
body/crypto/**
cereal/.gitignore cereal/.gitignore
cereal/__init__.py cereal/__init__.py
cereal/car.capnp cereal/car.capnp

Loading…
Cancel
Save