livecd-rootfs/live-build/ubuntu-core/hooks/16-ensure-uboot.chroot
Michael Vogt e0b6feda6c create /boot/uboot on armhf to ensure that its in the system
tarball and still on the system if ubuntu-core-upgrader
performs a "format" (LP: #1447652)
2015-04-28 16:39:53 +02:00

8 lines
101 B
Bash

#!/bin/sh
set -e
if [ "$(dpkg --print-architecture)" = "armhf" ]; then
mkdir -p /boot/uboot
fi