check kernel upgrade
parent
32afaf7f89
commit
fcc1c91b2b
|
|
@ -1,8 +1,18 @@
|
|||
#!/bin/bash
|
||||
|
||||
CURRENT="$(ls -1 /boot)"
|
||||
|
||||
apt-get update
|
||||
apt-get dist-upgrade --yes
|
||||
|
||||
NEW="$(ls -1 /boot)"
|
||||
|
||||
if [ "$CURRENT" -ne "$NEW" ]; then
|
||||
echo "It looks like your kernel has been upgraded."
|
||||
echo "You should reboot and restart the build process."
|
||||
exit
|
||||
fi
|
||||
|
||||
# if kernel was upgraded, you may need to reboot
|
||||
apt-get install --yes --no-install-recommends mc squashfs-tools genisoimage zip unzip psmisc net-tools \
|
||||
alsa-utils man less xz-utils ca-certificates openssl acpid acpi-support-base powermgmt-base bzip2 gpart \
|
||||
|
|
|
|||
Loading…
Reference in New Issue