Bump UCI version

This commit is contained in:
Steven Barth 2008-11-02 13:43:17 +00:00
parent 9d85bd73e5
commit 9e4c03a9c3
2 changed files with 10 additions and 29 deletions

View file

@ -1,16 +1,16 @@
include ../../build/config.mk include ../../build/config.mk
include ../../build/gccconfig.mk include ../../build/gccconfig.mk
UCI_VERSION = 0.6.1 UCI_VERSION = 0.6.3
UCI_SITE = http://mirror2.openwrt.org/sources #UCI_SITE = http://mirror2.openwrt.org/sources
UCI_DIR = uci-$(UCI_VERSION) #UCI_DIR = uci-$(UCI_VERSION)
UCI_FILE = $(UCI_DIR).tar.gz #UCI_FILE = $(UCI_DIR).tar.gz
UCI_URL = $(UCI_SITE)/$(UCI_FILE) #UCI_URL = $(UCI_SITE)/$(UCI_FILE)
#UCI_GITREV = 43124956bc9c1083e476f6cadaedf27b7788d004 UCI_GITREV = c79cc497e7b0caa0f9f6a2c978fa9a5f0f097463
#UCI_SITE = http://nbd.name UCI_SITE = http://nbd.name
#UCI_DIR = uci.git UCI_DIR = uci.git
#UCI_FILE = uci-$(UCI_VERSION)$(UCI_APPEND).tar.gz UCI_FILE = uci-$(UCI_VERSION)$(UCI_APPEND).tar.gz
#UCI_URL = $(UCI_SITE)/gitweb.cgi?p=uci.git;a=snapshot;h=$(UCI_GITREV) UCI_URL = $(UCI_SITE)/gitweb.cgi?p=uci.git;a=snapshot;h=$(UCI_GITREV)
UCI_PATCHDIR = patches UCI_PATCHDIR = patches
all: compile all: compile

View file

@ -164,25 +164,6 @@ function Cursor.set_list(self, config, section, option, value)
return false return false
end end
Cursor._changes = Cursor.changes
function Cursor.changes(self, config)
if config then
return Cursor._changes(self, config)
else
local changes = Cursor._changes(self)
util.copcall(function()
for k,v in pairs(require "luci.fs".dir(self:get_savedir())) do
if v ~= "." and v ~= ".." then
util.update(changes, Cursor._changes(self, v))
end
end
end)
return changes
end
end
-- Return a list of initscripts affected by configuration changes. -- Return a list of initscripts affected by configuration changes.
function Cursor._affected(self, configlist) function Cursor._affected(self, configlist)
configlist = type(configlist) == "table" and configlist or {configlist} configlist = type(configlist) == "table" and configlist or {configlist}