mirror of
https://github.com/immortalwrt/immortalwrt.git
synced 2025-08-11 06:11:53 +08:00
Implement a preliminary combined image format. - add sysupgrade support for combined images by providing a platform.sh backend - use the mtd fis partition table rewrite facility to resize partitions on demand - generate generic combined images for the atheros target
SVN-Revision: 17668
This commit is contained in:
32
scripts/combined-image.sh
Normal file
32
scripts/combined-image.sh
Normal file
@ -0,0 +1,32 @@
|
||||
#!/bin/sh
|
||||
|
||||
BLKSZ=65536
|
||||
|
||||
[ -f "$1" -a -f "$2" ] || {
|
||||
echo "Usage: $0 <kernel image> <rootfs image> [output file]"
|
||||
exit 1
|
||||
}
|
||||
|
||||
# Make sure provided images are 64k aligned.
|
||||
kern=$(tempfile)
|
||||
root=$(tempfile)
|
||||
dd if="$1" of="$kern" bs=$BLKSZ conv=sync 2>/dev/null
|
||||
dd if="$2" of="$root" bs=$BLKSZ conv=sync 2>/dev/null
|
||||
|
||||
# Calculate md5sum over combined kernel and rootfs image.
|
||||
md5=$(cat "$kern" "$root" | md5sum -)
|
||||
|
||||
# Write image header followed by kernel and rootfs image.
|
||||
# The header is padded to 64k, format is:
|
||||
# CI magic word ("Combined Image")
|
||||
# <kernel length> length of kernel encoded as zero padded 8 digit hex
|
||||
# <rootfs length> length of rootfs encoded as zero padded 8 digit hex
|
||||
# <md5sum> checksum of the combined kernel and rootfs image
|
||||
( printf "CI%08x%08x%32s" \
|
||||
$(stat -c "%s" "$kern") $(stat -c "%s" "$root") "${md5%% *}" | \
|
||||
dd bs=$BLKSZ conv=sync;
|
||||
cat "$kern" "$root"
|
||||
) > ${3:-openwrt-combined.img} 2>/dev/null
|
||||
|
||||
# Clean up.
|
||||
rm -f "$kern" "$root"
|
Reference in New Issue
Block a user