Skip to content
Snippets Groups Projects
Select Git revision
  • 1cc81ed449fe51c787d002e786cd5afe5c632f97
  • wip-bootstrap default
  • dualcore
  • ch3/leds
  • ch3/time
  • master
6 results

gccollect.h

Blame
  • build_multi_image.sh 309 B
    #!/bin/sh
    set -e
    
    echo "build multi image" $1 $2 $3 $4
    PYTHON="$1"
    BIN1="$2"
    BIN2="$3"
    BINOUT="$4"
    
    dd if=/dev/zero ibs=1k count=448 | tr "\000" "\377" > "$BINOUT"
    dd if="$BIN1" of="$BINOUT" conv=notrunc
    dd if="$BIN2" of="$BINOUT" conv=notrunc oflag=append
    
    "$PYTHON" "$(dirname "$0")/crc_patch.py" "$BINOUT"