mirror of
git://projects.qi-hardware.com/xburst-tools.git
synced 2024-11-01 12:28:06 +02:00
18 lines
487 B
Bash
18 lines
487 B
Bash
|
#!/bin/sh
|
||
|
# Generate debian/xburst_stage1.bin, debian/xburst_stage2.bin,
|
||
|
# and debian/changelog.upstream.
|
||
|
#
|
||
|
# Uses debian/changelog and the git revision log.
|
||
|
#
|
||
|
# Requires a mipsel-openwrt-linux- toolchain on the $PATH.
|
||
|
|
||
|
set -e
|
||
|
|
||
|
dpkg-parsechangelog --format rfc822 --all |
|
||
|
awk -f debian/changelog.upstream.awk
|
||
|
|
||
|
debian/rules firmware
|
||
|
cp -f usbboot/xburst_stage1/xburst_stage1.bin debian/
|
||
|
cp -f usbboot/xburst_stage2/xburst_stage2.bin debian/
|
||
|
cp -f xbboot/target-stage1/stage1.bin debian/
|