From 3f47346c3030aebc65f5f6a7a5d5622e158657c3 Mon Sep 17 00:00:00 2001 From: William Graham Date: Sun, 10 Apr 2011 16:25:16 -0500 Subject: [PATCH 1/2] Fix compcache Change-Id: Ib36051d48c232dc7b0bd6fdbb782847ca5ae6398 --- prebuilt/common/bin/compcache | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/prebuilt/common/bin/compcache b/prebuilt/common/bin/compcache index 2cd0bdef..bb3a3495 100755 --- a/prebuilt/common/bin/compcache +++ b/prebuilt/common/bin/compcache @@ -24,7 +24,7 @@ case "$1" in if [ $MODULE = ramzswap ]; then rzscontrol $DEV --disksize_kb=$2 --init else - echo "$((2 * 1024))" > $SYSFS_PATH/disksize + echo "$(($2 * 1024))" > $SYSFS_PATH/disksize mkswap $DEV >/dev/null fi swapon $DEV From fb1d3e68c3506f8ec9a64cf826634313ab29387c Mon Sep 17 00:00:00 2001 From: Keyan Mobli Date: Sun, 10 Apr 2011 16:43:31 -0500 Subject: [PATCH 2/2] Fix "Add skip_themes directive to build process" This reverts commit 090e2ec0c1e576bc12be069ce7991eace4d3c9d9. Change-Id: I8a6e85b1fd356eeef4572c861c6f8d72fb44de97 --- products/themes.mk | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/products/themes.mk b/products/themes.mk index 00d10456..856ab1f9 100644 --- a/products/themes.mk +++ b/products/themes.mk @@ -1,7 +1,7 @@ # Theme packages -ifndef SKIP_THEMES +ifneq ($(SKIP_THEMES),true) PRODUCT_PACKAGES += \ Androidian \ Cyanbread -endif \ No newline at end of file +endif