]>
git.ipfire.org Git - people/ms/u-boot.git/blob - common/env_fat.c
2 * (c) Copyright 2011 by Tigris Elektronik GmbH
5 * Maximilian Schwerin <mvs@tigris.de>
7 * SPDX-License-Identifier: GPL-2.0+
13 #include <environment.h>
14 #include <linux/stddef.h>
21 char *env_name_spec
= "FAT";
25 DECLARE_GLOBAL_DATA_PTR
;
30 gd
->env_addr
= (ulong
)&default_environment
[0];
36 #ifdef CONFIG_CMD_SAVEENV
40 block_dev_desc_t
*dev_desc
= NULL
;
41 disk_partition_t info
;
46 err
= env_export(&env_new
);
50 part
= get_device_and_partition(FAT_ENV_INTERFACE
,
51 FAT_ENV_DEVICE_AND_PART
,
57 if (fat_set_blk_dev(dev_desc
, &info
) != 0) {
58 printf("\n** Unable to use %s %d:%d for saveenv **\n",
59 FAT_ENV_INTERFACE
, dev
, part
);
63 err
= file_fat_write(FAT_ENV_FILE
, (void *)&env_new
, 0, sizeof(env_t
),
66 printf("\n** Unable to write \"%s\" from %s%d:%d **\n",
67 FAT_ENV_FILE
, FAT_ENV_INTERFACE
, dev
, part
);
74 #endif /* CONFIG_CMD_SAVEENV */
76 void env_relocate_spec(void)
78 ALLOC_CACHE_ALIGN_BUFFER(char, buf
, CONFIG_ENV_SIZE
);
79 block_dev_desc_t
*dev_desc
= NULL
;
80 disk_partition_t info
;
84 part
= get_device_and_partition(FAT_ENV_INTERFACE
,
85 FAT_ENV_DEVICE_AND_PART
,
88 goto err_env_relocate
;
91 if (fat_set_blk_dev(dev_desc
, &info
) != 0) {
92 printf("\n** Unable to use %s %d:%d for loading the env **\n",
93 FAT_ENV_INTERFACE
, dev
, part
);
94 goto err_env_relocate
;
97 err
= file_fat_read(FAT_ENV_FILE
, buf
, CONFIG_ENV_SIZE
);
99 printf("\n** Unable to read \"%s\" from %s%d:%d **\n",
100 FAT_ENV_FILE
, FAT_ENV_INTERFACE
, dev
, part
);
101 goto err_env_relocate
;
108 set_default_env(NULL
);