mirror of
https://github.com/AsahiLinux/u-boot
synced 2024-11-06 05:04:26 +00:00
15c160301c
It's possible that the default_environment[] array contains multiple entries for the same variable, e.g. a setting from env_default.h based on some CONFIG_* variable, and another from CONFIG_EXTRA_ENV_SETTINGS. In such a case, the last setting takes effect. Hence, in order to be able to use the output from this script as an CONFIG_DEFAULT_ENV_FILE and get the same default environment as one currently has, we need to preserve the order. So only sort by the variable name, and disable the last-resort comparison. We could pipe the result through uniq to remove duplicate lines, but I think there's some value in seeing that certain variables are defined multiple times. Signed-off-by: Rasmus Villemoes <rasmus.villemoes@prevas.dk> Reviewed-by: Lukasz Majewski <lukma@denx.de> Reviewed-by: Simon Glass <sjg@chromium.org>
42 lines
1.1 KiB
Bash
Executable file
42 lines
1.1 KiB
Bash
Executable file
#! /bin/bash
|
|
# SPDX-License-Identifier: GPL-2.0+
|
|
#
|
|
# Copyright (C) 2016, Lukasz Majewski <l.majewski@majess.pl>
|
|
#
|
|
|
|
# This file extracts default envs from built u-boot
|
|
# usage: get_default_envs.sh [build dir] > u-boot-env-default.txt
|
|
set -ue
|
|
|
|
: "${OBJCOPY:=${CROSS_COMPILE:-}objcopy}"
|
|
|
|
ENV_OBJ_FILE="built-in.o"
|
|
ENV_OBJ_FILE_COPY="copy_${ENV_OBJ_FILE}"
|
|
|
|
echoerr() { echo "$@" 1>&2; }
|
|
|
|
if [ "$#" -eq 1 ]; then
|
|
path=${1}
|
|
else
|
|
path=$(readlink -f $0)
|
|
path=${path%/scripts*}
|
|
fi
|
|
|
|
env_obj_file_path=$(find ${path} -path "*/env/*" -not -path "*/spl/*" \
|
|
-not -path "*/tools/*" -name "${ENV_OBJ_FILE}")
|
|
[ -z "${env_obj_file_path}" ] && \
|
|
{ echoerr "File '${ENV_OBJ_FILE}' not found!"; exit 1; }
|
|
|
|
cp ${env_obj_file_path} ${ENV_OBJ_FILE_COPY}
|
|
|
|
# NOTE: objcopy saves its output to file passed in
|
|
# (copy_${ENV_OBJ_FILE} in this case)
|
|
|
|
${OBJCOPY} -O binary -j ".rodata.default_environment" ${ENV_OBJ_FILE_COPY}
|
|
|
|
# Replace default '\0' with '\n' and sort entries
|
|
tr '\0' '\n' < ${ENV_OBJ_FILE_COPY} | sort --field-separator== -k1,1 --stable
|
|
|
|
rm ${ENV_OBJ_FILE_COPY}
|
|
|
|
exit 0
|