blob: f08b053b8e32b22af23949c24919589ec48bbed0 [file] [log] [blame]
Yegor Timoshenkoc2e49412018-10-07 01:58:27 +00001#!/usr/bin/env bash
Martin Roth29535842015-11-05 07:51:28 -07002#
3# This file is part of the coreboot project.
4#
5# Copyright (C) 2015 Google Inc.
6#
7# All rights reserved.
8#
9# Redistribution and use in source and binary forms, with or without
10# modification, are permitted provided that the following conditions are met:
11#
12# 1. Redistributions of source code must retain the above copyright notice,
13# this list of conditions and the following disclaimer.
14#
15# 2. Redistributions in binary form must reproduce the above copyright notice,
16# this list of conditions and the following disclaimer in the documentation
17# and/or other materials provided with the distribution.
18#
19# THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS"
20# AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
21# IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
22# ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE
23# LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR
24# CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF
25# SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS
26# INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN
27# CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)
28# ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE
29# POSSIBILITY OF SUCH DAMAGE.
30#
31
32if [ -z "$1" ] || [ -z "$2" ]; then
33 printf "Usage: %s <output file> \"<microcode .h files>\"\n" "$0"
34fi
35
36OUTFILE=$1
37TMPFILE=$(mktemp microcode_XXXX)
38cat > "${TMPFILE}.c" << EOF
39#include <stdio.h>
40unsigned int microcode[] = {
41EOF
42
43for UCODE in ${@:2}; do
44 echo "#include \"$UCODE\"" >> "${TMPFILE}.c"
45done
46
47cat >> "${TMPFILE}.c" << EOF
48};
49int main(void)
50{
51 FILE *f = fopen("$OUTFILE", "wb");
52 fwrite(microcode, sizeof(microcode), 1, f);
53 fclose(f);
54 return 0;
55}
56EOF
57
58gcc -o "$TMPFILE" "${TMPFILE}.c"
Marshall Dawson1bc2b0b2016-06-25 10:17:07 -060059[ -f "${TMPFILE}.exe" ] && mv "${TMPFILE}.exe" "$TMPFILE"
Martin Roth29535842015-11-05 07:51:28 -070060"./$TMPFILE"
61rm "$TMPFILE" "${TMPFILE}.c"