Merge branch 'tk/master'

This commit is contained in:
Joshua Lock
2010-07-08 12:45:02 +01:00
3 changed files with 15 additions and 3 deletions

View File

@@ -76,7 +76,6 @@ def siteinfo_get_files(d):
# Determine which site files to look for
sites = get_siteinfo_list(d)
sites.append("common");
# Check along bbpath for site files and append in reverse order so
# the application specific sites files are last and system site

View File

@@ -168,7 +168,20 @@ apply_cfgfile() {
}
if test -e /etc/volatile.cache -a "$VOLATILE_ENABLE_CACHE" = "yes" -a "x$1" != "xupdate"
clearcache=0
exec 9</proc/cmdline
while read line <&9
do
case "$line" in
*clearcache*) clearcache=1
;;
*) continue
;;
esac
done
exec 9>&-
if test -e /etc/volatile.cache -a "$VOLATILE_ENABLE_CACHE" = "yes" -a "x$1" != "xupdate" -a "x$clearcache" = "x0"
then
sh /etc/volatile.cache
else

View File

@@ -4,7 +4,7 @@ PRIORITY = "required"
DEPENDS = "makedevs"
RDEPENDS = "makedevs"
LICENSE = "GPLv2"
PR = "r121"
PR = "r122"
SRC_URI = "file://functions \
file://halt \