envkernel.sh: Add xz to the list of packages to install (!1783)

This is required when the kernel is configured to be compressed with
something different than gzip.
This commit is contained in:
Daniele Debernardi 2019-05-09 22:14:15 +00:00 committed by Oliver Smith
parent de51912ae4
commit e8cba8b20a
1 changed files with 2 additions and 1 deletions

View File

@ -116,7 +116,8 @@ initialize_chroot() {
make \
musl-dev \
ncurses-dev \
perl || return 1
perl \
xz || return 1
# Create /mnt/linux
sudo mkdir -p "$chroot/mnt/linux"