mirror of
git://projects.qi-hardware.com/openwrt-xburst.git
synced 2024-11-17 22:24:04 +02:00
[package] nvram: request memory locked pages in mmap() and make it available for ar71xx
git-svn-id: svn://svn.openwrt.org/openwrt/trunk@19486 3c298f89-4303-0410-b956-a3cf2f4a3e73
This commit is contained in:
parent
581beaa501
commit
0fb1079a49
@ -18,7 +18,7 @@ define Package/nvram
|
|||||||
SECTION:=utils
|
SECTION:=utils
|
||||||
CATEGORY:=Base system
|
CATEGORY:=Base system
|
||||||
TITLE:=Userspace port of the Broadcom NVRAM manipulation tool
|
TITLE:=Userspace port of the Broadcom NVRAM manipulation tool
|
||||||
DEPENDS:=@TARGET_brcm_2_4||@TARGET_brcm47xx
|
DEPENDS:=@TARGET_brcm_2_4||@TARGET_brcm47xx||@TARGET_ar71xx
|
||||||
endef
|
endef
|
||||||
|
|
||||||
define Package/nvram/description
|
define Package/nvram/description
|
||||||
|
@ -2,7 +2,7 @@
|
|||||||
* NVRAM variable manipulation (common)
|
* NVRAM variable manipulation (common)
|
||||||
*
|
*
|
||||||
* Copyright 2004, Broadcom Corporation
|
* Copyright 2004, Broadcom Corporation
|
||||||
* Copyright 2009, OpenWrt.org
|
* Copyright 2009-2010, OpenWrt.org
|
||||||
* All Rights Reserved.
|
* All Rights Reserved.
|
||||||
*
|
*
|
||||||
* THIS SOFTWARE IS OFFERED "AS IS", AND BROADCOM GRANTS NO WARRANTIES OF ANY
|
* THIS SOFTWARE IS OFFERED "AS IS", AND BROADCOM GRANTS NO WARRANTIES OF ANY
|
||||||
@ -357,7 +357,7 @@ nvram_handle_t * nvram_open(const char *file, int rdonly)
|
|||||||
{
|
{
|
||||||
char *mmap_area = (char *) mmap(
|
char *mmap_area = (char *) mmap(
|
||||||
NULL, nvram_erase_size, PROT_READ | PROT_WRITE,
|
NULL, nvram_erase_size, PROT_READ | PROT_WRITE,
|
||||||
( rdonly == NVRAM_RO ) ? MAP_PRIVATE : MAP_SHARED, fd, 0);
|
(( rdonly == NVRAM_RO ) ? MAP_PRIVATE : MAP_SHARED) | MAP_LOCKED, fd, 0);
|
||||||
|
|
||||||
if( mmap_area != MAP_FAILED )
|
if( mmap_area != MAP_FAILED )
|
||||||
{
|
{
|
||||||
|
Loading…
Reference in New Issue
Block a user