diff options
author | Fabio Estevam <festevam@gmail.com> | 2017-10-13 19:01:16 -0300 |
---|---|---|
committer | Thomas Petazzoni <thomas.petazzoni@free-electrons.com> | 2017-10-15 15:54:04 +0200 |
commit | 7bc38e794bc4591d33b206dbc2c6229d2f93e14e (patch) | |
tree | fc85cf7f15fce1bca80600f97fad94ad7dfd7313 /board | |
parent | b5781dd96a08c3d377f8161bf46690f1d6fd8ad0 (diff) | |
download | buildroot-7bc38e794bc4591d33b206dbc2c6229d2f93e14e.tar.gz buildroot-7bc38e794bc4591d33b206dbc2c6229d2f93e14e.zip |
configs/mx6udoo: Bump kernel and U-Boot versions
Bump the kernel to version 4.13.5 and U-Boot to 2017.09.
While at it, remove the custom scripts for generating the SD card image
and use the standard scripts instead.
Signed-off-by: Fabio Estevam <festevam@gmail.com>
Signed-off-by: Thomas Petazzoni <thomas.petazzoni@free-electrons.com>
Diffstat (limited to 'board')
-rw-r--r-- | board/udoo/mx6qdl/genimage.cfg | 48 | ||||
-rwxr-xr-x | board/udoo/mx6qdl/post-image.sh | 14 |
2 files changed, 0 insertions, 62 deletions
diff --git a/board/udoo/mx6qdl/genimage.cfg b/board/udoo/mx6qdl/genimage.cfg deleted file mode 100644 index 4361d540c7..0000000000 --- a/board/udoo/mx6qdl/genimage.cfg +++ /dev/null @@ -1,48 +0,0 @@ -# Minimal microSD card image for Udoo MX6Q/DL boards -# -# We mimic the .sdcard Freescale's image format for i.MX6: -# * the microSD card must have 1 kB free space at the beginning, -# * U-Boot is dumped as is, -# * a FAT partition at offset 16 MB is containing zImage and dtbs, -# * a single root filesystem partition is required (Ext4 in this case). -# - -image boot.vfat { - vfat { - files = { - "imx6q-udoo.dtb", - "imx6dl-udoo.dtb", - "zImage" - } - } - size = 16M -} - -image sdcard.img { - hdimage { - } - - partition SPL { - in-partition-table = "no" - image = "SPL" - offset = 1K - } - - partition u-boot { - in-partition-table = "no" - image = "u-boot.img" - offset = 69K - } - - partition boot { - partition-type = 0xC - bootable = "true" - image = "boot.vfat" - offset = 16M - } - - partition rootfs { - partition-type = 0x83 - image = "rootfs.ext4" - } -} diff --git a/board/udoo/mx6qdl/post-image.sh b/board/udoo/mx6qdl/post-image.sh deleted file mode 100755 index b4ac4608ff..0000000000 --- a/board/udoo/mx6qdl/post-image.sh +++ /dev/null @@ -1,14 +0,0 @@ -#!/usr/bin/env bash - -BOARD_DIR="$(dirname $0)" -GENIMAGE_CFG="${BOARD_DIR}/genimage.cfg" -GENIMAGE_TMP="${BUILD_DIR}/genimage.tmp" - -rm -rf "${GENIMAGE_TMP}" - -genimage \ - --rootpath "${TARGET_DIR}" \ - --tmppath "${GENIMAGE_TMP}" \ - --inputpath "${BINARIES_DIR}" \ - --outputpath "${BINARIES_DIR}" \ - --config "${GENIMAGE_CFG}" |