mirror of
https://git.yoctoproject.org/poky
synced 2026-04-20 00:32:13 +02:00
Merge branch 'tk/master'
This commit is contained in:
@@ -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
|
||||
|
||||
@@ -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
|
||||
|
||||
@@ -4,7 +4,7 @@ PRIORITY = "required"
|
||||
DEPENDS = "makedevs"
|
||||
RDEPENDS = "makedevs"
|
||||
LICENSE = "GPLv2"
|
||||
PR = "r121"
|
||||
PR = "r122"
|
||||
|
||||
SRC_URI = "file://functions \
|
||||
file://halt \
|
||||
|
||||
Reference in New Issue
Block a user