mirror of
git://projects.qi-hardware.com/openwrt-xburst.git
synced 2024-11-16 22:56:14 +02:00
[package] nvram: handle nvram at varying offsets within the eraseblock (fixes Edimax PS-1208mfg with FLSH at offset 0)
git-svn-id: svn://svn.openwrt.org/openwrt/trunk@22299 3c298f89-4303-0410-b956-a3cf2f4a3e73
This commit is contained in:
parent
a7a1dcb877
commit
98b06e803d
@ -8,7 +8,7 @@
|
|||||||
include $(TOPDIR)/rules.mk
|
include $(TOPDIR)/rules.mk
|
||||||
|
|
||||||
PKG_NAME:=nvram
|
PKG_NAME:=nvram
|
||||||
PKG_RELEASE:=7
|
PKG_RELEASE:=8
|
||||||
|
|
||||||
PKG_BUILD_DIR := $(BUILD_DIR)/$(PKG_NAME)
|
PKG_BUILD_DIR := $(BUILD_DIR)/$(PKG_NAME)
|
||||||
|
|
||||||
|
@ -111,6 +111,7 @@ static int do_info(nvram_handle_t *nvram)
|
|||||||
/* Show info */
|
/* Show info */
|
||||||
printf("Magic: 0x%08X\n", hdr->magic);
|
printf("Magic: 0x%08X\n", hdr->magic);
|
||||||
printf("Length: 0x%08X\n", hdr->len);
|
printf("Length: 0x%08X\n", hdr->len);
|
||||||
|
printf("Offset: 0x%08X\n", nvram->offset);
|
||||||
|
|
||||||
printf("CRC8: 0x%02X (calculated: 0x%02X)\n",
|
printf("CRC8: 0x%02X (calculated: 0x%02X)\n",
|
||||||
hdr->crc_ver_init & 0xFF, crc);
|
hdr->crc_ver_init & 0xFF, crc);
|
||||||
|
@ -142,7 +142,7 @@ static int _nvram_rehash(nvram_handle_t *h)
|
|||||||
/* Get nvram header. */
|
/* Get nvram header. */
|
||||||
nvram_header_t * nvram_header(nvram_handle_t *h)
|
nvram_header_t * nvram_header(nvram_handle_t *h)
|
||||||
{
|
{
|
||||||
return (nvram_header_t *) &h->mmap[NVRAM_START(nvram_erase_size)];
|
return (nvram_header_t *) &h->mmap[h->offset];
|
||||||
}
|
}
|
||||||
|
|
||||||
/* Get the value of an NVRAM variable. */
|
/* Get the value of an NVRAM variable. */
|
||||||
@ -337,10 +337,12 @@ int nvram_commit(nvram_handle_t *h)
|
|||||||
/* Open NVRAM and obtain a handle. */
|
/* Open NVRAM and obtain a handle. */
|
||||||
nvram_handle_t * nvram_open(const char *file, int rdonly)
|
nvram_handle_t * nvram_open(const char *file, int rdonly)
|
||||||
{
|
{
|
||||||
|
int i;
|
||||||
int fd;
|
int fd;
|
||||||
char *mtd = NULL;
|
char *mtd = NULL;
|
||||||
nvram_handle_t *h;
|
nvram_handle_t *h;
|
||||||
nvram_header_t *header;
|
nvram_header_t *header;
|
||||||
|
int offset = -1;
|
||||||
|
|
||||||
/* If erase size or file are undefined then try to define them */
|
/* If erase size or file are undefined then try to define them */
|
||||||
if( (nvram_erase_size == 0) || (file == NULL) )
|
if( (nvram_erase_size == 0) || (file == NULL) )
|
||||||
@ -361,15 +363,28 @@ nvram_handle_t * nvram_open(const char *file, int rdonly)
|
|||||||
|
|
||||||
if( mmap_area != MAP_FAILED )
|
if( mmap_area != MAP_FAILED )
|
||||||
{
|
{
|
||||||
memset(mmap_area, 0xFF, NVRAM_START(nvram_erase_size));
|
for( i = 0; i <= ((nvram_erase_size - NVRAM_SPACE) / sizeof(uint32_t)); i++ )
|
||||||
|
{
|
||||||
|
if( ((uint32_t *)mmap_area)[i] == NVRAM_MAGIC )
|
||||||
|
{
|
||||||
|
offset = i * sizeof(uint32_t);
|
||||||
|
break;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
if((h = (nvram_handle_t *) malloc(sizeof(nvram_handle_t))) != NULL)
|
if( offset < 0 )
|
||||||
|
{
|
||||||
|
free(mtd);
|
||||||
|
return NULL;
|
||||||
|
}
|
||||||
|
else if( (h = malloc(sizeof(nvram_handle_t))) != NULL )
|
||||||
{
|
{
|
||||||
memset(h, 0, sizeof(nvram_handle_t));
|
memset(h, 0, sizeof(nvram_handle_t));
|
||||||
|
|
||||||
h->fd = fd;
|
h->fd = fd;
|
||||||
h->mmap = mmap_area;
|
h->mmap = mmap_area;
|
||||||
h->length = nvram_erase_size;
|
h->length = nvram_erase_size;
|
||||||
|
h->offset = offset;
|
||||||
|
|
||||||
header = nvram_header(h);
|
header = nvram_header(h);
|
||||||
|
|
||||||
|
@ -46,7 +46,8 @@ struct nvram_tuple {
|
|||||||
struct nvram_handle {
|
struct nvram_handle {
|
||||||
int fd;
|
int fd;
|
||||||
char *mmap;
|
char *mmap;
|
||||||
unsigned long length;
|
unsigned int length;
|
||||||
|
unsigned int offset;
|
||||||
struct nvram_tuple *nvram_hash[257];
|
struct nvram_tuple *nvram_hash[257];
|
||||||
struct nvram_tuple *nvram_dead;
|
struct nvram_tuple *nvram_dead;
|
||||||
};
|
};
|
||||||
@ -113,7 +114,6 @@ char * nvram_find_staging(void);
|
|||||||
|
|
||||||
/* NVRAM constants */
|
/* NVRAM constants */
|
||||||
#define NVRAM_SPACE 0x8000
|
#define NVRAM_SPACE 0x8000
|
||||||
#define NVRAM_START(x) x - NVRAM_SPACE
|
|
||||||
#define NVRAM_MAGIC 0x48534C46 /* 'FLSH' */
|
#define NVRAM_MAGIC 0x48534C46 /* 'FLSH' */
|
||||||
#define NVRAM_VERSION 1
|
#define NVRAM_VERSION 1
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user