summaryrefslogtreecommitdiff
path: root/target/mips/Makefile
AgeCommit message (Collapse)Author
2014-06-21s/TOPDIR/ADK_TOPDIR/Waldemar Brodkorb
to avoid namespace collisions in some packages, rename TOPDIR. Sorry you need to make cleandir && make prereq && make
2014-06-08be consistent, do not use - in rootfs namesWaldemar Brodkorb
2014-06-02refactor CPU_ARCH/ARCH variablesWaldemar Brodkorb
After Joerg asked me about the difference between ADK_TARGET_ARCH and ADK_TARGET_CPU_ARCH I recognized many duplication of variables for this information. These patch fixes this up. Use make cleandir && make menuconfig && make
2014-05-26fix adinstall syntaxWaldemar Brodkorb
2014-05-24mips finetuning and fixesWaldemar Brodkorb
2014-05-23fix symbol renaming bugsWaldemar Brodkorb
2014-05-23resolve merge conflictWaldemar Brodkorb
2014-05-23split targethelp from install targetWaldemar Brodkorb
cleanup target/*/Makefile stuff.
2014-05-18convert mips to use new targethelp make target, useful to just show the help ↵Waldemar Brodkorb
text after building
2014-05-09readd mikrotik rb532 supportWaldemar Brodkorb
2014-04-07grub2 by default offWaldemar Brodkorb
2014-03-18use archive without kernelWaldemar Brodkorb
2014-03-17fix boot from disk for qemu targetsWaldemar Brodkorb
2014-03-12convert lemote yeelong to miniconfigWaldemar Brodkorb
2014-03-06remove comment, sdc should be fineWaldemar Brodkorb
2014-03-01move target/tools to tools, use ADK_HOST_NEED variable to build a tool, when ↵Waldemar Brodkorb
required. Add archivers to tools, remove prereq checks for them. Rename host_ dir in preparation for shared openadk source via nfs/smb from different host systems. Make some abi cleanup
2014-02-26disable hostfwd in qemu call, otherwise it conflicts running multiple qemusWaldemar Brodkorb
2014-02-18use bin directory for host binaries only, use new firmware directory for the ↵Waldemar Brodkorb
resulting firmware
2013-11-08use e1000 network card, use new qemu syntaxWaldemar Brodkorb
2013-11-08enable variable kernel target name, qemu-mips targets use vmlinuzWaldemar Brodkorb
2013-07-10update kernel 3.4.x, fix netfilter nat modulesWaldemar Brodkorb
2012-08-18use create.sh as non-rootWaldemar Brodkorb
2012-03-13add comment about bootingWaldemar Brodkorb
2012-01-17make broadcom devices work with selfrelocatable bootloader (even Asus WL500gp)Waldemar Brodkorb
2012-01-15mk/image.mk: improve and simplify initramfs generationPhil Sutter
Using the kernel tools is a lot better than calling cpio ourselfs, as this way we can have it create device nodes for us. So no need to reopen /dev/console and things like that. While here, fix also initramfs compression (untested), as in my experience the kernel drops all symbols regarding compression from it's .config in the first compile phase. Probably one should make the actual compression algorithm configurable (and ideally depending on what the kernel supports for the given architecture). This is a rough hack based on what I'm using in the custom viprinux build file, so something like this is already running somewhere. ;)
2012-01-09update to 3.1.8, add lzma-loader for brcm47xx, kernel stuff + patches does ↵Waldemar Brodkorb
not work on Asus WL500gp
2011-10-11add help for network bootWaldemar Brodkorb
2011-08-30fix network config for qemu-mipsWaldemar Brodkorb
2011-08-29set pagesize to 4 kb for qemuWaldemar Brodkorb
2011-08-24sync patch with OpenWrt, combine both targets (rb411/rb433)Waldemar Brodkorb
2011-08-22fix the help for usb boot, root= is required for nowWaldemar Brodkorb
2011-06-12update default kernel to 2.6.39Waldemar Brodkorb
2011-05-09make bulk fixesWaldemar Brodkorb
2011-05-05Merge branch 'master' of git+ssh://openadk.org/git/openadkWaldemar Brodkorb
2011-05-05fix lemote targetWaldemar Brodkorb
2011-05-05add kernel-install for fon targetWaldemar Brodkorb
2011-04-28add sections for rb4xxWaldemar Brodkorb
2011-04-26add model support for broadcom devicesWaldemar Brodkorb
2011-04-26fix parallel build, readd squashfs/cf fs targets for mipsWaldemar Brodkorb
2011-04-26make arm/mips architectures more configurable in a simpler wayWaldemar Brodkorb
2011-01-03fix qemu targets, make them bootable againWaldemar Brodkorb
2010-12-31 should be without path, just the name of the kernelWaldemar Brodkorb
2010-12-30rework architecture / embedded systems conceptWaldemar Brodkorb
Make configuration of new targets cheap. Just add a new file in target/arch/sys-enabled/foo. See other files for syntax. While doing runtime tests with the new infrastructure I've updated a lot of other stuff: - gcc 4.5.2 - uClibc 0.9.32-rc1 (NPTL) - strongswan, php, miredo, parted, util-linux-ng, e2fsprogs I promise, this is the last big fat commit this year ;)
2010-11-26implement the concept of target choice by embedded system or architectureWaldemar Brodkorb
you can now choose between specific embedded systems like PC Engines ALIX boards, Foxboard, .. or between generic architecture support like x86, x86_64, mips, ... This does reduce the overhead of duplicate configuration files in target directory. Now qemu, toolchain and ibm x40 support is combined in one target directory target/x86. Distinguishing between hardware profiles happens via menu based configuration. (CPU choice for kernel, CFLAGS for package building, ..). We will see if this is the right direction.