mirror of
https://git.launchpad.net/livecd-rootfs
synced 2025-02-13 22:28:27 +00:00
Imported using git-ubuntu import. Changelog parent: 35251d626be197aae93c082c48ffc67dad49ed42 New changelog entries: [ Michael Vogt ] * 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) * live-build/ubuntu-core/hooks/500-move-kernel-to-device-tar.binary: - fix typo in hardware.yaml * live-build/auto/config: - add grub-efi-ia32-bin for i386 for efi support [ Adam Conrad ] * live-build/auto/config: Handle applying priorities to EXTRA_PPAS via the extra_ppa="user/ppaname:priority" syntax (LP: #1450257)
8 lines
101 B
Bash
8 lines
101 B
Bash
#!/bin/sh
|
|
|
|
set -e
|
|
|
|
if [ "$(dpkg --print-architecture)" = "armhf" ]; then
|
|
mkdir -p /boot/uboot
|
|
fi
|