f-stack/dpdk/buildtools/gen-pmdinfo-cfile.sh

14 lines
248 B
Bash
Raw Normal View History

2019-06-25 11:12:58 +00:00
#! /bin/sh
# SPDX-License-Identifier: BSD-3-Clause
# Copyright(c) 2017 Intel Corporation
arfile=$1
output=$2
pmdinfogen=$3
echo > $output
for ofile in `ar t $arfile` ; do
ar p $arfile $ofile | $pmdinfogen - - >> $output 2> /dev/null
done
exit 0