mirror of
git://projects.qi-hardware.com/xburst-tools.git
synced 2024-11-01 12:33:07 +02:00
7b710f3e08
develop. this is not good. we should add the debian/ folder to master branch this commit: cp the debina/ folder from [debian] branch then remove the [debian] branch Signed-off-by: Xiangfu Liu <xiangfu@sharism.cc>
18 lines
487 B
Bash
Executable File
18 lines
487 B
Bash
Executable File
#!/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/
|