Browse Source

Merge branch 'master' of git+ssh://openadk.org/git/openadk

Waldemar Brodkorb 12 years ago
parent
commit
7251ad7064
4 changed files with 12 additions and 10 deletions
  1. 1 4
      BUGS
  2. 3 0
      README
  3. 2 0
      TODO
  4. 6 6
      scripts/scan-tools.sh

+ 1 - 4
BUGS

@@ -1,5 +1,2 @@
-- qemu-sparc with eglibc does not compile
-- qemu-ppc64 does not boot
+- uclibc N64 ABI on mips64{,el} targets does not work, nptl fork problem
 - cris foxboard-lx is broken, binutils failure
-- uclibc on lemote mips64 target does not work (only uclibc-trunk with patches)
-- qemu-mips64* targets does not boot, kernel problem?

+ 3 - 0
README

@@ -15,6 +15,9 @@ Before you can start you need to install some tools:
 - patch
 - gzip
 - bzip2
+- lzop
+- lzma
+- xz
 - wget
 - libc headers
 - ncurses5 headers

+ 2 - 0
TODO

@@ -1,3 +1,5 @@
+- use host-tools infrastructure for openjdk7
+- remove openjdk6
 - evaluate libguestfs for image creation
 - add grsec kernel patch
 - check for gcc and SSP again

+ 6 - 6
scripts/scan-tools.sh

@@ -112,6 +112,12 @@ if ! which gzip >/dev/null 2>&1; then
 	out=1
 fi
 
+if ! which bzip2 >/dev/null 2>&1; then
+	echo You must install bzip2 to continue.
+	echo
+	out=1
+fi
+
 if ! which lzop >/dev/null 2>&1; then
 	echo You must install lzop to continue.
 	echo
@@ -130,12 +136,6 @@ if ! which xz >/dev/null 2>&1; then
 	out=1
 fi
 
-if ! which bzip2 >/dev/null 2>&1; then
-	echo You must install bzip2 to continue.
-	echo
-	out=1
-fi
-
 if ! which patch >/dev/null 2>&1; then
 	echo You must install patch to continue.
 	echo