This repository has been archived by the owner on Aug 3, 2022. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 4
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #88 from tiiuae/internal_build_4_3
Internal build 4.3
- Loading branch information
Showing
11 changed files
with
34 additions
and
7 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Submodule fogsw_configs
updated
from 9ff7aa to 0c0f09
Submodule fogsw_kernel_config
added at
271046
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,18 @@ | ||
#!/bin/bash | ||
|
||
echo "Creating deb package linux-image..." | ||
build_dir=$(mktemp -d) | ||
|
||
pushd ${build_dir} > /dev/null | ||
apt-get source linux-hwe-5.11-source-5.11.0 | ||
popd > /dev/null | ||
cp -rf ../../fogsw_kernel_config/* ${build_dir}/ | ||
# The second parameter is ignored by the build script. | ||
../../fogsw_kernel_config/packaging/build.sh $(realpath ${build_dir}) $(realpath ${build_dir}) "fog" | ||
|
||
# Third parameter is the target directory where to copy the debian package. | ||
../../fogsw_kernel_config/packaging/package.sh $(realpath ${build_dir}) "fog" "$(realpath $(dirname ${0}))/../" | ||
rm -rf ${build_dir} | ||
echo "Done" | ||
|
||
exit 0 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Submodule communication_link
updated
from 48caad to a59920
Submodule control_interface
updated
7 files
+14 −6 | .github/workflows/main.yaml | |
+2 −2 | CMakeLists.txt | |
+1 −1 | README.md | |
+6 −1 | config/control_interface.yaml | |
+2 −0 | launch/control_interface.py | |
+1 −1 | package.xml | |
+129 −53 | src/control_interface.cpp |
Submodule fog_msgs
updated
7 files
+11 −0 | .github/workflows/main.yaml | |
+32 −0 | .github/workflows/update-rclgo-msgs.yaml | |
+1 −0 | CMakeLists.txt | |
+2 −2 | msg/ControlInterfaceDiagnostics.msg | |
+5 −0 | msg/NavigationDiagnostics.msg | |
+1 −1 | package.xml | |
+2 −0 | srv/WaypointToLocal.srv |
Submodule mocap_pose
updated
8 files
+1 −1 | .gitmodules | |
+2 −1 | CHANGELOG.rst | |
+21 −8 | CMakeLists.txt | |
+1 −1 | include/mocap_pose/mocap_pose.hpp | |
+4 −7 | package.xml | |
+1 −1 | qualisys_cpp_sdk | |
+163 −123 | src/mocap_pose.cpp | |
+17 −0 | test/mocap_test.cpp |
Submodule navigation
updated
8 files
+1 −1 | CMakeLists.txt | |
+6 −7 | config/navigation.yaml | |
+83 −184 | include/navigation/astar_planner.hpp | |
+2 −1 | launch/navigation.py | |
+1 −1 | package.xml | |
+38 −9 | scripts/waypoint_publisher.py | |
+365 −309 | src/astar_planner.cpp | |
+289 −170 | src/navigation.cpp |
Submodule systemd
updated
6 files
+1 −0 | packaging/debian/postinst | |
+1 −0 | packaging/debian/prerm | |
+15 −0 | system/ota_update.service | |
+13 −0 | system/update_agent.service | |
+15 −0 | vm-main/ota_update.service | |
+13 −0 | vm-main/update_agent.service |