15 lines
394 B
Bash
Executable File
15 lines
394 B
Bash
Executable File
#!/bin/sh
|
|
|
|
# Copyright (C) 2015 Curt Brune <curt@cumulusnetworks.com>
|
|
#
|
|
# SPDX-License-Identifier: GPL-2.0
|
|
|
|
# This script is just a simple wrapper around 'onie-fwpkg' from the
|
|
# onie-tools package.
|
|
|
|
# "Rebrand" the output of the ONIE tool program to match the name of
|
|
# this script.
|
|
|
|
export ONIE_FWPKG_PROGRAM_NAME=$(basename $(realpath $0))
|
|
/mnt/onie-boot/onie/tools/bin/onie-fwpkg "$@"
|