-
Notifications
You must be signed in to change notification settings - Fork 254
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Signed-off-by: Ryan Friedman <[email protected]>
- Loading branch information
Showing
2 changed files
with
16 additions
and
16 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,20 +1,9 @@ | ||
require ${COREBASE}/meta/recipes-core/images/core-image-minimal.bb | ||
require ros-image-minimal.bb | ||
|
||
SUMMARY = "A small image just capable of starting core ROS." | ||
DESCRIPTION = "${SUMMARY}" | ||
DESCRIPTION = "Extends ros-image-minimal with standard Linux tools normally in Ubuntu Server that are used by ROS." | ||
|
||
inherit ros_distro_${ROS_DISTRO} | ||
inherit ${ROS_DISTRO_TYPE}_image | ||
|
||
IMAGE_INSTALL:append = " \ | ||
ros-core \ | ||
" | ||
|
||
# The deploy code requires bash and | ||
# normal linux utilities not busybox ones. | ||
# See https://github.com/ros/meta-ros/issues/1068#issuecomment-1908098993 | ||
CORE_IMAGE_EXTRA_INSTALL += "\ | ||
bash coreutils util-linux tar gzip bzip2 kmod \ | ||
python3-modules python3-misc \ | ||
e2fsprogs e2fsprogs-mke2fs parted \ | ||
" | ||
bash \ | ||
" | ||
|
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,11 @@ | ||
require ${COREBASE}/meta/recipes-core/images/core-image-minimal.bb | ||
|
||
SUMMARY = "A minimal image just capable of starting core ROS." | ||
DESCRIPTION = "${SUMMARY}" | ||
|
||
inherit ros_distro_${ROS_DISTRO} | ||
inherit ${ROS_DISTRO_TYPE}_image | ||
|
||
IMAGE_INSTALL:append = " \ | ||
ros-core \ | ||
" |