Chroot: Install kernel and grub

This commit is contained in:
Jeremy Gardais 2019-04-03 23:13:44 +02:00
parent b8fff539b9
commit 6583d32ddf
Signed by: jegardai
GPG Key ID: E759BAA22501AF32
1 changed files with 6 additions and 0 deletions

View File

@ -237,6 +237,12 @@ printf '%b\n' "Europe/Paris" > /target/etc/timezone
ln -fs /usr/share/zoneinfo/Europe/Paris /target/etc/localtime
chroot /target dpkg-reconfigure --frontend noninteractive tzdata
## }}}
## Kernel and Grub {{{
chroot /target aptitude install --assume-yes --without-recommends -- linux-image-amd64 grub-pc
chroot /target grub-install "${hdd}"
chroot /target update-grub
## }}}
# }}}
# Finish {{{