mirror of
https://github.com/rkt/rkt.git
synced 2025-08-06 13:48:46 +08:00

libfdt-dev is needed when building kernels for architectures that support a device tree. Fixes build errors like these when building kvm+lkvm flavor for ARM64: Makefile: No libfdt found. Please install libfdt-dev package. Stop. Signed-off-by: Geoff Levand <geoff@infradead.org>
10 lines
434 B
Bash
Executable File
10 lines
434 B
Bash
Executable File
#!/bin/bash
|
|
|
|
set -e
|
|
|
|
DEBIAN_SID_DEPS="ca-certificates gcc libc6-dev gpg gpg-agent make automake wget git golang-go coreutils cpio squashfs-tools autoconf file xz-utils patch bc locales libacl1-dev libssl-dev libtspi-dev libsystemd-dev python pkg-config zlib1g-dev libglib2.0-dev libpixman-1-dev libcap-dev libfdt-dev"
|
|
|
|
export DEBIAN_FRONTEND=noninteractive
|
|
apt-get update
|
|
apt-get install -y --no-install-recommends ${DEBIAN_SID_DEPS}
|