mirror of
https://git.openwrt.org/openwrt/openwrt.git
synced 2026-03-14 23:09:45 +01:00
11 lines
299 B
Bash
Executable file
11 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"
|