summaryrefslogtreecommitdiff
path: root/scripts/install.sh
diff options
context:
space:
mode:
authorWaldemar Brodkorb <wbx@openadk.org>2017-02-22 15:30:55 +0100
committerWaldemar Brodkorb <wbx@openadk.org>2017-02-22 15:33:37 +0100
commit5c126258230b2490133ef2f6f9fffb1a6a4e6053 (patch)
tree51bc665a8b653a4ff675bdec1b782febd6526104 /scripts/install.sh
parentf7e85105e77f72a1d779d9dd64231970bb91d3e0 (diff)
raspberry-pi3: fix mini.config bootup
- cmdline.txt is not required with full device tree capable kernel - force 270x option for mkknlimg trailer - we need ext4 filesystem support in the kernel other filesystems are rarely used at the moment - ATAGS and CMDLINE_FROM_BOOTLOADER not required with device tree capable kernel - overlay dtb files are renamed to dtbo suffix
Diffstat (limited to 'scripts/install.sh')
-rwxr-xr-xscripts/install.sh4
1 files changed, 2 insertions, 2 deletions
diff --git a/scripts/install.sh b/scripts/install.sh
index 8ae923a8d..9bbdf3758 100755
--- a/scripts/install.sh
+++ b/scripts/install.sh
@@ -553,8 +553,8 @@ case $target {
break
done
mkdir "$B/"overlays
- for x in "$fwdir"/overlays/*.dtb; do
- [[ -e "$x" ]] && cp "$fwdir"/overlays/*.dtb "$B/"overlays
+ for x in "$fwdir"/overlays/*.dtbo; do
+ [[ -e "$x" ]] && cp "$fwdir"/overlays/*.dtbo "$B/"overlays
break
done
umount_fs "$B"