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

utime_mphal.h

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