summaryrefslogtreecommitdiff
path: root/package/busybox/Makefile
AgeCommit message (Collapse)Author
2023-05-26busybox: update to 1.36.1Waldemar Brodkorb
2023-01-20busybox: update to 1.36.0, remove unsupported choiceWaldemar Brodkorb
2022-02-07goodbye systemd, never worked fully on a openadk emulator or device. Use ↵Waldemar Brodkorb
simple static device nodes with devtmpfs as default. mdev is to bloated for some devices
2022-01-08busybox/hush: update to 1.35.0Waldemar Brodkorb
2021-04-10update busybox/hush to latestWaldemar Brodkorb
2020-08-06busybox: update to latestWaldemar Brodkorb
2017-01-30busybox: sort lists, fix when grep/find should be disabledWaldemar Brodkorb
Reported by Oliver, who uses grep/findutils instead of busybox grep/find in his config.
2017-01-26busybox: fix symbol names, reported by Alex BrandWaldemar Brodkorb
2017-01-24busybox: update to 1.26.2Waldemar Brodkorb
2016-12-23busybox: update to 1.26.0Waldemar Brodkorb
2016-11-25finalize systemd as alternative init systemWaldemar Brodkorb
Most important is the fix in patch-src_journal_journald-server_c, which breaks startup of systemd-journald when code is compiled with -DNDEBUG. A lot of base-files reorganizing to only install required files on sysv systems.
2016-11-13busybox: fix blocking ntpd when DNS isn't availableWaldemar Brodkorb
2016-09-07fix busybox ip default gw issue, add all hotfixesWaldemar Brodkorb
2016-06-25busybox: update to 1.25.0Waldemar Brodkorb
2016-04-02busybox: update to 1.24.2Waldemar Brodkorb
2015-12-27more xtensa improvementsWaldemar Brodkorb
2015-12-21bzip2 can be used from hostWaldemar Brodkorb
2015-12-13rework prereq checkWaldemar Brodkorb
The new prereq check is completely implemented in POSIX shell in scripts/prereq.sh. It combines the old features from Makefile, scan-tools.sh, scan-pkgs.sh, reloc.sh and some wrappers for tools. The big benefit is to have all portability stuff in one place. Furthermore we can compile GNU make and bash on the fly, for systems lacking the required tools. All changes on the host are detected on the fly, no make prereq required anymore. The build process is separated in following three phases: 1. small wrapper Makefile is used for BSD make or GNU make 2. prereq.sh is called, doing all checking, calling Makefile.adk 3. old logic in Makefile.adk or mk/build.mk is used Tested successfully on Linux, MacOS X, Cygwin, FreeBSD, OpenBSD and NetBSD. An old depmaker bug was fixed, only optional host tools are compiled. For example, even when a host provides xz, a local xz was compiled in the past, because other packages had a build dependency on it. Signed-off-by: Waldemar Brodkorb <wbx@openadk.org>
2015-11-01busybox: update to latest stable versionWaldemar Brodkorb
2015-07-25package/busybox: introduce ntpdate init scriptPhil Sutter
This is useful to have a blocking instance of ntpd setting the system time at startup for daemons started later which require the time being set, like e.g. aiccu. Signed-off-by: Phil Sutter <phil@nwl.cc>
2015-06-28disable lto for ltpWaldemar Brodkorb
2015-06-26disable lto, doesn't compileWaldemar Brodkorb
2015-06-22use kmod for udev, fix busybox handling when modutils got disabledWaldemar Brodkorb
2015-06-16fix h8/300 userland buildWaldemar Brodkorb
2015-06-10add simulator target for h8/300, reorg no-MMUWaldemar Brodkorb
Some no-MMU targets need uclinux in its triple, some not. Introduce a new symbol for noMMU to select correct software and configuration instead of using UCLINUX symbol.
2015-06-02add missing ash symbol, reported via #openadkWaldemar Brodkorb
2015-05-22add workaround for rpi2 eth0Waldemar Brodkorb
2015-05-16update busybox to latest stable versionWaldemar Brodkorb
2015-03-07disable mallopt calls, some uClibc configurations doesn't work well with it.Waldemar Brodkorb
2015-03-02update elf2flt, so that arm-nommu binaries are linkable.Waldemar Brodkorb
2015-01-26remove debug codeWaldemar Brodkorb
2015-01-09update busybox to 2.23.0Waldemar Brodkorb
add upstream patches. Fix the busybox disable mechanism. When you choose less or lsusb full blown version, be sure busybox applet is disabled.
2014-12-27convert checksum check to sha256Waldemar Brodkorb
Rename the variable name to PKG_HASH and use a 256 Bit SHA checksum to verify the integrity of distfiles. While there do some housekeeping and remove old packages.
2014-07-28add some basic infrastructure for qemu-system-m68kWaldemar Brodkorb
Qemu emulates a Coldfire Evaluation board without MMU. As that is the first non-MMU platform in OpenADK I added ADK_TARGET_UCLINUX. Mksh can not be used for non-MMU, because it requires fork() for job control and other things. We use hush here. non-MMU support in uClibc does not have shared library support. Kernel does not start yet. So no runtime testing, but at least coldfire toolchain can be tested with uClibc-ng. Signed-off-by: Waldemar Brodkorb <wbx@openadk.org>
2014-06-27rework service startup, do not hardcode into postinst scriptsWaldemar Brodkorb
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-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-29resolve merge conflictWaldemar Brodkorb
2014-05-23update to latest upstream, cleanup makefileWaldemar Brodkorb
2014-05-13use static-libgc not only for base, simplifies dependencies, just a few ↵Waldemar Brodkorb
bytes bigger for a xbmc build
2014-05-05gnu sed no longer required, will be build as hosttoolWaldemar Brodkorb
2014-05-05enable network by defaultWaldemar Brodkorb
2014-05-04small fix for the new services busybox stuffWaldemar Brodkorb
2014-05-04dynamically start busybox’ servicesThorsten Glaser
2014-05-02create core package section, cleanup old installer stuffWaldemar Brodkorb
2014-04-07allow to enable daemons on startup via menuconfigWaldemar Brodkorb
2014-03-30rework hosttools building, add tools into package stuffWaldemar Brodkorb
2014-03-11add adk-test-tools packageWaldemar Brodkorb
- scripts to shutdown qemu from linux - only start klogd when printk is available
2014-03-06get rid of ADK_NATIVE mode, it is not regulary tested and the results where ↵Waldemar Brodkorb
not satisfying.
2014-02-17fix installations of big packages with ipkg for some systems, like raspberry piWaldemar Brodkorb