Skip to content

Commit

Permalink
add missing kmod package
Browse files Browse the repository at this point in the history
  • Loading branch information
Juul committed Nov 26, 2017
1 parent 52237b7 commit 3e3ba02
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -119,7 +119,7 @@ Log out of the chroot environment, then create an ext4 file:

```
du -ch qemu_chroot # find the size of the userland
# For count= you should use the size of the userland + maybe 150 MB (for some free space)
# For count= you should use the size of the userland + maybe 120 MB (for some free space)
dd if=/dev/zero of=fread.ext4 bs=1M count=<size in MB> # create a blank file
sudo mkfs.ext4 -T small fread.ext4 # create an ext4 filesystem in the blank file
sudo tune2fs -c 0 -i 0 ./fread.ext4 # disable automatic fsck on mount (since it doesn't yet work)
Expand Down
2 changes: 1 addition & 1 deletion finalize_chroot_env.sh
Original file line number Diff line number Diff line change
Expand Up @@ -33,7 +33,7 @@ echo "Installing fread glibc"
apt-get install -y libc-bin libc-dev-bin libc6 libc6-dev

echo "Installing basic packages"
apt-get -y -o Dpkg::Options::="--force-confdef" -o Dpkg::Options::="--force-confold" install sudo iproute2 wireless-tools wpasupplicant connman isc-dhcp-client dnsmasq dropbear iputils-ping less nano openssh-client
apt-get -y -o Dpkg::Options::="--force-confdef" -o Dpkg::Options::="--force-confold" install sudo kmod iproute2 wireless-tools wpasupplicant connman isc-dhcp-client dnsmasq dropbear iputils-ping less nano openssh-client
# TODO debians dropbear is missing the scp command
# which is why we're stuck install openssh-client.
# We should build a proper dropbear package with scp.
Expand Down

0 comments on commit 3e3ba02

Please sign in to comment.