shell$ apt-get install qemu-user-static debootstrap binfmt-support
shell$ export targetdir=debian11-rootfs
shell$ export distro=bullseye
shell$ mkdir $PWD/$targetdir
shell$ sudo chown root $PWD/$targetdir
shell$ sudo debootstrap --arch=armhf --foreign $distro $PWD/$targetdir
shell$ sudo cp /usr/bin/qemu-arm-static $PWD/$targetdir/usr/bin
shell$ sudo cp /etc/resolv.conf $PWD/$targetdir/etc
shell$ sudo cp scripts/build-debian11-rootfs-with-qemu.sh $PWD/$targetdir
shell$ sudo cp linux-image-5.10.109-armv7-fpga_5.10.109-armv7-fpga-1_armhf.deb $PWD/$targetdir
shell$ sudo chroot $PWD/$targetdir
There are two ways
- run build-debian11-rootfs-with-qemu.sh (easy)
- run this chapter step-by-step (annoying)
debian11-rootfs# distro=bullseye
debian11-rootfs# export LANG=C
debian11-rootfs# /debootstrap/debootstrap --second-stage
debian11-rootfs# cat <<EOT > /etc/apt/sources.list
deb http://ftp.jp.debian.org/debian bullseye main contrib non-free
deb-src http://ftp.jp.debian.org/debian bullseye main contrib non-free
deb http://ftp.jp.debian.org/debian bullseye-updates main contrib non-free
deb-src http://ftp.jp.debian.org/debian bullseye-updates main contrib non-free
deb http://security.debian.org bullseye-security main contrib non-free
deb-src http://security.debian.org bullseye-security main contrib non-free
EOT
debian11-rootfs# cat <<EOT > /etc/apt/apt.conf.d/71-no-recommends
APT::Install-Recommends "0";
APT::Install-Suggests "0";
EOT
debian11-rootfs# apt-get update -y
debian11-rootfs# apt-get upgrade -y
debian11-rootfs# apt-get install -y locales dialog
debian11-rootfs# dpkg-reconfigure locales
debian11-rootfs# apt-get install -y net-tools openssh-server ntpdate resolvconf sudo less hwinfo ntp tcsh zsh file
debian11-rootfs# echo debian-fpga > /etc/hostname
debian11-rootfs# passwd
This time, we set the "admin" at the root' password.
To be able to login as root from Zynq serial port.
debian11-rootfs# cat <<EOT >> /etc/securetty
# Seral Port for Xilinx Zynq
ttyPS0
EOT
debian11-rootfs# adduser fpga
This time, we set the "fpga" at the fpga'password.
debian11-rootfs# echo "fpga ALL=(ALL:ALL) ALL" > /etc/sudoers.d/fpga
debian11-rootfs# sed -i -e 's/#PasswordAuthentication/PasswordAuthentication/g' /etc/ssh/sshd_config
debian11-rootfs# dpkg-reconfigure tzdata
or if noninteractive set to Asia/Tokyo
debian11-rootfs# echo "Asia/Tokyo" > /etc/timezone
debian11-rootfs# dpkg-reconfigure -f noninteractive tzdata
debian11-rootfs# cat <<EOT > /etc/fstab
/dev/mmcblk0p1 /mnt/boot auto defaults 0 0
none /config configfs defaults 0 0
EOT
debian10-rootfs# apt-get install -y ifupdown
debian10-rootfs# cat <<EOT > /etc/network/interfaces.d/eth0
allow-hotplug eth0
iface eth0 inet dhcp
EOT
debian11-rootfs# mkdir /lib/firmware
debian11-rootfs# apt-get install -y wireless-tools
debian11-rootfs# apt-get install -y wpasupplicant
debian11-rootfs# apt-get install -y firmware-realtek
debian11-rootfs# apt-get install -y firmware-ralink
debian11-rootfs# apt-get install -y build-essential
debian11-rootfs# apt-get install -y git git-lfs
debian11-rootfs# apt-get install -y u-boot-tools device-tree-compiler
debian11-rootfs# apt-get install -y libssl-dev
debian11-rootfs# apt-get install -y socat
debian11-rootfs# apt-get install -y ruby rake ruby-msgpack ruby-serialport
debian11-rootfs# apt-get install -y python3 python3-dev python3-setuptools python3-wheel python3-pip python3-numpy
debian11-rootfs# pip3 install msgpack-rpc-python
debian11-rootfs# apt-get install -y flex bison pkg-config
debian11-rootfs# apt-get install -y samba
debian11-rootfs# apt-get install -y avahi-daemon
debian11-rootfs# apt-get install -y haveged
debian11-rootfs# mkdir /mnt/boot
debian11-rootfs# dpkg -i linux-image-5.10.109-armv7-fpga_5.10.109-armv7-fpga-1_armhf.deb
debian11-rootfs# apt-get clean
debian11-rootfs# dpkg -l > dpkg-list.txt
debian11-rootfs# exit
shell$ sudo rm -f $PWD/$targetdir/usr/bin/qemu-arm-static
shell$ sudo rm -f $PWD/$targetdir/build-debian11-rootfs-with-qemu.sh
shell$ sudo rm -f $PWD/$targetdir/linux-image-5.10.109-armv7-fpga_5.10.109-armv7-fpga-1_armhf.deb
shell$ sudo mv $PWD/$targetdir/dpkg-list.txt files/debian11-dpkg-list.txt
shell$ cd $PWD/$targetdir
shell$ sudo tar cfz ../debian11-rootfs-vanilla.tgz *
shell$ cd ..
shell$ mkdir debian11-rootfs-vanilla.tgz.files
shell$ cd debian11-rootfs-vanilla.tgz.files
shell$ split -d --bytes=40M ../debian11-rootfs-vanilla.tgz
shell$ cd ..