- Duckbill uses a different partitioning approach than standard FSL and Olimex - use new sdimage to integrate U-Boot into the SD card images Signed-off-by: Michael Heimpold <mhei@heimpold.de> SVN-Revision: 47021master
parent
ac65377bf7
commit
ce59fe6b3d
@ -1,5 +1,8 @@ |
||||
config MXS_SD_BOOT_PARTSIZE |
||||
config TARGET_BOOTFS_PARTSIZE |
||||
int "Boot (SD Card) filesystem partition size (in MB)" |
||||
depends on TARGET_mxs |
||||
depends on TARGET_mxs_olinuxino-maxi || TARGET_mxs_olinuxino-micro |
||||
default 8 |
||||
|
||||
help |
||||
On the Olimex OLinuXino boards, mainline U-Boot loads the |
||||
linux kernel and device tree file from a FAT partition. |
||||
The default value of 8 MB should be more than adequate. |
||||
|
@ -0,0 +1,33 @@ |
||||
#!/usr/bin/env bash |
||||
# |
||||
# Copyright (C) 2015 OpenWrt.org |
||||
# |
||||
# This is free software, licensed under the GNU General Public License v2. |
||||
# See /LICENSE for more information. |
||||
# |
||||
|
||||
set -x |
||||
[ $# -eq 4 ] || { |
||||
echo "SYNTAX: $0 <file> <u-boot.sb image> <rootfs image> <rootfs size>" |
||||
exit 1 |
||||
} |
||||
|
||||
OUTPUT="$1" |
||||
UBOOT="$2" |
||||
ROOTFS="$3" |
||||
ROOTFSSIZE="$4" |
||||
|
||||
head=4 |
||||
sect=63 |
||||
|
||||
# set the Boot stream partition size to 1M |
||||
set `ptgen -o $OUTPUT -h $head -s $sect -l 1024 -t 53 -p 1M -t 83 -p ${ROOTFSSIZE}M -t 83 -p ${ROOTFSSIZE}M` |
||||
|
||||
ROOTFS1OFFSET="$(($3 / 512))" |
||||
ROOTFS1SIZE="$(($4 / 512))" |
||||
ROOTFS2OFFSET="$(($5 / 512))" |
||||
ROOTFS2SIZE="$(($6 / 512))" |
||||
|
||||
dd bs=512 if="$ROOTFS" of="$OUTPUT" seek="$ROOTFS1OFFSET" conv=notrunc |
||||
dd bs=512 if="$ROOTFS" of="$OUTPUT" seek="$ROOTFS2OFFSET" conv=notrunc |
||||
sdimage -d "$OUTPUT" -f "$UBOOT" |
Loading…
Reference in new issue