blob: 0b6dc2ce4f5751a59acc0678a4738b324c9b7670 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
|
#! /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
|