diff options
127 files changed, 3019 insertions, 5201 deletions
@@ -1,5 +1,2 @@ -- qemu-sparc: startup kernel with gcc 4.8.2 broken -- qemu-sh4: usb keyboard is broken -- qemu-arm: thumb mode with glibc does not boot - qemu-sparc64: ide driver not working, only virtio (but unstable) - qemu-microblaze: ml605 early printk and network card emulation fails, little endian works @@ -106,6 +106,7 @@ depends on !ADK_TOOLCHAIN_ONLY && !ADK_CHOOSE_TARGET_ARCH && !ADK_CHOOSE_TARGET_ choice prompt "Kernel Version" +default ADK_KERNEL_VERSION_3_13_11 config ADK_KERNEL_VERSION_3_14_1 prompt "3.14.1" @@ -1,24 +1,39 @@ +global: +- projects dir idea + +toolchain stuff: - hash-style=gnu for non-mips and non-musl -- fix libiberty.a mess - check gold for mozilla compile -- add stunnel -- check for gcc and SSP again +- check for gcc and SSP - config.site/config.cache usage for speedup? http://lists.gnu.org/archive/html/autoconf/2014-03/msg00031.html -- add daemon() function to functions.sh -- add printing of OK/FAIL (optional verbose bootup) - fixup rework libgcc --export-symbols - libgcc static? - static toolchain support -- try Preset Loops per Jiffy for faster bootup via lpj= -- port uuterm + +base system: +- automount ntfs/ntfs-3g +- add daemon() function to functions.sh - add fb full screen logo -- port opkg with gpg signing +- add printing of OK/FAIL (optional verbose bootup) +- try Preset Loops per Jiffy for faster bootup via lpj= - restart network (kill wpa_supplicant) - essid with spaces + +new or update packages: +- xbmc gotham +- add rsyslog +- add btrfs-utils +- add stunnel +- port uuterm +- port opkg with gpg signing - add grsec kernel patch -- microblaze: add cfgfs partition to dts, add partition to spartan dts -- evaluate libguestfs for image creation - port msmtp - rutorrent porting - lms perl + +system target specific: +- fix ibm x40 bootup +- reenable rb532 +- qemu superh more ram +- microblaze: add cfgfs partition to dts, add partition to spartan dts diff --git a/adk/tools/pkgmaker.c b/adk/tools/pkgmaker.c index 6997f3def..ef10d1120 100644 --- a/adk/tools/pkgmaker.c +++ b/adk/tools/pkgmaker.c @@ -758,7 +758,7 @@ int main() { fprintf(cfg, "\ttristate\n"); if (pkg_multi != NULL) if (strncmp(pkg_multi, "1", 1) == 0) - if (strncmp(toupperstr(token), toupperstr(pkgdirp->d_name), strlen(token)) != 0) + if (strncmp(toupperstr(token), toupperstr(pkgdirp->d_name), strlen(pkgdirp->d_name)) != 0) fprintf(cfg, "\tdepends on ADK_PACKAGE_%s\n", toupperstr(pkgdirp->d_name)); free(pseudo_name); |