mirror of
https://xff.cz/git/u-boot/
synced 2025-09-01 16:52:14 +02:00
Merge tag 'doc-2025-01-rc6' of https://source.denx.de/u-boot/custodians/u-boot-efi
Pull request doc-2025-01-rc6 Fix a number of typos * cmd: bootmenu typo 'read' * cmd/rng: fix long help text * crypto: typo volatge * board: freescale: typo volatge * scripts: add volatge to spelling.txt * doc: fit: Format image tree source example
This commit is contained in:
@@ -690,7 +690,7 @@ int get_serdes_volt(void)
|
||||
dm_i2c_read(dev, PMBUS_CMD_READ_VOUT, (void *)&vcode, 2);
|
||||
#endif
|
||||
if (ret) {
|
||||
printf("VID: failed to read the volatge\n");
|
||||
printf("VID: failed to read the voltage\n");
|
||||
return ret;
|
||||
}
|
||||
|
||||
@@ -716,11 +716,11 @@ int set_serdes_volt(int svdd)
|
||||
(void *)&buff, 5);
|
||||
#endif
|
||||
if (ret) {
|
||||
printf("VID: I2C failed to write to the volatge regulator\n");
|
||||
printf("VID: I2C failed to write to the voltage regulator\n");
|
||||
return -1;
|
||||
}
|
||||
|
||||
/* Wait for the volatge to get to the desired value */
|
||||
/* Wait for the voltage to get to the desired value */
|
||||
do {
|
||||
vdd_last = get_serdes_volt();
|
||||
if (vdd_last < 0) {
|
||||
@@ -778,7 +778,7 @@ int set_serdes_volt(int svdd)
|
||||
return -1;
|
||||
}
|
||||
|
||||
/* Wait for the volatge to get to the desired value */
|
||||
/* Wait for the voltage to get to the desired value */
|
||||
udelay(10000);
|
||||
|
||||
return 1;
|
||||
|
@@ -239,7 +239,7 @@ static int prepare_bootmenu_entry(struct bootmenu_data *menu,
|
||||
/**
|
||||
* prepare_uefi_bootorder_entry() - generate the uefi bootmenu entries
|
||||
*
|
||||
* This function read the "BootOrder" UEFI variable
|
||||
* This function reads the "BootOrder" UEFI variable
|
||||
* and generate the bootmenu entries in the order of "BootOrder".
|
||||
*
|
||||
* @menu: pointer to the bootmenu structure
|
||||
|
@@ -75,6 +75,6 @@ static int do_rng(struct cmd_tbl *cmdtp, int flag, int argc, char *const argv[])
|
||||
U_BOOT_CMD(
|
||||
rng, 3, 0, do_rng,
|
||||
"print bytes from the hardware random number generator",
|
||||
"list - list all the probed rng devices\n"
|
||||
"rng [dev] [n] - print n random bytes(max 64) read from dev\n"
|
||||
"list - list all probed rng devices\n"
|
||||
"rng [dev [n]] - print n random bytes (max 64) read from dev\n"
|
||||
);
|
||||
|
@@ -12,14 +12,14 @@ Synopsis
|
||||
::
|
||||
|
||||
rng list
|
||||
rng [dev] [n]
|
||||
rng [dev [n]]
|
||||
|
||||
rng list
|
||||
--------
|
||||
|
||||
List all the probed rng devices.
|
||||
|
||||
rng [dev] [n]
|
||||
rng [dev [n]]
|
||||
-------------
|
||||
|
||||
The *rng* command reads the random number generator(RNG) device and
|
||||
|
@@ -5,50 +5,50 @@ Single kernel and FDT blob
|
||||
|
||||
::
|
||||
|
||||
/dts-v1/;
|
||||
/dts-v1/;
|
||||
|
||||
/ {
|
||||
description = "Simple image with single Linux kernel and FDT blob";
|
||||
#address-cells = <1>;
|
||||
/ {
|
||||
description = "Simple image with single Linux kernel and FDT blob";
|
||||
#address-cells = <1>;
|
||||
|
||||
images {
|
||||
kernel {
|
||||
description = "Vanilla Linux kernel";
|
||||
data = /incbin/("./vmlinux.bin.gz");
|
||||
type = "kernel";
|
||||
arch = "ppc";
|
||||
os = "linux";
|
||||
compression = "gzip";
|
||||
load = <00000000>;
|
||||
entry = <00000000>;
|
||||
hash-1 {
|
||||
algo = "crc32";
|
||||
};
|
||||
hash-2 {
|
||||
algo = "sha256";
|
||||
};
|
||||
};
|
||||
fdt-1 {
|
||||
description = "Flattened Device Tree blob";
|
||||
data = /incbin/("./target.dtb");
|
||||
type = "flat_dt";
|
||||
arch = "ppc";
|
||||
compression = "none";
|
||||
hash-1 {
|
||||
algo = "crc32";
|
||||
};
|
||||
hash-2 {
|
||||
algo = "sha256";
|
||||
};
|
||||
};
|
||||
};
|
||||
images {
|
||||
kernel {
|
||||
description = "Vanilla Linux kernel";
|
||||
data = /incbin/("./vmlinux.bin.gz");
|
||||
type = "kernel";
|
||||
arch = "ppc";
|
||||
os = "linux";
|
||||
compression = "gzip";
|
||||
load = <00000000>;
|
||||
entry = <00000000>;
|
||||
hash-1 {
|
||||
algo = "crc32";
|
||||
};
|
||||
hash-2 {
|
||||
algo = "sha256";
|
||||
};
|
||||
};
|
||||
fdt-1 {
|
||||
description = "Flattened Device Tree blob";
|
||||
data = /incbin/("./target.dtb");
|
||||
type = "flat_dt";
|
||||
arch = "ppc";
|
||||
compression = "none";
|
||||
hash-1 {
|
||||
algo = "crc32";
|
||||
};
|
||||
hash-2 {
|
||||
algo = "sha256";
|
||||
};
|
||||
};
|
||||
};
|
||||
|
||||
configurations {
|
||||
default = "conf-1";
|
||||
conf-1 {
|
||||
description = "Boot Linux kernel with FDT blob";
|
||||
kernel = "kernel";
|
||||
fdt = "fdt-1";
|
||||
};
|
||||
};
|
||||
};
|
||||
configurations {
|
||||
default = "conf-1";
|
||||
conf-1 {
|
||||
description = "Boot Linux kernel with FDT blob";
|
||||
kernel = "kernel";
|
||||
fdt = "fdt-1";
|
||||
};
|
||||
};
|
||||
};
|
||||
|
@@ -654,7 +654,7 @@ static int rng_init(uint8_t sec_idx, ccsr_sec_t *sec)
|
||||
ret = instantiate_rng(sec_idx, sec, gen_sk);
|
||||
/*
|
||||
* entropy delay is calculated via self-test method.
|
||||
* self-test are run across different volatge, temp.
|
||||
* self-test are run across different voltage, temp.
|
||||
* if worst case value for ent_dly is identified,
|
||||
* loop can be skipped for that platform.
|
||||
*/
|
||||
|
@@ -1584,6 +1584,7 @@ virtaul||virtual
|
||||
virtiual||virtual
|
||||
visiters||visitors
|
||||
vitual||virtual
|
||||
volatge||voltage
|
||||
vunerable||vulnerable
|
||||
wakeus||wakeups
|
||||
wathdog||watchdog
|
||||
|
Reference in New Issue
Block a user