Install grep before busybox on suse distros
busybox-grep is pulled in by the base image and it conflicts with rsync package installs because rsync needs grep proper. Install grep proper prior to installing the base distro to avoid this issue later when trying to install rsync. Change-Id: I2ec2bf39a2af214443a93776231657b25035e54f
This commit is contained in:
parent
d140cc239a
commit
45688b20a2
@ -100,6 +100,9 @@ sudo mount -t sysfs none $TARGET_ROOT/sys
|
||||
|
||||
# Install filesystem, base and useful tools
|
||||
sudo zypper ${ZYPPER_TARGET_OPTS} install --no-recommends filesystem
|
||||
# Install grep before base to avoid pulling in busybox-grep as it conflicts
|
||||
# with rsync installation
|
||||
sudo zypper ${ZYPPER_TARGET_OPTS} install --no-recommends grep
|
||||
# Install xz before base to avoid pulling in busybox-xz
|
||||
# https://bugzilla.opensuse.org/show_bug.cgi?id=1172209
|
||||
sudo zypper ${ZYPPER_TARGET_OPTS} install --no-recommends xz
|
||||
|
Loading…
Reference in New Issue
Block a user