aboutsummaryrefslogtreecommitdiff
path: root/kconfig
AgeCommit message (Collapse)Author
2021-02-23Add df to the macOS default configuration.Elliott Hughes
"Works for me".
2020-12-08Remove last traces of CONFIG_TOYBOX_I18N.Elliott Hughes
`make macos_defconfig` was grumbling.
2020-04-27Allow KCONFIG_ALLCONFIG to delta against defconfig.Rob Landley
2020-04-02Fix macOS build.Elliott Hughes
I'd put the rtc_wkalarm struct in the globals to get it zeroed for free, but since there's no such type on macOS, that breaks the build. Rather than define a bogus struct in portability.h, I've gone for making it an explicitly-zeroed local. (And I've sorted the locals largest-first.) Note that the use of struct rtc_time as if it was the same as struct tm in this code follows the existing code in hwclock, but I worry that we're going to have trouble with that because of the extra tm_gmtoff and tm_zone fields in struct tm. But that's a worry for another day... This patch also removes the CONFIG_CP_PRESERVE from the macos_miniconfig, since that option was removed a while back.
2020-02-20Fix bitrot in macos_miniconfig.Elliott Hughes
2020-01-09Don't feed "y" to silentoldconfig, it puts menus in a loop. Hit enter instead.Rob Landley
2019-11-23macos_miniconfig: add cp, mktemp, and mv.Elliott Hughes
All three have been in use for the Android build for a while now, and all the tests pass.
2019-11-22mac: build fallocate and stat by default.Elliott Hughes
fallocate is fairly new, but I'm not sure why we didn't have stat on the list already. Having it fixes the truncate tests.
2019-10-08Disable conflicting internal symbol "ARCH".Rob Landley
2019-08-22Quiet "make clean" so it doesn't fill a whole screen with output.Rob Landley
2019-06-03Clean up remaining TAIL_SEEK references.Elliott Hughes
2019-06-03tail: fix macOS build.Elliott Hughes
Trivial breakage from the recent refactoring. Also add tail to the default config for macOS. I'm still unconvinced that CONFIG_TAIL_SEEK makes sense in a world where inotify support is always built in, but that's an argument for another day...
2019-05-23macos_miniconfig: remove pending tr and add non-pending toys.Elliott Hughes
Aside: I was surprised that `make defconfig` installs the default *Linux* config even on macOS.
2019-01-25Add "make bsd_defconfig" and "make macos_defconfig".Rob Landley
2019-01-18Set of commands Ed Maste got building on FreeBSD.Rob Landley
2018-10-27Fix "make distclean defconfig toybox" all on one line (good of $CROSS_COMPILERRob Landley
changed), better error message when .config missing.
2018-10-20Add SPDX identifier, update copyright year, move kconfig note into kconfig/Rob Landley
directory.
2016-01-12Expand defconfig/allyesconfig/allnoconfig help text to explain what they're for.Rob Landley
2015-08-31Work around bug in gcc 5.2.0 that miscompiles linux 2.6.12's kconfig.Rob Landley
2015-06-10Cosmetic tweak: no need for pages of text from "make defconfig" and friends.Rob Landley
2015-03-26Explain the craptacular nature of kconfig, and the plan to replace it.Rob Landley
2015-03-25Fix toybox build with C99 compilersBernhard Rosenkr?nzer
toybox "make menuconfig" currently fails to build if the compiler is in C99 mode (clang 3.6 and gcc 5.0 snapshots default to C99 mode, you can also reproduce the failure with older gcc by using 'make menuconfig HOSTCC="gcc -std=gnu99"'). The problem is that inline semantics changed in C99, and kconf_id_lookup's inline-ness depends on C89 semantics there.
2012-05-20Silence pointless warnings.Rob Landley
2008-01-19Zap toys/Config.in and instead create generated/Config.in from contents ofRob Landley
toys/*.c. Move relevant info into comment at the top of each toys/*.c. Also convert more of Makefile into a thin wrapper around shell scripts that actually do the work. (Makefile is only still there for the user interface.)
2007-06-18Fix makefile to defconfig properly, and leak in a bit of the new test0.0.3Rob Landley
infrastructure so I don't have to revert it to check this in. :)
2007-06-01Humor dash, which is broken.Rob Landley
2007-03-15Apply uClibc's changes to this kconfig.Rob Landley
2007-03-12Move project name to Makefile.Rob Landley
2007-03-12Convert HOST_CC to HOSTCC to be more like uClibc build.Rob Landley
2007-03-12Change help text: not just used for the kernel.Rob Landley
2007-02-12Make kconfig build on MacOS X. (Because it's there.)Rob Landley
2007-01-31Add "make defconfig". Modify global options to start with CONFIG_TOYBOX_.Rob Landley
2006-11-26Add bloat-o-meter, make bloatcheck, and scripts/showasm.Rob Landley
2006-11-26Reduce flag duplication and make kconfig use HOST_CC.Rob Landley
2006-11-25Leftover from when I cleaned this up for another project.Rob Landley
2006-10-31Add menuconfig, plus some basic Config info, lots of which is just futurelandley
plans for toysh. Nothing's currently _using_ this config info, but at least it's being generated now.