diff options
Diffstat (limited to 'scripts')
-rwxr-xr-x | scripts/create.sh | 2 | ||||
-rw-r--r-- | scripts/scan-pkgs.sh | 12 |
2 files changed, 1 insertions, 13 deletions
diff --git a/scripts/create.sh b/scripts/create.sh index ef6e644ab..08800f0aa 100755 --- a/scripts/create.sh +++ b/scripts/create.sh @@ -297,7 +297,7 @@ fi print "Creating ext2fs filesystem image..." cd "$T" f=0 -genext2fs -U -b $((partfssz)) -d src fsimg || f=1 +genext2fs -U -N 16384 -b $((partfssz)) -d src fsimg || f=1 if (( !f )); then # use bc(1): this may be over the shell’s 32-bit arithmetics wantsz=$($bc <<<"$((partfssz))*1024") diff --git a/scripts/scan-pkgs.sh b/scripts/scan-pkgs.sh index 985009051..e00ef2da4 100644 --- a/scripts/scan-pkgs.sh +++ b/scripts/scan-pkgs.sh @@ -166,13 +166,8 @@ if [[ -n $ADK_PACKAGE_GLIB ]]; then NEED_GETTEXT="$NEED_GETTEXT glib" fi -if [[ -n $ADK_PACKAGE_BCM2835_VC ]]; then - NEED_CMAKE="$NEED_CMAKE bcm2835-vc" -fi - if [[ -n $ADK_PACKAGE_YAJL ]]; then NEED_RUBY="$NEED_RUBY yajl" - NEED_CMAKE="$NEED_CMAKE yajl" fi if [[ -n $ADK_PACKAGE_XBMC ]]; then @@ -347,13 +342,6 @@ if [[ -n $NEED_BISON ]]; then fi fi -if [[ -n $NEED_CMAKE ]]; then - if ! which cmake >/dev/null 2>&1; then - echo >&2 You need cmake to build $NEED_CMAKE - out=1 - fi -fi - if [[ -n $NEED_ZIP ]]; then if ! which zip >/dev/null 2>&1; then echo >&2 You need zip to build $NEED_ZIP |