123456789101112131415161718192021222324252627282930313233 |
- #
- # This software is a part of ISAR.
- # Copyright (C) 2015-2017 ilbers GmbH
- #
- # This configuration file is a part of bitbake multiconfig. Bitbake combines
- # these settings with local.conf ones and start task execution with this
- # environment.
- # This sets the default machine to be rpi in this configuration:
- MACHINE ?= "rpi"
- # This sets the default distribution configuration:
- DISTRO ?= "raspbian-jessie"
- DISTRO_ARCH ?= "armhf"
- KERNEL_NAME ?= "rpi-rpfv"
- IMAGE_PREINSTALL += " \
- bind9-host \
- dnsutils \
- iproute2 \
- iputils-ping \
- isc-dhcp-client \
- lrzsz \
- net-tools \
- netcat-openbsd \
- openssh-client \
- openssh-server \
- raspberrypi-bootloader-nokernel \
- telnet \
- traceroute \
- vim \
- "
|