Files
tqma6-yocto-mirror/sources/poky/scripts/runqemu-addptable2image
Siggi (OpenClaw Agent) 16accb6b24 Complete Yocto mirror with license table for TQMa6UL (2038-compliance)
- 264 license table entries with exact download URLs (224/264 resolved)
- Complete sources/ directory with all BitBake recipes
- Build configuration: tqma6ul-multi-mba6ulx, spaetzle (musl)
- Full traceability for Softwarefreigabeantrag
- GCC 13.4.0, Linux 6.6.102, U-Boot 2023.04, musl 1.2.4
- License distribution: GPL-2.0 (24), MIT (23), GPL-2.0+ (18), BSD-3 (16)
2026-03-01 21:14:11 +00:00

40 lines
776 B
Bash
Executable File

#!/bin/sh
# Add a partition table to an ext2 image file
#
# Copyright (C) 2006-2007 OpenedHand Ltd.
#
# SPDX-License-Identifier: GPL-2.0-or-later
#
IMAGE=$1
IMAGEOUT=$2
echo $IMAGE
echo $IMAGEOUT
size=`ls -l $IMAGE | awk '{ print $5}'`
size2=`expr $size / 512 / 16 / 63`
echo $size
echo $size2
# MBR Size = 512 * 63 bytes
dd if=/dev/zero of=$IMAGEOUT count=63
echo "x" > /tmp/fdisk.cmds
echo "c" >> /tmp/fdisk.cmds
echo "1024" >> /tmp/fdisk.cmds
echo "h" >> /tmp/fdisk.cmds
echo "16" >> /tmp/fdisk.cmds
echo "r" >> /tmp/fdisk.cmds
echo "n" >> /tmp/fdisk.cmds
echo "p" >> /tmp/fdisk.cmds
echo "1" >> /tmp/fdisk.cmds
echo "1" >> /tmp/fdisk.cmds
echo "$size2" >> /tmp/fdisk.cmds
echo "w" >> /tmp/fdisk.cmds
/sbin/fdisk $IMAGEOUT < /tmp/fdisk.cmds
cat $IMAGE >> $IMAGEOUT