You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
17 lines
369 B
17 lines
369 B
/*
|
|
* Copyright (c) 2024 Rockchip Electronics Co., Ltd
|
|
*
|
|
* SPDX-License-Identifier: GPL-2.0+
|
|
*/
|
|
|
|
#include <common.h>
|
|
|
|
/**
|
|
* Get specific key-value pairs from env partition
|
|
*
|
|
* @param desc block description
|
|
* @param name which key want to get from env
|
|
* @return key-value pairs if ok, else NULL
|
|
*/
|
|
char *envf_get(struct blk_desc *desc, const char *name);
|