Skip to content

Commit 55457ab

Browse files
committed
add gscam and web_video_server
1 parent d893b98 commit 55457ab

File tree

5 files changed

+7
-6
lines changed

5 files changed

+7
-6
lines changed

build.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ if [[ $EUID -ne 0 ]]; then
66
fi
77

88
./scripts/00_download_raspbian.sh
9-
./scripts/01_extend_raspbian.sh 1000
9+
./scripts/01_extend_raspbian.sh 5000
1010
./scripts/02_mount_raspbian.sh
1111
./scripts/03_copy_qemu.sh
1212
./scripts/04_install_tools.sh

packages

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
ros_comm common_msgs joy roswww
1+
ros_comm common_msgs joy roswww gscam web_video_server rosbridge_server

scripts/00_download_raspbian.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33

44
ZIP=raspbian_lite.zip
55
IMG=raspbian_lite.img
6-
URL=https://downloads.raspberrypi.org/raspbian_lite_latest
6+
URL=http://downloads.raspberrypi.org/raspbian_lite/images/raspbian_lite-2019-04-09/2019-04-08-raspbian-stretch-lite.zip
77

88
echo "Downloading latest raspbian lite release"
99
mkdir -p image

scripts/04_install_tools.sh

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -13,10 +13,10 @@ cat << EOF | chroot $MNT
1313
apt-get install dirmngr
1414
1515
echo "deb http://packages.ros.org/ros/ubuntu stretch main" > /etc/apt/sources.list.d/ros-latest.list
16-
apt-key adv --keyserver hkp://ha.pool.sks-keyservers.net:80 --recv-key 421C365BD9FF1F717815A3895523BAEEB01FA116
16+
apt-key adv --keyserver 'hkp://keyserver.ubuntu.com:80' --recv-key C1CF6E31E6BADE8868B172B4F42ED6FBAB17C654
1717
1818
apt update
1919
apt -y upgrade
2020
21-
apt install -y python-rosdep python-rosinstall-generator python-wstool
22-
EOF
21+
apt install -y python-rosdep python-rosinstall-generator python-wstool python-pip
22+
EOF

scripts/06_install_dependencies.sh

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -10,5 +10,6 @@ rosdep update
1010
1111
cd root/ros_ws
1212
rosdep install -y --from-paths src --ignore-src --rosdistro kinetic -r --os=debian:stretch
13+
apt install libgstreamer0.10-dev libgstreamer-plugins-base0.10-dev # gscam dependencies
1314
1415
EOF

0 commit comments

Comments
 (0)