mirror of
git://projects.qi-hardware.com/openwrt-xburst.git
synced 2024-11-01 23:42:49 +02:00
f77b88d124
git-svn-id: svn://svn.openwrt.org/openwrt/trunk/openwrt@307 3c298f89-4303-0410-b956-a3cf2f4a3e73
12 lines
299 B
Bash
Executable File
12 lines
299 B
Bash
Executable File
#!/bin/bash
|
|
TARGET=$1
|
|
CONTROL=$2
|
|
VERSION=$3
|
|
ARCH=$4
|
|
|
|
mkdir -p "$TARGET/CONTROL"
|
|
grep '^[^(Version|Architecture)]' "$CONTROL" > "$TARGET/CONTROL/control"
|
|
echo "Version: $VERSION" >> "$TARGET/CONTROL/control"
|
|
echo "Architecture: $ARCH" >> "$TARGET/CONTROL/control"
|
|
chmod 644 "$TARGET/CONTROL/control"
|