diff options
author | Waldemar Brodkorb <wbx@openadk.org> | 2010-07-19 10:49:49 +0200 |
---|---|---|
committer | Waldemar Brodkorb <wbx@openadk.org> | 2010-07-19 10:49:49 +0200 |
commit | 7907e3ee7302ac3fd428989a07b0df74f0c52853 (patch) | |
tree | e6de18488a687707667927065724372b40510d65 /scripts | |
parent | b70fdbfbf1139605c22083b647337f2b16f62fc3 (diff) | |
parent | 61355d1f054c15673adeb62d32dfd4563f89c165 (diff) |
Merge branch 'master' of git+ssh://openadk.org/git/openadk
Diffstat (limited to 'scripts')
-rwxr-xr-x | scripts/install.sh | 5 | ||||
-rw-r--r-- | scripts/ipkg-make-index.sh | 2 | ||||
-rw-r--r-- | scripts/scan-pkgs.sh | 2 |
3 files changed, 2 insertions, 7 deletions
diff --git a/scripts/install.sh b/scripts/install.sh index 79bfa36bf..b436767a5 100755 --- a/scripts/install.sh +++ b/scripts/install.sh @@ -236,11 +236,6 @@ EOF umount $tmp/dev fi -printf "Creating device nodes\n" -mknod -m 666 $tmp/dev/null c 1 3 -mknod -m 622 $tmp/dev/console c 5 1 -mknod -m 666 $tmp/dev/tty c 5 0 - umount $tmp printf "Successfully installed.\n" diff --git a/scripts/ipkg-make-index.sh b/scripts/ipkg-make-index.sh index ec07dff59..927e67b93 100644 --- a/scripts/ipkg-make-index.sh +++ b/scripts/ipkg-make-index.sh @@ -9,7 +9,7 @@ fi find "$pkg_dir" -name '*.ipk' | sort | while IFS= read pkg; do dpkg=${pkg##*/} - echo "Generating index for package $dpkg" >&2 + #echo "Generating index for package $dpkg" >&2 file_size=$(ls -l $pkg | awk '{print $5}') md5sum=$(md5sum $pkg) tar -xzOf "$pkg" ./control.tar.gz | \ diff --git a/scripts/scan-pkgs.sh b/scripts/scan-pkgs.sh index 20471ad57..f08ee812a 100644 --- a/scripts/scan-pkgs.sh +++ b/scripts/scan-pkgs.sh @@ -141,7 +141,7 @@ fi if [[ -n $NEED_INTL ]]; then if ! which intltool-update >/dev/null 2>&1; then - echo >&2 You need intltool-update to build $NEED_INTL + echo >&2 You need intltool to build $NEED_INTL out=1 fi fi |