##// END OF EJS Templates
RPI3B+...
RPI3B+ Added RPI_MODEL=3B for Raspberry Pi 3 B+ Model If RPI_MODEL=3B is set rpi23-gen-image will use brcmfmac43455-sdio (bin, txt and clm_blob) instead of brcmfmac43430-sdio WLAN-firmware blob With Model=3 - rpi23-gen-image.sh will not copy brcmfmac43455-sdio.txt and brcmfmac43455-sdio.clm_blob file from firmware_dir. Package firmware-brcm80211 also does not include these files.

Fichier de la dernière révision:

r226:723c186f8874
r250:824dff766aec
Show More
10-bootstrap.sh
47 lines | 1.4 KiB | application/x-sh | BashLexer
#
# Debootstrap basic system
#
# Load utility functions
. ./functions.sh
VARIANT=""
COMPONENTS="main"
EXCLUDES=""
# Use non-free Debian packages if needed
if [ "$ENABLE_NONFREE" = true ] ; then
COMPONENTS="main,non-free,contrib"
fi
# Use minbase bootstrap variant which only includes essential packages
if [ "$ENABLE_MINBASE" = true ] ; then
VARIANT="--variant=minbase"
fi
# Exclude packages if required by Debian release
if [ "$RELEASE" = "stretch" ] || [ "$RELEASE" = "buster" ] ; then
EXCLUDES="--exclude=init,systemd-sysv"
fi
# Base debootstrap (unpack only)
http_proxy=${APT_PROXY} debootstrap ${EXCLUDES} --arch="${RELEASE_ARCH}" --foreign ${VARIANT} --components="${COMPONENTS}" --include="${APT_INCLUDES}" "${RELEASE}" "${R}" "http://${APT_SERVER}/debian"
# Copy qemu emulator binary to chroot
install -m 755 -o root -g root "${QEMU_BINARY}" "${R}${QEMU_BINARY}"
# Copy debian-archive-keyring.pgp
mkdir -p "${R}/usr/share/keyrings"
install_readonly /usr/share/keyrings/debian-archive-keyring.gpg "${R}/usr/share/keyrings/debian-archive-keyring.gpg"
# Complete the bootstrapping process
chroot_exec /debootstrap/debootstrap --second-stage
# Mount required filesystems
mount -t proc none "${R}/proc"
mount -t sysfs none "${R}/sys"
# Mount pseudo terminal slave if supported by Debian release
if [ -d "${R}/dev/pts" ] ; then
mount --bind /dev/pts "${R}/dev/pts"
fi