From f89cb694c6a1b9d8d60ca776e47c808eb837ea34 Mon Sep 17 00:00:00 2001 From: Waldemar Brodkorb Date: Wed, 13 Nov 2013 19:58:43 +0100 Subject: refresh BUG list --- BUGS | 5 +---- 1 file changed, 1 insertion(+), 4 deletions(-) diff --git a/BUGS b/BUGS index 20f48acdc..e8cfe7fd2 100644 --- a/BUGS +++ b/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? -- cgit v1.2.3 From 895b343e0f6e74f4e214540e4231bbe20cd96d8f Mon Sep 17 00:00:00 2001 From: Waldemar Brodkorb Date: Wed, 13 Nov 2013 20:00:16 +0100 Subject: refresh TODO --- TODO | 2 ++ 1 file changed, 2 insertions(+) diff --git a/TODO b/TODO index fc457fa92..57ab4fb30 100644 --- a/TODO +++ b/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 -- cgit v1.2.3 From 0b3dfd5b3eb3eafb9fc731446e0c840e791c5c27 Mon Sep 17 00:00:00 2001 From: Waldemar Brodkorb Date: Wed, 13 Nov 2013 20:04:25 +0100 Subject: refresh list of required tools --- README | 3 +++ scripts/scan-tools.sh | 12 ++++++------ 2 files changed, 9 insertions(+), 6 deletions(-) diff --git a/README b/README index c46e0a167..7d6b5bb6d 100644 --- a/README +++ b/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 diff --git a/scripts/scan-tools.sh b/scripts/scan-tools.sh index 0b7b1d08c..a060d24fc 100644 --- a/scripts/scan-tools.sh +++ b/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 -- cgit v1.2.3