Delete leading empty comment lines. Change-Id: I8e14a0ad1e1e2227e4fb201f5d157f56f289f286 Signed-off-by: Angel Pons <th3fanbus@gmail.com> Reviewed-on: https://review.coreboot.org/c/coreboot/+/41838 Tested-by: build bot (Jenkins) <no-reply@coreboot.org> Reviewed-by: Paul Menzel <paulepanter@users.sourceforge.net> Reviewed-by: Arthur Heymans <arthur@aheymans.xyz>
19 lines
489 B
Bash
19 lines
489 B
Bash
#!/bin/sh
|
|
# SPDX-License-Identifier: GPL-2.0-only
|
|
|
|
bct_cfg2inc() {
|
|
local in_file="$1"
|
|
local out_file="$2"
|
|
echo "{ /* generated from ${in_file}; do not edit. */" >"${out_file}"
|
|
# Note currently we can only handle DDR3 type memory, even in C
|
|
# implementation.
|
|
sed "/^#.*$/d; s/^SDRAM.0./ /; s/\r$//; s/;$/,/;" \
|
|
"${in_file}" >> "${out_file}"
|
|
echo "}," >>"${out_file}"
|
|
}
|
|
|
|
for file in $@; do
|
|
echo "Generating $file => ${file%cfg}inc..."
|
|
bct_cfg2inc "${file}" "${file%cfg}inc"
|
|
done
|