mirror of
https://github.com/kernelkit/infix.git
synced 2026-08-01 05:13:01 +02:00
12 lines
189 B
Bash
Executable File
12 lines
189 B
Bash
Executable File
#!/bin/sh
|
|
# shellcheck disable=SC1090
|
|
. "$BR2_CONFIG" 2>/dev/null
|
|
|
|
common=$(dirname "$(readlink -f "$0")")
|
|
|
|
"$common/mkfit.sh"
|
|
|
|
if [ "$BR2_ARCH" = "x86_64" ]; then
|
|
"$common/mkgns3a.sh"
|
|
fi
|