Skip to content

Commit effa9e0

Browse files
authored
Merge pull request #33 from Ar-Ray-code/fix/jazzy_pkg_broken
Fix/jazzy pkg broken
2 parents ca99507 + 98794ac commit effa9e0

4 files changed

Lines changed: 25 additions & 17 deletions

File tree

build/Dockerfile

Lines changed: 6 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -82,6 +82,9 @@ RUN apt-get update && \
8282
# ros2_control
8383
libfmt-dev \
8484
librange-v3-dev \
85+
libcap-dev \
86+
# stackchan
87+
libserial-dev \
8588
# autoware-core
8689
libsimde-dev \
8790
libmatio-dev \
@@ -120,9 +123,9 @@ RUN wget https://s3.ap-northeast-1.wasabisys.com/download-raw/dpkg/openvino/debi
120123
apt-get install -y ./openvino-2022-raspbian-bullseye-arm64-0.1.0-20221219.deb
121124

122125
# realsense
123-
RUN wget https://s3.ap-northeast-1.wasabisys.com/download-raw/dpkg/librealsense/debian/bullseye/librealsense2-dev_2.54.1_arm64.deb && \
124-
apt-get install -y ./librealsense2-dev_2.54.1_arm64.deb && \
125-
rm ./librealsense2-dev_2.54.1_arm64.deb && \
126+
RUN wget https://s3.ap-northeast-1.wasabisys.com/download-raw/dpkg/librealsense/debian/bookworm/librealsense-v4l2-backend-app-bookworm-2.56.3-arm64.deb && \
127+
apt-get install -y ./librealsense-v4l2-backend-app-bookworm-2.56.3-arm64.deb && \
128+
rm ./librealsense-v4l2-backend-app-bookworm-2.56.3-arm64.deb && \
126129
echo "export realsense2_DIR=/usr/local/lib/aarch64-linux-gnu/cmake/realsense2/" >> ~/.bashrc && \
127130
echo "export OpenCV_DIR=/usr/lib/aarch64-linux-gnu/cmake/opencv4/" >> ~/.bashrc
128131

build/ros2_ws/build.bash

Lines changed: 7 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -27,12 +27,12 @@ mkdir -p src/
2727

2828
if [ ${BUILD_FULL_PKG} = true ]; then
2929
echo "Building full package"
30-
wget https://raw.githubusercontent.com/Ar-Ray-code/rpi-bullseye-ros2/main/repos/ds.repos
31-
wget https://raw.githubusercontent.com/Ar-Ray-code/rpi-bullseye-ros2/main/repos/realsense.repos
32-
wget https://raw.githubusercontent.com/Ar-Ray-code/rpi-bullseye-ros2/main/repos/rostackchan.repos
33-
wget https://raw.githubusercontent.com/Ar-Ray-code/rpi-bullseye-ros2/main/repos/urg.repos
34-
wget https://raw.githubusercontent.com/Ar-Ray-code/rpi-bullseye-ros2/main/repos/velodyne.repos
35-
wget https://raw.githubusercontent.com/Ar-Ray-code/rpi-bullseye-ros2/main/repos/webcam.repos
30+
wget https://raw.githubusercontent.com/Ar-Ray-code/rpi-bullseye-ros2/${DISTRO}/repos/ds.repos
31+
wget https://raw.githubusercontent.com/Ar-Ray-code/rpi-bullseye-ros2/${DISTRO}/repos/realsense.repos
32+
wget https://raw.githubusercontent.com/Ar-Ray-code/rpi-bullseye-ros2/${DISTRO}/repos/rostackchan.repos
33+
wget https://raw.githubusercontent.com/Ar-Ray-code/rpi-bullseye-ros2/${DISTRO}/repos/urg.repos
34+
wget https://raw.githubusercontent.com/Ar-Ray-code/rpi-bullseye-ros2/${DISTRO}/repos/velodyne.repos
35+
wget https://raw.githubusercontent.com/Ar-Ray-code/rpi-bullseye-ros2/${DISTRO}/repos/webcam.repos
3636

3737
for f in *.repos; do
3838
echo "---- importing $f ----"
@@ -57,6 +57,7 @@ export CPLUS_INCLUDE_PATH=${PCL_INCLUDE_PATH}:${EIGEN_INCLUDE_PATH}:$CPLUS_INCLU
5757

5858
colcon build \
5959
--install-base $(pwd)/${DISTRO}/ \
60+
--executor sequential \
6061
--packages-ignore autoware_trajectory autoware_ekf_localizer autoware_map_projection_loader autoware_test_utils autoware_planning_test_manager autoware_gnss_poser autoware_route_handler autoware_map_loader autoware_simple_pure_pursuit autoware_velocity_smoother autoware_mission_planner autoware_path_generator autoware_behavior_velocity_planner_common autoware_behavior_velocity_planner autoware_motion_velocity_planner_common autoware_motion_velocity_planner autoware_motion_velocity_obstacle_stop_module autoware_behavior_velocity_stop_line_module \
6162
--merge-install --cmake-args -DCMAKE_BUILD_TYPE=Release -DCMAKE_CXX_FLAGS="-march=armv8-a+crc -mtune=cortex-a72 -O3" -DCMAKE_C_FLAGS="-march=armv8-a+crc -mtune=cortex-a72 -O3"
6263

repos/realsense.repos

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ repositories:
1010
realsense-ros:
1111
type: git
1212
url: https://github.com/IntelRealSense/realsense-ros.git
13-
version: 4.54.1
13+
version: 4.56.4
1414
diagnostics:
1515
type: git
1616
url: https://github.com/ros/diagnostics.git

repos/rostackchan.repos

Lines changed: 11 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -18,35 +18,39 @@ repositories:
1818
ros2_control:
1919
type: git
2020
url: https://github.com/ros-controls/ros2_control.git
21-
version: iron
21+
version: jazzy
2222
control_msgs:
2323
type: git
2424
url: https://github.com/ros-controls/control_msgs.git
25-
version: iron
25+
version: jazzy
2626
backward_ros:
2727
type: git
2828
url: https://github.com/pal-robotics/backward_ros.git
2929
version: foxy-devel
3030
realtime_tools:
3131
type: git
3232
url: https://github.com/ros-controls/realtime_tools.git
33-
version: 4.2.0
33+
version: jazzy
3434
xacro:
3535
type: git
3636
url: https://github.com/ros/xacro.git
3737
version: ros2
3838
ros2_controllers:
3939
type: git
4040
url: https://github.com/ros-controls/ros2_controllers.git
41-
version: iron
41+
version: jazzy
42+
ros2_control_cmake:
43+
type: git
44+
url: https://github.com/ros-controls/ros2_control_cmake.git
45+
version: master
4246
angles:
4347
type: git
4448
url: https://github.com/ros/angles.git
4549
version: 1.16.0
4650
control_toolbox:
4751
type: git
4852
url: https://github.com/ros-controls/control_toolbox.git
49-
version: 5.1.0
53+
version: jazzy
5054
filters:
5155
type: git
5256
url: https://github.com/ros/filters.git
@@ -78,8 +82,8 @@ repositories:
7882
DynamixelSDK:
7983
type: git
8084
url: https://github.com/ROBOTIS-GIT/DynamixelSDK.git
81-
version: humble-devel
85+
version: jazzy
8286
dynamixel-workbench:
8387
type: git
8488
url: https://github.com/ROBOTIS-GIT/dynamixel-workbench.git
85-
version: humble-devel
89+
version: jazzy

0 commit comments

Comments
 (0)