├── LICENSE └── busybox-v1.29.3 ├── .config ├── .config.old ├── .indent.pro ├── AUTHORS ├── Config.in ├── INSTALL ├── LICENSE ├── Makefile ├── Makefile.custom ├── Makefile.flags ├── Makefile.help ├── MiX-build.sh ├── NOFORK_NOEXEC.lst ├── NOFORK_NOEXEC.sh ├── README ├── TODO ├── TODO_unicode ├── applets ├── Kbuild ├── Kbuild.src ├── applet_tables.c ├── applets.c ├── busybox.mkll ├── busybox.mksuid ├── individual.c ├── install.sh ├── usage.c ├── usage_compressed └── usage_pod.c ├── applets_sh ├── README ├── dos2unix ├── nologin ├── tac └── unix2dos ├── arch ├── i386 │ └── Makefile ├── sparc │ └── Makefile └── sparc64 │ └── Makefile ├── archival ├── Config.in ├── Config.src ├── Kbuild ├── Kbuild.src ├── ar.c ├── bbunzip.c ├── bbunzip_test.sh ├── bbunzip_test2.sh ├── bbunzip_test3.sh ├── bzip2.c ├── cpio.c ├── dpkg.c ├── dpkg_deb.c ├── gzip.c ├── libarchive │ ├── Kbuild │ ├── Kbuild.src │ ├── bz │ │ ├── LICENSE │ │ ├── README │ │ ├── blocksort.c │ │ ├── bzlib.c │ │ ├── bzlib.h │ │ ├── bzlib_private.h │ │ ├── compress.c │ │ └── huffman.c │ ├── common.c │ ├── data_align.c │ ├── data_extract_all.c │ ├── data_extract_to_command.c │ ├── data_extract_to_stdout.c │ ├── data_skip.c │ ├── decompress_bunzip2.c │ ├── decompress_gunzip.c │ ├── decompress_uncompress.c │ ├── decompress_unlzma.c │ ├── decompress_unxz.c │ ├── filter_accept_all.c │ ├── filter_accept_list.c │ ├── filter_accept_list_reassign.c │ ├── filter_accept_reject_list.c │ ├── find_list_entry.c │ ├── get_header_ar.c │ ├── get_header_cpio.c │ ├── get_header_tar.c │ ├── get_header_tar_bz2.c │ ├── get_header_tar_gz.c │ ├── get_header_tar_lzma.c │ ├── get_header_tar_xz.c │ ├── header_list.c │ ├── header_skip.c │ ├── header_verbose_list.c │ ├── init_handle.c │ ├── liblzo.h │ ├── lzo1x_1.c │ ├── lzo1x_1o.c │ ├── lzo1x_9x.c │ ├── lzo1x_c.c │ ├── lzo1x_d.c │ ├── open_transformer.c │ ├── seek_by_jump.c │ ├── seek_by_read.c │ ├── unpack_ar_archive.c │ ├── unsafe_prefix.c │ ├── unsafe_symlink_target.c │ └── unxz │ │ ├── README │ │ ├── xz.h │ │ ├── xz_config.h │ │ ├── xz_dec_bcj.c │ │ ├── xz_dec_lzma2.c │ │ ├── xz_dec_stream.c │ │ ├── xz_lzma2.h │ │ ├── xz_private.h │ │ └── xz_stream.h ├── lzop.c ├── rpm.c ├── rpm.h ├── tar.c ├── tar_symlink_attack └── unzip.c ├── binaries └── shared │ ├── arm │ └── busybox │ ├── arm64 │ └── busybox │ ├── mips │ └── busybox │ ├── mips64 │ └── busybox │ ├── x64 │ └── busybox │ └── x86 │ └── busybox ├── configs ├── TEST_nommu_defconfig ├── TEST_noprintf_defconfig ├── TEST_rh9_defconfig ├── android2_defconfig ├── android_502_defconfig ├── android_defconfig ├── android_ndk_defconfig ├── android_ndk_mini-arm-defconfig ├── android_ndk_mini-arm64-defconfig ├── android_ndk_mini-mips-defconfig ├── android_ndk_mini-mips64-defconfig ├── android_ndk_mini-x64-defconfig ├── android_ndk_mini-x86-defconfig ├── cygwin_defconfig └── freebsd_defconfig ├── console-tools ├── Config.in ├── Config.src ├── Kbuild ├── Kbuild.src ├── chvt.c ├── clear.c ├── deallocvt.c ├── dumpkmap.c ├── fgconsole.c ├── kbd_mode.c ├── loadfont.c ├── loadkmap.c ├── openvt.c ├── reset.c ├── resize.c ├── setconsole.c ├── setkeycodes.c ├── setlogcons.c └── showkey.c ├── coreutils ├── Config.in ├── Config.src ├── Kbuild ├── Kbuild.src ├── basename.c ├── cat.c ├── chgrp.c ├── chmod.c ├── chown.c ├── chroot.c ├── cksum.c ├── comm.c ├── cp.c ├── cut.c ├── date.c ├── dd.c ├── df.c ├── dirname.c ├── dos2unix.c ├── du.c ├── echo.c ├── env.c ├── expand.c ├── expr.c ├── factor.c ├── false.c ├── fold.c ├── fsync.c ├── head.c ├── hostid.c ├── id.c ├── id_test.sh ├── install.c ├── libcoreutils │ ├── Kbuild │ ├── Kbuild.src │ ├── coreutils.h │ ├── cp_mv_stat.c │ └── getopt_mk_fifo_nod.c ├── link.c ├── ln.c ├── logname.c ├── ls.c ├── md5_sha1_sum.c ├── mkdir.c ├── mkfifo.c ├── mknod.c ├── mktemp.c ├── mv.c ├── nice.c ├── nl.c ├── nohup.c ├── nproc.c ├── od.c ├── od_bloaty.c ├── paste.c ├── printenv.c ├── printf.c ├── pwd.c ├── readlink.c ├── realpath.c ├── rm.c ├── rmdir.c ├── seq.c ├── shred.c ├── shuf.c ├── sleep.c ├── sort.c ├── split.c ├── stat.c ├── stty.c ├── sum.c ├── sync.c ├── tac.c ├── tail.c ├── tee.c ├── test.c ├── test_ptr_hack.c ├── timeout.c ├── touch.c ├── tr.c ├── true.c ├── truncate.c ├── tty.c ├── uname.c ├── uniq.c ├── unlink.c ├── usleep.c ├── uudecode.c ├── uuencode.c ├── wc.c ├── who.c ├── whoami.c └── yes.c ├── debianutils ├── Config.in ├── Config.src ├── Kbuild ├── Kbuild.src ├── pipe_progress.c ├── run_parts.c ├── start_stop_daemon.c └── which.c ├── docs ├── BusyBox.html ├── BusyBox.txt ├── Kconfig-language.txt ├── Serial-Programming-HOWTO.txt ├── busybox.1 ├── busybox.net │ └── BusyBox.html ├── busybox.pod ├── busybox_footer.pod ├── busybox_header.pod ├── cgi │ ├── cl.html │ ├── env.html │ ├── in.html │ ├── interface.html │ └── out.html ├── contributing.txt ├── ctty.htm ├── draft-coar-cgi-v11-03-clean.html ├── ifupdown_design.txt ├── keep_data_small.txt ├── logging_and_backgrounding.txt ├── mdev.txt ├── new-applet-HOWTO.txt ├── nofork_noexec.txt ├── posix_conformance.txt ├── sigint.htm ├── smallint.txt ├── style-guide.txt ├── syslog.conf.txt ├── tar_pax.txt ├── tcp.txt ├── unicode.txt ├── unicode_UTF-8-test.txt ├── unicode_full-bmp.txt └── unit-tests.txt ├── e2fsprogs ├── Config.in ├── Config.src ├── Kbuild ├── Kbuild.src ├── README ├── chattr.c ├── e2fs_lib.c ├── e2fs_lib.h ├── fsck.c ├── lsattr.c └── tune2fs.c ├── editors ├── Config.in ├── Config.src ├── Kbuild ├── Kbuild.src ├── awk.c ├── cmp.c ├── diff.c ├── ed.c ├── patch.c ├── patch_bbox.c ├── patch_toybox.c ├── sed.c ├── sed1line.txt ├── sed_summary.htm └── vi.c ├── examples ├── android-build ├── bootfloppy │ ├── bootfloppy.txt │ ├── display.txt │ ├── etc │ │ ├── fstab │ │ ├── init.d │ │ │ └── rcS │ │ ├── inittab │ │ └── profile │ ├── mkdevs.sh │ ├── mkrootfs.sh │ ├── mksyslinux.sh │ ├── quickstart.txt │ └── syslinux.cfg ├── busybox.spec ├── depmod ├── depmod.pl ├── devfsd.conf ├── dnsd.conf ├── inetd.conf ├── inittab ├── linux-2.6.30_proc_self_exe.patch ├── mdev.conf ├── mdev.conf.change_blockdev.sh ├── mdev_fat.conf ├── mk2knr.pl ├── shutdown-1.0 │ ├── README │ └── script │ │ ├── do_shutdown │ │ ├── hardshutdown.c │ │ ├── hardshutdown.make.sh │ │ ├── shutdown │ │ ├── stop_storage │ │ └── stop_tasks ├── udhcp │ ├── sample.bound │ ├── sample.deconfig │ ├── sample.nak │ ├── sample.renew │ ├── sample.script │ ├── simple.script │ └── udhcpd.conf ├── undeb ├── unrpm ├── var_service │ ├── README │ ├── README_distro_proposal.txt │ ├── dhcp_if │ │ ├── README │ │ ├── convert2ipconf │ │ ├── convert2ntpconf │ │ ├── dhcp_handler │ │ ├── finish │ │ ├── log │ │ │ └── run │ │ ├── p_log │ │ ├── run │ │ └── w_log │ ├── dhcp_if_pinger │ │ ├── README │ │ └── run │ ├── dhcpd_if │ │ ├── README │ │ ├── log │ │ │ └── run │ │ ├── p_log │ │ ├── run │ │ ├── udhcpd.conf │ │ ├── w_dumpleases │ │ ├── w_dumpleases_countdown │ │ └── w_log │ ├── dnsmasq │ │ ├── README │ │ ├── dnsmasq.conf │ │ ├── log │ │ │ └── run │ │ ├── p_log │ │ ├── run │ │ └── w_log │ ├── ftpd │ │ ├── README │ │ ├── log │ │ │ └── run │ │ ├── p_log │ │ ├── run │ │ └── w_log │ ├── fw │ │ ├── README │ │ ├── conf │ │ │ ├── 11.22.33.44.ipconf-- │ │ │ ├── 192.168.0.1.ipconf │ │ │ └── lo.ipconf │ │ ├── etc │ │ │ ├── dnsmasq_servers.conf │ │ │ ├── hosts │ │ │ └── resolv.conf │ │ ├── run │ │ └── stat │ ├── getty_tty1 │ │ ├── README │ │ ├── alt08x16+unimap.fnt │ │ ├── cfg │ │ ├── koi8r_to_uni.trans │ │ ├── login.sh │ │ ├── run │ │ └── unicode_cyrillic.keymap │ ├── gpm │ │ ├── README │ │ └── run │ ├── httpd │ │ ├── README │ │ ├── log │ │ │ └── run │ │ ├── p_log │ │ ├── run │ │ └── w_log │ ├── ifplugd_if │ │ ├── README │ │ ├── ifplugd_handler │ │ ├── log │ │ │ └── run │ │ ├── p_log │ │ ├── run │ │ └── w_log │ ├── inetd │ │ ├── README │ │ ├── inetd.conf │ │ ├── log │ │ │ └── run │ │ ├── p_log │ │ ├── run │ │ └── w_log │ ├── nmeter │ │ ├── README │ │ └── run │ ├── ntpd │ │ ├── README │ │ ├── log │ │ │ └── run │ │ ├── ntp.script │ │ ├── p_log │ │ ├── p_log_important │ │ ├── run │ │ └── w_log │ ├── supplicant_if │ │ ├── README │ │ ├── log │ │ │ └── run │ │ ├── p_log │ │ ├── run │ │ ├── w_log │ │ └── wpa_supplicant.conf │ ├── tftpd │ │ ├── README │ │ ├── log │ │ │ └── run │ │ ├── p_log │ │ ├── run │ │ └── w_log │ └── zcip_if │ │ ├── README │ │ ├── convert2ipconf │ │ ├── finish │ │ ├── log │ │ └── run │ │ ├── p_log │ │ ├── run │ │ ├── w_log │ │ └── zcip_handler └── zcip.script ├── findutils ├── Config.in ├── Config.src ├── Kbuild ├── Kbuild.src ├── find.c ├── grep.c └── xargs.c ├── include ├── NUM_APPLETS.h ├── applet_metadata.h ├── applet_tables.h ├── applets.h ├── applets.h.sh ├── applets.src.h ├── ar.h ├── autoconf.h ├── bb_archive.h ├── bb_e2fs_defs.h ├── bbconfigopts.h ├── bbconfigopts_bz2.h ├── busybox.h ├── common_bufsiz.h ├── common_bufsiz.h.method ├── config │ ├── MARKER │ ├── acpid.h │ ├── add │ │ └── shell.h │ ├── addgroup.h │ ├── adduser.h │ ├── adjtimex.h │ ├── ar.h │ ├── arp.h │ ├── arping.h │ ├── ash.h │ ├── ash │ │ ├── alias.h │ │ ├── bash │ │ │ ├── compat.h │ │ │ ├── not │ │ │ │ └── found │ │ │ │ │ └── hook.h │ │ │ └── source │ │ │ │ └── curdir.h │ │ ├── cmdcmd.h │ │ ├── echo.h │ │ ├── expand │ │ │ └── prmt.h │ │ ├── getopts.h │ │ ├── help.h │ │ ├── idle │ │ │ └── timeout.h │ │ ├── internal │ │ │ └── glob.h │ │ ├── job │ │ │ └── control.h │ │ ├── mail.h │ │ ├── optimize │ │ │ └── for │ │ │ │ └── size.h │ │ ├── printf.h │ │ ├── random │ │ │ └── support.h │ │ └── test.h │ ├── awk.h │ ├── base64.h │ ├── basename.h │ ├── bash │ │ └── is │ │ │ ├── ash.h │ │ │ ├── hush.h │ │ │ └── none.h │ ├── bb │ │ ├── arch.h │ │ └── sysctl.h │ ├── bbconfig.h │ ├── beep.h │ ├── blkdiscard.h │ ├── blkid.h │ ├── blockdev.h │ ├── bootchartd.h │ ├── brctl.h │ ├── build │ │ └── libbusybox.h │ ├── bunzip2.h │ ├── busybox.h │ ├── busybox │ │ └── exec │ │ │ └── path.h │ ├── bzcat.h │ ├── bzip2.h │ ├── bzip2 │ │ └── small.h │ ├── cal.h │ ├── cat.h │ ├── chat.h │ ├── chattr.h │ ├── chcon.h │ ├── chgrp.h │ ├── chmod.h │ ├── chown.h │ ├── chpasswd.h │ ├── chpst.h │ ├── chroot.h │ ├── chrt.h │ ├── chvt.h │ ├── cksum.h │ ├── clear.h │ ├── cmp.h │ ├── comm.h │ ├── conspy.h │ ├── cp.h │ ├── cpio.h │ ├── crond.h │ ├── crontab.h │ ├── cross │ │ └── compiler │ │ │ └── prefix.h │ ├── cryptpw.h │ ├── cttyhack.h │ ├── cut.h │ ├── date.h │ ├── dc.h │ ├── dd.h │ ├── deallocvt.h │ ├── debug.h │ ├── debug │ │ ├── pessimize.h │ │ └── sanitize.h │ ├── default │ │ ├── depmod │ │ │ └── file.h │ │ ├── modules │ │ │ └── dir.h │ │ └── setfont │ │ │ └── dir.h │ ├── delgroup.h │ ├── deluser.h │ ├── depmod.h │ ├── desktop.h │ ├── devfsd.h │ ├── devfsd │ │ ├── fg │ │ │ └── np.h │ │ ├── modload.h │ │ └── verbose.h │ ├── devmem.h │ ├── df.h │ ├── dhcpd │ │ └── leases │ │ │ └── file.h │ ├── dhcprelay.h │ ├── diff.h │ ├── dirname.h │ ├── dmalloc.h │ ├── dmesg.h │ ├── dnsd.h │ ├── dnsdomainname.h │ ├── dos2unix.h │ ├── dpkg.h │ ├── dpkg │ │ └── deb.h │ ├── du.h │ ├── dumpkmap.h │ ├── dumpleases.h │ ├── echo.h │ ├── ed.h │ ├── efence.h │ ├── egrep.h │ ├── eject.h │ ├── env.h │ ├── envdir.h │ ├── envuidgid.h │ ├── ether │ │ └── wake.h │ ├── expand.h │ ├── expr.h │ ├── expr │ │ └── math │ │ │ └── support │ │ │ └── 64.h │ ├── extra │ │ ├── cflags.h │ │ ├── compat.h │ │ ├── ldflags.h │ │ └── ldlibs.h │ ├── factor.h │ ├── fakeidentd.h │ ├── fallocate.h │ ├── false.h │ ├── fatattr.h │ ├── fbset.h │ ├── fbsplash.h │ ├── fdflush.h │ ├── fdformat.h │ ├── fdisk.h │ ├── fdisk │ │ └── support │ │ │ └── large │ │ │ └── disks.h │ ├── feature │ │ ├── 2 │ │ │ └── 4 │ │ │ │ └── modules.h │ │ ├── acpid │ │ │ └── compat.h │ │ ├── adduser │ │ │ └── to │ │ │ │ └── group.h │ │ ├── aix │ │ │ └── label.h │ │ ├── allow │ │ │ └── exec.h │ │ ├── ar │ │ │ ├── create.h │ │ │ └── long │ │ │ │ └── filenames.h │ │ ├── awk │ │ │ ├── gnu │ │ │ │ └── extensions.h │ │ │ └── libm.h │ │ ├── beep │ │ │ ├── freq.h │ │ │ └── length │ │ │ │ └── ms.h │ │ ├── blkid │ │ │ └── type.h │ │ ├── bootchartd │ │ │ ├── bloated │ │ │ │ └── header.h │ │ │ └── config │ │ │ │ └── file.h │ │ ├── brctl │ │ │ ├── fancy.h │ │ │ └── show.h │ │ ├── buffers │ │ │ ├── go │ │ │ │ ├── in │ │ │ │ │ └── bss.h │ │ │ │ └── on │ │ │ │ │ └── stack.h │ │ │ └── use │ │ │ │ └── malloc.h │ │ ├── bzip2 │ │ │ └── decompress.h │ │ ├── call │ │ │ └── telinit.h │ │ ├── catn.h │ │ ├── catv.h │ │ ├── chat │ │ │ ├── clr │ │ │ │ └── abort.h │ │ │ ├── implicit │ │ │ │ └── cr.h │ │ │ ├── nofail.h │ │ │ ├── send │ │ │ │ └── escapes.h │ │ │ ├── swallow │ │ │ │ └── opts.h │ │ │ ├── tty │ │ │ │ └── hifi.h │ │ │ └── var │ │ │ │ └── abort │ │ │ │ └── len.h │ │ ├── check │ │ │ ├── names.h │ │ │ ├── tainted │ │ │ │ └── module.h │ │ │ └── unicode │ │ │ │ └── in │ │ │ │ └── env.h │ │ ├── chown │ │ │ └── long │ │ │ │ └── options.h │ │ ├── clean │ │ │ └── up.h │ │ ├── cmdline │ │ │ └── module │ │ │ │ └── options.h │ │ ├── compress │ │ │ ├── bbconfig.h │ │ │ └── usage.h │ │ ├── copybuf │ │ │ └── kb.h │ │ ├── cp │ │ │ └── long │ │ │ │ └── options.h │ │ ├── cpio │ │ │ ├── o.h │ │ │ └── p.h │ │ ├── crond │ │ │ ├── call │ │ │ │ └── sendmail.h │ │ │ ├── d.h │ │ │ ├── dir.h │ │ │ └── special │ │ │ │ └── times.h │ │ ├── date │ │ │ ├── compat.h │ │ │ ├── isofmt.h │ │ │ ├── nano.h │ │ │ └── set.h │ │ ├── dc │ │ │ └── libm.h │ │ ├── dd │ │ │ ├── ibs │ │ │ │ └── obs.h │ │ │ ├── signal │ │ │ │ └── handling.h │ │ │ ├── status.h │ │ │ └── third │ │ │ │ └── status │ │ │ │ └── line.h │ │ ├── default │ │ │ └── passwd │ │ │ │ └── algo.h │ │ ├── del │ │ │ └── user │ │ │ │ └── from │ │ │ │ └── group.h │ │ ├── devfs.h │ │ ├── devpts.h │ │ ├── df │ │ │ └── fancy.h │ │ ├── diff │ │ │ ├── dir.h │ │ │ └── long │ │ │ │ └── options.h │ │ ├── dmesg │ │ │ └── pretty.h │ │ ├── du │ │ │ └── default │ │ │ │ └── blocksize │ │ │ │ └── 1k.h │ │ ├── editing.h │ │ ├── editing │ │ │ ├── ask │ │ │ │ └── terminal.h │ │ │ ├── fancy │ │ │ │ └── prompt.h │ │ │ ├── history.h │ │ │ ├── max │ │ │ │ └── len.h │ │ │ ├── save │ │ │ │ └── on │ │ │ │ │ └── exit.h │ │ │ ├── savehistory.h │ │ │ ├── vi.h │ │ │ └── winch.h │ │ ├── eject │ │ │ └── scsi.h │ │ ├── etc │ │ │ ├── networks.h │ │ │ └── services.h │ │ ├── fancy │ │ │ ├── echo.h │ │ │ ├── head.h │ │ │ ├── ping.h │ │ │ ├── sleep.h │ │ │ └── tail.h │ │ ├── fast │ │ │ └── top.h │ │ ├── fbset │ │ │ ├── fancy.h │ │ │ └── readmode.h │ │ ├── fdisk │ │ │ ├── advanced.h │ │ │ └── writable.h │ │ ├── find │ │ │ ├── context.h │ │ │ ├── delete.h │ │ │ ├── depth.h │ │ │ ├── exec.h │ │ │ ├── exec │ │ │ │ └── plus.h │ │ │ ├── group.h │ │ │ ├── inum.h │ │ │ ├── links.h │ │ │ ├── maxdepth.h │ │ │ ├── mmin.h │ │ │ ├── mtime.h │ │ │ ├── newer.h │ │ │ ├── not.h │ │ │ ├── paren.h │ │ │ ├── path.h │ │ │ ├── perm.h │ │ │ ├── print0.h │ │ │ ├── prune.h │ │ │ ├── regex.h │ │ │ ├── size.h │ │ │ ├── type.h │ │ │ ├── user.h │ │ │ └── xdev.h │ │ ├── float │ │ │ └── sleep.h │ │ ├── ftpd │ │ │ ├── accept │ │ │ │ └── broken │ │ │ │ │ └── list.h │ │ │ ├── authentication.h │ │ │ └── write.h │ │ ├── ftpgetput │ │ │ └── long │ │ │ │ └── options.h │ │ ├── getopt │ │ │ └── long.h │ │ ├── gpt │ │ │ └── label.h │ │ ├── grep │ │ │ └── context.h │ │ ├── gunzip │ │ │ └── long │ │ │ │ └── options.h │ │ ├── gzip │ │ │ ├── decompress.h │ │ │ ├── levels.h │ │ │ └── long │ │ │ │ └── options.h │ │ ├── hdparm │ │ │ ├── get │ │ │ │ └── identity.h │ │ │ └── hdio │ │ │ │ ├── drive │ │ │ │ └── reset.h │ │ │ │ ├── getset │ │ │ │ └── dma.h │ │ │ │ ├── scan │ │ │ │ └── hwif.h │ │ │ │ ├── tristate │ │ │ │ └── hwif.h │ │ │ │ └── unregister │ │ │ │ └── hwif.h │ │ ├── hexdump │ │ │ └── reverse.h │ │ ├── httpd │ │ │ ├── auth │ │ │ │ └── md5.h │ │ │ ├── basic │ │ │ │ └── auth.h │ │ │ ├── cgi.h │ │ │ ├── config │ │ │ │ └── with │ │ │ │ │ └── script │ │ │ │ │ └── interpr.h │ │ │ ├── encode │ │ │ │ └── url │ │ │ │ │ └── str.h │ │ │ ├── error │ │ │ │ └── pages.h │ │ │ ├── gzip.h │ │ │ ├── proxy.h │ │ │ ├── ranges.h │ │ │ ├── set │ │ │ │ └── remote │ │ │ │ │ └── port │ │ │ │ │ └── to │ │ │ │ │ └── env.h │ │ │ └── setuid.h │ │ ├── human │ │ │ └── readable.h │ │ ├── hwclock │ │ │ └── adjtime │ │ │ │ └── fhs.h │ │ ├── hwib.h │ │ ├── ifconfig │ │ │ ├── broadcast │ │ │ │ └── plus.h │ │ │ ├── hw.h │ │ │ ├── memstart │ │ │ │ └── ioaddr │ │ │ │ │ └── irq.h │ │ │ ├── slip.h │ │ │ └── status.h │ │ ├── ifupdown │ │ │ ├── external │ │ │ │ └── dhcp.h │ │ │ ├── ip.h │ │ │ ├── ipv4.h │ │ │ ├── ipv6.h │ │ │ └── mapping.h │ │ ├── individual.h │ │ ├── inetd │ │ │ ├── rpc.h │ │ │ └── support │ │ │ │ └── builtin │ │ │ │ ├── chargen.h │ │ │ │ ├── daytime.h │ │ │ │ ├── discard.h │ │ │ │ ├── echo.h │ │ │ │ └── time.h │ │ ├── init │ │ │ ├── coredumps.h │ │ │ ├── modify │ │ │ │ └── cmdline.h │ │ │ ├── quiet.h │ │ │ ├── sctty.h │ │ │ └── syslog.h │ │ ├── insmod │ │ │ ├── ksymoops │ │ │ │ └── symbols.h │ │ │ ├── load │ │ │ │ ├── map.h │ │ │ │ └── map │ │ │ │ │ └── full.h │ │ │ ├── loadinkmem.h │ │ │ ├── try │ │ │ │ └── mmap.h │ │ │ └── version │ │ │ │ └── checking.h │ │ ├── install │ │ │ └── long │ │ │ │ └── options.h │ │ ├── installer.h │ │ ├── ip │ │ │ ├── address.h │ │ │ ├── link.h │ │ │ ├── neigh.h │ │ │ ├── rare │ │ │ │ └── protocols.h │ │ │ ├── route.h │ │ │ ├── route │ │ │ │ └── dir.h │ │ │ ├── rule.h │ │ │ └── tunnel.h │ │ ├── ipc │ │ │ ├── syslog.h │ │ │ └── syslog │ │ │ │ └── buffer │ │ │ │ └── size.h │ │ ├── ipcalc │ │ │ ├── fancy.h │ │ │ └── long │ │ │ │ └── options.h │ │ ├── ipv6.h │ │ ├── kill │ │ │ ├── delay.h │ │ │ └── removed.h │ │ ├── klogd │ │ │ └── klogctl.h │ │ ├── kmsg │ │ │ └── syslog.h │ │ ├── last │ │ │ └── fancy.h │ │ ├── less │ │ │ ├── ask │ │ │ │ └── terminal.h │ │ │ ├── brackets.h │ │ │ ├── dashcmd.h │ │ │ ├── env.h │ │ │ ├── flags.h │ │ │ ├── linenums.h │ │ │ ├── marks.h │ │ │ ├── maxlines.h │ │ │ ├── raw.h │ │ │ ├── regexp.h │ │ │ ├── truncate.h │ │ │ └── winch.h │ │ ├── libbusybox │ │ │ └── static.h │ │ ├── loadfont │ │ │ ├── psf2.h │ │ │ └── raw.h │ │ ├── logread │ │ │ └── reduced │ │ │ │ └── locking.h │ │ ├── ls │ │ │ ├── color.h │ │ │ ├── color │ │ │ │ └── is │ │ │ │ │ └── default.h │ │ │ ├── filetypes.h │ │ │ ├── followlinks.h │ │ │ ├── recursive.h │ │ │ ├── sortfiles.h │ │ │ ├── timestamps.h │ │ │ ├── username.h │ │ │ └── width.h │ │ ├── lsmod │ │ │ └── pretty │ │ │ │ └── 2 │ │ │ │ └── 6 │ │ │ │ └── output.h │ │ ├── lzma │ │ │ └── fast.h │ │ ├── makedevs │ │ │ ├── leaf.h │ │ │ └── table.h │ │ ├── md5 │ │ │ └── sha1 │ │ │ │ └── sum │ │ │ │ └── check.h │ │ ├── mdev │ │ │ ├── conf.h │ │ │ ├── exec.h │ │ │ ├── load │ │ │ │ └── firmware.h │ │ │ ├── rename.h │ │ │ └── rename │ │ │ │ └── regexp.h │ │ ├── mesg │ │ │ └── enable │ │ │ │ └── only │ │ │ │ └── group.h │ │ ├── mime │ │ │ └── charset.h │ │ ├── minix2.h │ │ ├── mkswap │ │ │ └── uuid.h │ │ ├── modprobe │ │ │ ├── blacklist.h │ │ │ └── small │ │ │ │ └── check │ │ │ │ └── already │ │ │ │ └── loaded.h │ │ ├── modutils │ │ │ ├── alias.h │ │ │ └── symbols.h │ │ ├── mount │ │ │ ├── cifs.h │ │ │ ├── fake.h │ │ │ ├── flags.h │ │ │ ├── fstab.h │ │ │ ├── helpers.h │ │ │ ├── label.h │ │ │ ├── loop.h │ │ │ ├── loop │ │ │ │ └── create.h │ │ │ ├── nfs.h │ │ │ ├── othertab.h │ │ │ └── verbose.h │ │ ├── mtab │ │ │ └── support.h │ │ ├── nameif │ │ │ └── extended.h │ │ ├── netstat │ │ │ ├── prg.h │ │ │ └── wide.h │ │ ├── nologin.h │ │ ├── non │ │ │ └── posix │ │ │ │ └── cp.h │ │ ├── nslookup │ │ │ ├── big.h │ │ │ └── long │ │ │ │ └── options.h │ │ ├── ntpd │ │ │ ├── conf.h │ │ │ └── server.h │ │ ├── osf │ │ │ └── label.h │ │ ├── passwd │ │ │ └── weak │ │ │ │ └── check.h │ │ ├── pidfile.h │ │ ├── pidof │ │ │ ├── omit.h │ │ │ └── single.h │ │ ├── popmaildir │ │ │ └── delivery.h │ │ ├── powertop │ │ │ └── interactive.h │ │ ├── prefer │ │ │ ├── applets.h │ │ │ └── ipv4 │ │ │ │ └── address.h │ │ ├── preserve │ │ │ └── hardlinks.h │ │ ├── ps │ │ │ ├── additional │ │ │ │ └── columns.h │ │ │ ├── long.h │ │ │ ├── time.h │ │ │ ├── unusual │ │ │ │ └── systems.h │ │ │ └── wide.h │ │ ├── readlink │ │ │ └── follow.h │ │ ├── reformime │ │ │ └── compat.h │ │ ├── remote │ │ │ └── log.h │ │ ├── resize │ │ │ └── print.h │ │ ├── reverse │ │ │ └── search.h │ │ ├── rotate │ │ │ └── logfile.h │ │ ├── rtminmax.h │ │ ├── run │ │ │ └── parts │ │ │ │ ├── fancy.h │ │ │ │ └── long │ │ │ │ └── options.h │ │ ├── runsvdir │ │ │ └── log.h │ │ ├── seamless │ │ │ ├── bz2.h │ │ │ ├── gz.h │ │ │ ├── lzma.h │ │ │ ├── xz.h │ │ │ └── z.h │ │ ├── securetty.h │ │ ├── setconsole │ │ │ └── long │ │ │ │ └── options.h │ │ ├── setfiles │ │ │ └── check │ │ │ │ └── option.h │ │ ├── setfont │ │ │ └── textual │ │ │ │ └── map.h │ │ ├── setpriv │ │ │ ├── capabilities.h │ │ │ ├── capability │ │ │ │ └── names.h │ │ │ └── dump.h │ │ ├── sgi │ │ │ └── label.h │ │ ├── sh │ │ │ ├── extra │ │ │ │ └── quiet.h │ │ │ ├── histfilesize.h │ │ │ ├── math.h │ │ │ ├── math │ │ │ │ └── 64.h │ │ │ ├── nofork.h │ │ │ ├── read │ │ │ │ └── frac.h │ │ │ └── standalone.h │ │ ├── shadowpasswds.h │ │ ├── shared │ │ │ └── busybox.h │ │ ├── show │ │ │ └── threads.h │ │ ├── skip │ │ │ └── rootfs.h │ │ ├── sort │ │ │ ├── big.h │ │ │ └── optimize │ │ │ │ └── memory.h │ │ ├── split │ │ │ └── fancy.h │ │ ├── start │ │ │ └── stop │ │ │ │ └── daemon │ │ │ │ ├── fancy.h │ │ │ │ └── long │ │ │ │ └── options.h │ │ ├── stat │ │ │ ├── filesystem.h │ │ │ └── format.h │ │ ├── su │ │ │ ├── blank │ │ │ │ └── pw │ │ │ │ │ └── needs │ │ │ │ │ └── secure │ │ │ │ │ └── tty.h │ │ │ ├── checks │ │ │ │ └── shells.h │ │ │ └── syslog.h │ │ ├── suid.h │ │ ├── suid │ │ │ ├── config.h │ │ │ └── config │ │ │ │ └── quiet.h │ │ ├── sun │ │ │ └── label.h │ │ ├── swapon │ │ │ ├── discard.h │ │ │ └── pri.h │ │ ├── swaponoff │ │ │ └── label.h │ │ ├── sync │ │ │ └── fancy.h │ │ ├── syslog.h │ │ ├── syslogd │ │ │ ├── cfg.h │ │ │ ├── dup.h │ │ │ └── read │ │ │ │ └── buffer │ │ │ │ └── size.h │ │ ├── tab │ │ │ └── completion.h │ │ ├── tar │ │ │ ├── autodetect.h │ │ │ ├── create.h │ │ │ ├── from.h │ │ │ ├── gnu │ │ │ │ └── extensions.h │ │ │ ├── long │ │ │ │ └── options.h │ │ │ ├── nopreserve │ │ │ │ └── time.h │ │ │ ├── oldgnu │ │ │ │ └── compatibility.h │ │ │ ├── oldsun │ │ │ │ └── compatibility.h │ │ │ ├── selinux.h │ │ │ ├── to │ │ │ │ └── command.h │ │ │ └── uname │ │ │ │ └── gname.h │ │ ├── taskset │ │ │ └── fancy.h │ │ ├── tc │ │ │ └── ingress.h │ │ ├── tee │ │ │ └── use │ │ │ │ └── block │ │ │ │ └── io.h │ │ ├── telnet │ │ │ ├── autologin.h │ │ │ ├── ttype.h │ │ │ └── width.h │ │ ├── telnetd │ │ │ ├── inetd │ │ │ │ └── wait.h │ │ │ └── standalone.h │ │ ├── test │ │ │ └── 64.h │ │ ├── tftp │ │ │ ├── blocksize.h │ │ │ ├── get.h │ │ │ ├── progress │ │ │ │ └── bar.h │ │ │ └── put.h │ │ ├── top │ │ │ ├── cpu │ │ │ │ ├── global │ │ │ │ │ └── percents.h │ │ │ │ └── usage │ │ │ │ │ └── percentage.h │ │ │ ├── decimals.h │ │ │ ├── interactive.h │ │ │ └── smp │ │ │ │ ├── cpu.h │ │ │ │ └── process.h │ │ ├── topmem.h │ │ ├── touch │ │ │ ├── noderef.h │ │ │ └── susv3.h │ │ ├── tr │ │ │ ├── classes.h │ │ │ └── equiv.h │ │ ├── traceroute │ │ │ ├── use │ │ │ │ └── icmp.h │ │ │ └── verbose.h │ │ ├── tunctl │ │ │ └── ug.h │ │ ├── udhcp │ │ │ ├── 8021q.h │ │ │ ├── port.h │ │ │ └── rfc3397.h │ │ ├── udhcpc │ │ │ ├── arping.h │ │ │ └── sanitizeopt.h │ │ ├── udhcpc6 │ │ │ ├── rfc3646.h │ │ │ ├── rfc4704.h │ │ │ ├── rfc4833.h │ │ │ └── rfc5970.h │ │ ├── udhcpd │ │ │ ├── base │ │ │ │ └── ip │ │ │ │ │ └── on │ │ │ │ │ └── mac.h │ │ │ └── write │ │ │ │ └── leases │ │ │ │ └── early.h │ │ ├── umount │ │ │ └── all.h │ │ ├── unix │ │ │ └── local.h │ │ ├── unzip │ │ │ ├── bzip2.h │ │ │ ├── cdf.h │ │ │ ├── lzma.h │ │ │ └── xz.h │ │ ├── uptime │ │ │ └── utmp │ │ │ │ └── support.h │ │ ├── use │ │ │ ├── bss │ │ │ │ └── tail.h │ │ │ ├── inittab.h │ │ │ └── sendfile.h │ │ ├── username │ │ │ └── completion.h │ │ ├── utmp.h │ │ ├── verbose.h │ │ ├── verbose │ │ │ ├── cp │ │ │ │ └── message.h │ │ │ └── usage.h │ │ ├── vi │ │ │ ├── 8bit.h │ │ │ ├── ask │ │ │ │ └── terminal.h │ │ │ ├── colon.h │ │ │ ├── dot │ │ │ │ └── cmd.h │ │ │ ├── max │ │ │ │ └── len.h │ │ │ ├── readonly.h │ │ │ ├── regex │ │ │ │ └── search.h │ │ │ ├── search.h │ │ │ ├── set.h │ │ │ ├── setopts.h │ │ │ ├── undo.h │ │ │ ├── undo │ │ │ │ ├── queue.h │ │ │ │ └── queue │ │ │ │ │ └── max.h │ │ │ ├── use │ │ │ │ └── signals.h │ │ │ ├── win │ │ │ │ └── resize.h │ │ │ └── yankmark.h │ │ ├── volumeid │ │ │ ├── bcache.h │ │ │ ├── btrfs.h │ │ │ ├── cramfs.h │ │ │ ├── exfat.h │ │ │ ├── ext.h │ │ │ ├── f2fs.h │ │ │ ├── fat.h │ │ │ ├── hfs.h │ │ │ ├── iso9660.h │ │ │ ├── jfs.h │ │ │ ├── lfs.h │ │ │ ├── linuxraid.h │ │ │ ├── linuxswap.h │ │ │ ├── luks.h │ │ │ ├── minix.h │ │ │ ├── nilfs.h │ │ │ ├── ntfs.h │ │ │ ├── ocfs2.h │ │ │ ├── reiserfs.h │ │ │ ├── romfs.h │ │ │ ├── squashfs.h │ │ │ ├── sysv.h │ │ │ ├── ubifs.h │ │ │ ├── udf.h │ │ │ └── xfs.h │ │ ├── wait │ │ │ └── for │ │ │ │ └── init.h │ │ ├── wc │ │ │ └── large.h │ │ ├── wget │ │ │ ├── authentication.h │ │ │ ├── https.h │ │ │ ├── long │ │ │ │ └── options.h │ │ │ ├── openssl.h │ │ │ ├── statusbar.h │ │ │ └── timeout.h │ │ ├── wtmp.h │ │ └── xargs │ │ │ └── support │ │ │ ├── args │ │ │ └── file.h │ │ │ ├── confirmation.h │ │ │ ├── parallel.h │ │ │ ├── quotes.h │ │ │ ├── repl │ │ │ └── str.h │ │ │ ├── termopt.h │ │ │ └── zero │ │ │ └── term.h │ ├── fedora │ │ └── compat.h │ ├── fgconsole.h │ ├── fgrep.h │ ├── find.h │ ├── findfs.h │ ├── first │ │ └── system │ │ │ └── id.h │ ├── flash │ │ ├── eraseall.h │ │ ├── lock.h │ │ └── unlock.h │ ├── flashcp.h │ ├── flock.h │ ├── fold.h │ ├── free.h │ ├── freeramdisk.h │ ├── fsck.h │ ├── fsck │ │ └── minix.h │ ├── fsfreeze.h │ ├── fstrim.h │ ├── fsync.h │ ├── ftpd.h │ ├── ftpget.h │ ├── ftpput.h │ ├── fuser.h │ ├── getenforce.h │ ├── getopt.h │ ├── getsebool.h │ ├── getty.h │ ├── grep.h │ ├── groups.h │ ├── gunzip.h │ ├── gzip.h │ ├── gzip │ │ └── fast.h │ ├── halt.h │ ├── have │ │ └── dot │ │ │ └── config.h │ ├── hd.h │ ├── hdparm.h │ ├── head.h │ ├── hexdump.h │ ├── hexedit.h │ ├── hostid.h │ ├── hostname.h │ ├── httpd.h │ ├── hush.h │ ├── hush │ │ ├── bash │ │ │ ├── compat.h │ │ │ └── source │ │ │ │ └── curdir.h │ │ ├── brace │ │ │ └── expansion.h │ │ ├── case.h │ │ ├── command.h │ │ ├── echo.h │ │ ├── export.h │ │ ├── export │ │ │ └── n.h │ │ ├── functions.h │ │ ├── getopts.h │ │ ├── help.h │ │ ├── if.h │ │ ├── interactive.h │ │ ├── job.h │ │ ├── kill.h │ │ ├── lineno │ │ │ └── var.h │ │ ├── local.h │ │ ├── loops.h │ │ ├── memleak.h │ │ ├── mode │ │ │ └── x.h │ │ ├── printf.h │ │ ├── random │ │ │ └── support.h │ │ ├── read.h │ │ ├── readonly.h │ │ ├── savehistory.h │ │ ├── set.h │ │ ├── test.h │ │ ├── tick.h │ │ ├── times.h │ │ ├── trap.h │ │ ├── type.h │ │ ├── ulimit.h │ │ ├── umask.h │ │ ├── unset.h │ │ └── wait.h │ ├── hwclock.h │ ├── i2cdetect.h │ ├── i2cdump.h │ ├── i2cget.h │ ├── i2cset.h │ ├── id.h │ ├── ifconfig.h │ ├── ifdown.h │ ├── ifenslave.h │ ├── ifplugd.h │ ├── ifup.h │ ├── ifupdown │ │ ├── ifstate │ │ │ └── path.h │ │ └── udhcpc │ │ │ └── cmd │ │ │ └── options.h │ ├── include │ │ └── susv2.h │ ├── inetd.h │ ├── init.h │ ├── init │ │ └── terminal │ │ │ └── type.h │ ├── inotifyd.h │ ├── insmod.h │ ├── install.h │ ├── install │ │ ├── applet │ │ │ ├── dont.h │ │ │ ├── hardlinks.h │ │ │ ├── script │ │ │ │ └── wrappers.h │ │ │ └── symlinks.h │ │ ├── no │ │ │ └── usr.h │ │ └── sh │ │ │ └── applet │ │ │ ├── hardlink.h │ │ │ ├── script │ │ │ └── wrapper.h │ │ │ └── symlink.h │ ├── ioctl │ │ └── hex2str │ │ │ └── error.h │ ├── ionice.h │ ├── iostat.h │ ├── ip.h │ ├── ipaddr.h │ ├── ipcalc.h │ ├── ipcrm.h │ ├── ipcs.h │ ├── iplink.h │ ├── ipneigh.h │ ├── iproute.h │ ├── iprule.h │ ├── iptunnel.h │ ├── kbd │ │ └── mode.h │ ├── kill.h │ ├── killall.h │ ├── killall5.h │ ├── klogd.h │ ├── last.h │ ├── last │ │ ├── id.h │ │ ├── supported │ │ │ └── wchar.h │ │ └── system │ │ │ └── id.h │ ├── less.h │ ├── lfs.h │ ├── link.h │ ├── linux32.h │ ├── linux64.h │ ├── linuxrc.h │ ├── ln.h │ ├── load │ │ └── policy.h │ ├── loadfont.h │ ├── loadkmap.h │ ├── locale │ │ └── support.h │ ├── logger.h │ ├── login.h │ ├── login │ │ ├── scripts.h │ │ └── session │ │ │ └── as │ │ │ └── child.h │ ├── logname.h │ ├── logread.h │ ├── long │ │ └── opts.h │ ├── losetup.h │ ├── lpd.h │ ├── lpq.h │ ├── lpr.h │ ├── ls.h │ ├── lsattr.h │ ├── lsmod.h │ ├── lsof.h │ ├── lspci.h │ ├── lsscsi.h │ ├── lsusb.h │ ├── lzcat.h │ ├── lzma.h │ ├── lzop.h │ ├── lzop │ │ └── compr │ │ │ └── high.h │ ├── lzopcat.h │ ├── makedevs.h │ ├── makemime.h │ ├── man.h │ ├── matchpathcon.h │ ├── md5 │ │ └── small.h │ ├── md5sum.h │ ├── mdev.h │ ├── mesg.h │ ├── microcom.h │ ├── minips.h │ ├── mkdir.h │ ├── mkdosfs.h │ ├── mke2fs.h │ ├── mkfifo.h │ ├── mkfs │ │ ├── ext2.h │ │ ├── minix.h │ │ ├── reiser.h │ │ └── vfat.h │ ├── mknod.h │ ├── mkpasswd.h │ ├── mkswap.h │ ├── mktemp.h │ ├── modinfo.h │ ├── modprobe.h │ ├── modprobe │ │ └── small.h │ ├── monotonic │ │ └── syscall.h │ ├── more.h │ ├── mount.h │ ├── mountpoint.h │ ├── mpstat.h │ ├── mt.h │ ├── mv.h │ ├── nameif.h │ ├── nanddump.h │ ├── nandwrite.h │ ├── nbdclient.h │ ├── nc.h │ ├── nc │ │ ├── 110 │ │ │ └── compat.h │ │ ├── extra.h │ │ └── server.h │ ├── netcat.h │ ├── netstat.h │ ├── nice.h │ ├── nl.h │ ├── nmeter.h │ ├── no │ │ └── debug │ │ │ └── lib.h │ ├── nohup.h │ ├── nommu.h │ ├── nproc.h │ ├── nsenter.h │ ├── nslookup.h │ ├── ntpd.h │ ├── nuke.h │ ├── od.h │ ├── openvt.h │ ├── pam.h │ ├── partprobe.h │ ├── passwd.h │ ├── password │ │ └── minlen.h │ ├── paste.h │ ├── patch.h │ ├── pgrep.h │ ├── pid │ │ └── file │ │ │ └── path.h │ ├── pidof.h │ ├── pie.h │ ├── ping.h │ ├── ping6.h │ ├── pipe │ │ └── progress.h │ ├── pivot │ │ └── root.h │ ├── pkill.h │ ├── platform │ │ └── linux.h │ ├── pmap.h │ ├── popmaildir.h │ ├── poweroff.h │ ├── powertop.h │ ├── prefix.h │ ├── printenv.h │ ├── printf.h │ ├── ps.h │ ├── pscan.h │ ├── pstree.h │ ├── pwd.h │ ├── pwdx.h │ ├── raidautorun.h │ ├── rdate.h │ ├── rdev.h │ ├── readahead.h │ ├── readlink.h │ ├── readprofile.h │ ├── realpath.h │ ├── reboot.h │ ├── reformime.h │ ├── remove │ │ └── shell.h │ ├── renice.h │ ├── reset.h │ ├── resize.h │ ├── restorecon.h │ ├── resume.h │ ├── rev.h │ ├── rfkill.h │ ├── rm.h │ ├── rmdir.h │ ├── rmmod.h │ ├── route.h │ ├── rpm.h │ ├── rpm2cpio.h │ ├── rtcwake.h │ ├── run │ │ ├── init.h │ │ └── parts.h │ ├── runcon.h │ ├── runlevel.h │ ├── runsv.h │ ├── runsvdir.h │ ├── rx.h │ ├── script.h │ ├── scriptreplay.h │ ├── sed.h │ ├── selinux.h │ ├── selinuxenabled.h │ ├── sendmail.h │ ├── seq.h │ ├── sestatus.h │ ├── setarch.h │ ├── setconsole.h │ ├── setenforce.h │ ├── setfattr.h │ ├── setfiles.h │ ├── setfont.h │ ├── setkeycodes.h │ ├── setlogcons.h │ ├── setpriv.h │ ├── setsebool.h │ ├── setserial.h │ ├── setsid.h │ ├── setuidgid.h │ ├── sh │ │ └── is │ │ │ ├── ash.h │ │ │ ├── hush.h │ │ │ └── none.h │ ├── sha1sum.h │ ├── sha256sum.h │ ├── sha3 │ │ └── small.h │ ├── sha3sum.h │ ├── sha512sum.h │ ├── show │ │ └── usage.h │ ├── showkey.h │ ├── shred.h │ ├── shuf.h │ ├── slattach.h │ ├── sleep.h │ ├── smemcap.h │ ├── softlimit.h │ ├── sort.h │ ├── split.h │ ├── ssl │ │ └── client.h │ ├── stack │ │ └── optimization │ │ │ └── 386.h │ ├── start │ │ └── stop │ │ │ └── daemon.h │ ├── stat.h │ ├── static.h │ ├── strings.h │ ├── stty.h │ ├── su.h │ ├── subst │ │ └── wchar.h │ ├── sulogin.h │ ├── sum.h │ ├── sv.h │ ├── sv │ │ └── default │ │ │ └── service │ │ │ └── dir.h │ ├── svc.h │ ├── svlogd.h │ ├── svok.h │ ├── swapoff.h │ ├── swapon.h │ ├── switch │ │ └── root.h │ ├── sync.h │ ├── syslogd.h │ ├── sysroot.h │ ├── tac.h │ ├── tail.h │ ├── tar.h │ ├── taskset.h │ ├── tc.h │ ├── tcpsvd.h │ ├── tee.h │ ├── telinit │ │ └── path.h │ ├── telnet.h │ ├── telnetd.h │ ├── test.h │ ├── test1.h │ ├── test2.h │ ├── tftp.h │ ├── tftp │ │ └── debug.h │ ├── tftpd.h │ ├── time.h │ ├── timeout.h │ ├── tls.h │ ├── top.h │ ├── touch.h │ ├── tr.h │ ├── traceroute.h │ ├── traceroute6.h │ ├── true.h │ ├── truncate.h │ ├── tty.h │ ├── ttysize.h │ ├── tunctl.h │ ├── tune2fs.h │ ├── ubiattach.h │ ├── ubidetach.h │ ├── ubimkvol.h │ ├── ubirename.h │ ├── ubirmvol.h │ ├── ubirsvol.h │ ├── ubiupdatevol.h │ ├── udhcp │ │ └── debug.h │ ├── udhcpc.h │ ├── udhcpc │ │ ├── default │ │ │ └── script.h │ │ └── slack │ │ │ └── for │ │ │ └── buggy │ │ │ └── servers.h │ ├── udhcpc6.h │ ├── udhcpd.h │ ├── udpsvd.h │ ├── uevent.h │ ├── umount.h │ ├── uname.h │ ├── uname │ │ └── osname.h │ ├── uncompress.h │ ├── unexpand.h │ ├── unicode │ │ ├── bidi │ │ │ └── support.h │ │ ├── combining │ │ │ └── wchars.h │ │ ├── neutral │ │ │ └── table.h │ │ ├── preserve │ │ │ └── broken.h │ │ ├── support.h │ │ ├── using │ │ │ └── locale.h │ │ └── wide │ │ │ └── wchars.h │ ├── uniq.h │ ├── unit │ │ └── test.h │ ├── unix2dos.h │ ├── unlink.h │ ├── unlzma.h │ ├── unlzop.h │ ├── unshare.h │ ├── unxz.h │ ├── unzip.h │ ├── uptime.h │ ├── use │ │ ├── bb │ │ │ ├── crypt.h │ │ │ ├── crypt │ │ │ │ └── sha.h │ │ │ ├── pwd │ │ │ │ └── grp.h │ │ │ └── shadow.h │ │ └── portable │ │ │ └── code.h │ ├── users.h │ ├── usleep.h │ ├── uudecode.h │ ├── uuencode.h │ ├── vconfig.h │ ├── verbose │ │ └── resolution │ │ │ └── errors.h │ ├── vi.h │ ├── vlock.h │ ├── volname.h │ ├── volumeid.h │ ├── w.h │ ├── wall.h │ ├── watch.h │ ├── watchdog.h │ ├── wc.h │ ├── werror.h │ ├── wget.h │ ├── which.h │ ├── who.h │ ├── whoami.h │ ├── whois.h │ ├── xargs.h │ ├── xxd.h │ ├── xz.h │ ├── xzcat.h │ ├── yes.h │ ├── zcat.h │ └── zcip.h ├── dump.h ├── fix_u32.h ├── grp_.h ├── inet_common.h ├── libbb.h ├── liblzo_interface.h ├── platform.h ├── pwd_.h ├── rtc_.h ├── shadow_.h ├── unicode.h ├── usage.h ├── usage.src.h ├── usage_compressed.h ├── volume_id.h ├── xatonum.h └── xregex.h ├── init ├── Config.in ├── Config.src ├── Kbuild ├── Kbuild.src ├── bootchartd.c ├── halt.c ├── init.c └── reboot.h ├── klibc-utils ├── Config.in ├── Config.src ├── Kbuild ├── Kbuild.src ├── ipconfig.c.txt ├── minips.c ├── nuke.c ├── resume.c └── run-init.c ├── libbb ├── Config.in ├── Config.src ├── Kbuild ├── Kbuild.src ├── README ├── appletlib.c ├── ask_confirmation.c ├── auto_string.c ├── bb_askpass.c ├── bb_bswap_64.c ├── bb_cat.c ├── bb_do_delay.c ├── bb_getgroups.c ├── bb_getsockname.c ├── bb_pwd.c ├── bb_qsort.c ├── bb_strtod.c ├── bb_strtonum.c ├── bbunit.c ├── capability.c ├── change_identity.c ├── chomp.c ├── common_bufsiz.c ├── compare_string_array.c ├── concat_path_file.c ├── concat_subpath_file.c ├── copy_file.c ├── copyfd.c ├── correct_password.c ├── crc32.c ├── default_error_retval.c ├── device_open.c ├── die_if_bad_username.c ├── dump.c ├── endofname.c ├── executable.c ├── fclose_nonstdin.c ├── fflush_stdout_and_exit.c ├── fgets_str.c ├── find_mount_point.c ├── find_pid_by_name.c ├── find_root_device.c ├── full_write.c ├── get_console.c ├── get_cpu_count.c ├── get_last_path_component.c ├── get_line_from_file.c ├── get_shell_name.c ├── get_volsize.c ├── getopt32.c ├── getopt_allopts.c ├── getpty.c ├── hash_md5_sha.c ├── hash_md5prime.c ├── herror_msg.c ├── human_readable.c ├── in_ether.c ├── inet_cksum.c ├── inet_common.c ├── inode_hash.c ├── isdirectory.c ├── isqrt.c ├── kernel_version.c ├── last_char_is.c ├── lineedit.c ├── lineedit_ptr_hack.c ├── llist.c ├── logenv.c ├── login.c ├── loop.c ├── make_directory.c ├── makedev.c ├── match_fstype.c ├── messages.c ├── missing_syscalls.c ├── mntent_r.c ├── mode_string.c ├── mtab.c ├── nuke_str.c ├── obscure.c ├── parse_config.c ├── parse_mode.c ├── percent_decode.c ├── perror_msg.c ├── perror_nomsg.c ├── perror_nomsg_and_die.c ├── pidfile.c ├── platform.c ├── print_flags.c ├── print_numbered_lines.c ├── printable.c ├── printable_string.c ├── process_escape_sequence.c ├── procps.c ├── progress.c ├── ptr_to_globals.c ├── pw_encrypt.c ├── pw_encrypt_des.c ├── pw_encrypt_md5.c ├── pw_encrypt_sha.c ├── read.c ├── read_key.c ├── read_printf.c ├── recursive_action.c ├── remove_file.c ├── replace.c ├── rtc.c ├── run_shell.c ├── safe_gethostname.c ├── safe_poll.c ├── safe_strncpy.c ├── safe_write.c ├── securetty.c ├── selinux_common.c ├── setup_environment.c ├── signals.c ├── simplify_path.c ├── single_argv.c ├── skip_whitespace.c ├── speed_table.c ├── str_tolower.c ├── strrstr.c ├── sysconf.c ├── time.c ├── trim.c ├── u_signal_names.c ├── ubi.c ├── udp_io.c ├── unicode.c ├── update_passwd.c ├── utmp.c ├── uuencode.c ├── verror_msg.c ├── vfork_daemon_rexec.c ├── warn_ignoring_args.c ├── wfopen.c ├── wfopen_input.c ├── write.c ├── xatonum.c ├── xatonum_template.c ├── xconnect.c ├── xfunc_die.c ├── xfuncs.c ├── xfuncs_printf.c ├── xgetcwd.c ├── xgethostbyname.c ├── xreadlink.c ├── xrealloc_vector.c └── xregcomp.c ├── libc ├── arch-arm │ └── syscalls │ │ └── getsid.S ├── arch-x86 │ └── syscalls │ │ └── getsid.S └── bionic │ └── mntent_r.c ├── libpwdgrp ├── Kbuild ├── Kbuild.src ├── pwd_grp.c └── uidgid_get.c ├── loginutils ├── Config.in ├── Config.src ├── Kbuild ├── Kbuild.src ├── README ├── add-remove-shell.c ├── addgroup.c ├── adduser.c ├── chpasswd.c ├── cryptpw.c ├── deluser.c ├── getty.c ├── login.c ├── passwd.c ├── su.c ├── sulogin.c └── vlock.c ├── mailutils ├── Config.in ├── Config.src ├── Kbuild ├── Kbuild.src ├── mail.c ├── mail.h ├── makemime.c ├── popmaildir.c ├── reformime.c └── sendmail.c ├── make_single_applets.sh ├── miscutils ├── Config.in ├── Config.src ├── Kbuild ├── Kbuild.src ├── adjtimex.c ├── bbconfig.c ├── beep.c ├── chat.c ├── conspy.c ├── crond.c ├── crontab.c ├── dc.c ├── devfsd.c ├── devmem.c ├── fbsplash.c ├── fbsplash.cfg ├── flash_eraseall.c ├── flash_lock_unlock.c ├── flashcp.c ├── hdparm.c ├── hexedit.c ├── i2c_tools.c ├── inotifyd.c ├── less.c ├── lsscsi.c ├── makedevs.c ├── man.c ├── microcom.c ├── mt.c ├── nandwrite.c ├── partprobe.c ├── raidautorun.c ├── readahead.c ├── rfkill.c ├── runlevel.c ├── rx.c ├── setfattr.c ├── setserial.c ├── strings.c ├── time.c ├── ttysize.c ├── ubi_tools.c ├── ubirename.c ├── volname.c └── watchdog.c ├── modutils ├── Config.in ├── Config.src ├── Kbuild ├── Kbuild.src ├── depmod.c ├── depmod_process.sh ├── insmod.c ├── lsmod.c ├── modinfo.c ├── modprobe-small.c ├── modprobe.c ├── modutils-24.c ├── modutils.c ├── modutils.h └── rmmod.c ├── networking ├── Config.in ├── Config.src ├── Kbuild ├── Kbuild.src ├── arp.c ├── arping.c ├── brctl.c ├── dnsd.c ├── ether-wake.c ├── ftpd.c ├── ftpgetput.c ├── hostname.c ├── httpd.c ├── httpd_helpers.sh ├── httpd_indexcgi.c ├── httpd_post_upload.cgi ├── httpd_ssi.c ├── ifconfig.c ├── ifenslave.c ├── ifplugd.c ├── ifupdown.c ├── inetd.c ├── interface.c ├── ip.c ├── ipcalc.c ├── isrv.c ├── isrv.h ├── isrv_identd.c ├── libiproute │ ├── Kbuild │ ├── Kbuild.src │ ├── ip_common.h │ ├── ip_parse_common_args.c │ ├── ipaddress.c │ ├── iplink.c │ ├── ipneigh.c │ ├── iproute.c │ ├── iprule.c │ ├── iptunnel.c │ ├── libnetlink.c │ ├── libnetlink.h │ ├── ll_addr.c │ ├── ll_map.c │ ├── ll_map.h │ ├── ll_proto.c │ ├── ll_types.c │ ├── rt_names.c │ ├── rt_names.h │ ├── rtm_map.c │ ├── rtm_map.h │ ├── utils.c │ └── utils.h ├── nameif.c ├── nbd-client.c ├── nc.c ├── nc_bloaty.c ├── netstat.c ├── nslookup.c ├── ntpd.c ├── ntpd.diff ├── parse_pasv_epsv.c ├── ping.c ├── pscan.c ├── route.c ├── slattach.c ├── ssl_client.c ├── ssl_helper-wolfssl │ ├── 00cfg-wolfssl-3.6.8 │ ├── 00cfg-wolfssl-3.9.8 │ ├── README │ ├── ssl_helper.c │ └── ssl_helper.sh ├── ssl_helper │ ├── README │ ├── ssl_helper.c │ └── ssl_helper.sh ├── tc.c ├── tcpudp.c ├── tcpudp_perhost.c ├── tcpudp_perhost.h ├── telnet.c ├── telnetd.IAC_test.sh ├── telnetd.c ├── telnetd.ctrlSQ.patch ├── tftp.c ├── tls.c ├── tls.h ├── tls_aes.c ├── tls_aes.h ├── tls_pstm.c ├── tls_pstm.h ├── tls_pstm_montgomery_reduce.c ├── tls_pstm_mul_comba.c ├── tls_pstm_sqr_comba.c ├── tls_rsa.c ├── tls_rsa.h ├── tls_symmetric.h ├── traceroute.c ├── tunctl.c ├── udhcp │ ├── Config.in │ ├── Config.src │ ├── Kbuild │ ├── Kbuild.src │ ├── arpping.c │ ├── common.c │ ├── common.h │ ├── d6_common.h │ ├── d6_dhcpc.c │ ├── d6_packet.c │ ├── d6_socket.c │ ├── dhcpc.c │ ├── dhcpc.h │ ├── dhcpd.c │ ├── dhcpd.h │ ├── dhcprelay.c │ ├── domain_codec.c │ ├── dumpleases.c │ ├── packet.c │ ├── signalpipe.c │ └── socket.c ├── vconfig.c ├── wget.c ├── whois.c └── zcip.c ├── printutils ├── Config.in ├── Config.src ├── Kbuild ├── Kbuild.src ├── lpd.c └── lpr.c ├── procps ├── Config.in ├── Config.src ├── Kbuild ├── Kbuild.src ├── free.c ├── fuser.c ├── iostat.c ├── kill.c ├── lsof.c ├── mpstat.c ├── nmeter.c ├── pgrep.c ├── pidof.c ├── pmap.c ├── powertop.c ├── ps.c ├── ps.posix ├── pstree.c ├── pwdx.c ├── smemcap.c ├── sysctl.c ├── top.c ├── uptime.c └── watch.c ├── qemu_multiarch_testing ├── README ├── extract_od_binary.sh ├── extract_uuencoded_binary.sh ├── hdc.dir │ ├── build │ └── init ├── make-hdc-img.sh └── parallel-build-hdc-img.sh ├── runit ├── Config.in ├── Config.src ├── Kbuild ├── Kbuild.src ├── chpst.c ├── runit_lib.h ├── runsv.c ├── runsvdir.c ├── sv.c └── svlogd.c ├── scripts ├── Kbuild ├── Kbuild.include ├── Kbuild.src ├── Makefile.IMA ├── Makefile.build ├── Makefile.clean ├── Makefile.host ├── Makefile.lib ├── basic │ ├── Makefile │ ├── docproc │ ├── docproc.c │ ├── fixdep │ ├── fixdep.c │ ├── split-include │ └── split-include.c ├── bb_release ├── bloat-o-meter ├── checkhelp.awk ├── checkstack.pl ├── cleanup_printf2puts ├── echo.c ├── find_bad_common_bufsiz ├── find_stray_common_vars ├── find_stray_empty_lines ├── fix_ws.sh ├── gcc-version.sh ├── gen_build_files.sh ├── generate_BUFSIZ.sh ├── kconfig │ ├── Makefile │ ├── POTFILES.in │ ├── check.sh │ ├── conf │ ├── conf.c │ ├── confdata.c │ ├── expr.c │ ├── expr.h │ ├── gconf.c │ ├── gconf.glade │ ├── images.c │ ├── kconfig_load.c │ ├── kxgettext.c │ ├── lex.zconf.c │ ├── lex.zconf.c_shipped │ ├── lkc.h │ ├── lkc_proto.h │ ├── lxdialog │ │ ├── BIG.FAT.WARNING │ │ ├── Makefile │ │ ├── check-lxdialog.sh │ │ ├── checklist.c │ │ ├── colors.h │ │ ├── dialog.h │ │ ├── inputbox.c │ │ ├── lxdialog.c │ │ ├── menubox.c │ │ ├── msgbox.c │ │ ├── textbox.c │ │ ├── util.c │ │ └── yesno.c │ ├── mconf.c │ ├── menu.c │ ├── qconf.cc │ ├── qconf.h │ ├── symbol.c │ ├── util.c │ ├── zconf.gperf │ ├── zconf.hash.c │ ├── zconf.hash.c_shipped │ ├── zconf.l │ ├── zconf.tab.c │ ├── zconf.tab.c_shipped │ └── zconf.y ├── memusage ├── mkconfigs ├── mkdiff_obj ├── mkdiff_obj_bloat ├── mkmakefile ├── objsizes ├── randomtest ├── randomtest.loop ├── sample_pmap ├── showasm ├── test_make_O ├── test_make_clean ├── test_setenv_leak.c └── trylink ├── selinux ├── Config.in ├── Config.src ├── Kbuild ├── Kbuild.src ├── chcon.c ├── getenforce.c ├── getsebool.c ├── load_policy.c ├── matchpathcon.c ├── runcon.c ├── selinuxenabled.c ├── sestatus.c ├── setenforce.c ├── setfiles.c └── setsebool.c ├── shell ├── Config.in ├── Config.src ├── Kbuild ├── Kbuild.src ├── README ├── README.job ├── ash.c ├── ash_doc.txt ├── ash_ptr_hack.c ├── ash_test │ ├── ash-alias │ │ ├── alias.right │ │ └── alias.tests │ ├── ash-arith │ │ ├── README.ash │ │ ├── arith-bash1.right │ │ ├── arith-bash1.tests │ │ ├── arith-for.right │ │ ├── arith-for.testsx │ │ ├── arith-postinc.right │ │ ├── arith-postinc.tests │ │ ├── arith.right │ │ ├── arith.tests │ │ ├── arith1.sub │ │ ├── arith2.sub │ │ ├── arith_nested1.right │ │ └── arith_nested1.tests │ ├── ash-getopts │ │ ├── getopt_nested.right │ │ ├── getopt_nested.tests │ │ ├── getopt_optarg.right │ │ ├── getopt_optarg.tests │ │ ├── getopt_positional.right │ │ ├── getopt_positional.tests │ │ ├── getopt_silent.right │ │ ├── getopt_silent.tests │ │ ├── getopt_simple.right │ │ ├── getopt_simple.tests │ │ ├── getopt_test_libc_bug.right │ │ └── getopt_test_libc_bug.tests │ ├── ash-glob │ │ ├── glob1.right │ │ ├── glob1.tests │ │ ├── glob2.right │ │ ├── glob2.tests │ │ ├── glob3.right │ │ ├── glob3.tests │ │ ├── glob_and_assign.right │ │ ├── glob_and_assign.tests │ │ ├── glob_dir.right │ │ ├── glob_dir.tests │ │ ├── glob_redir.right │ │ └── glob_redir.tests │ ├── ash-heredoc │ │ ├── heredoc.right │ │ ├── heredoc.tests │ │ ├── heredoc1.right │ │ ├── heredoc1.tests │ │ ├── heredoc2.right │ │ ├── heredoc2.tests │ │ ├── heredoc3.right │ │ ├── heredoc3.tests │ │ ├── heredoc4.right │ │ ├── heredoc4.tests │ │ ├── heredoc5.right │ │ ├── heredoc5.tests │ │ ├── heredoc6.right │ │ ├── heredoc6.tests │ │ ├── heredoc7.right │ │ ├── heredoc7.tests │ │ ├── heredoc8.right │ │ ├── heredoc8.tests │ │ ├── heredoc9.right │ │ ├── heredoc9.tests │ │ ├── heredoc_backquote1.right │ │ ├── heredoc_backquote1.tests │ │ ├── heredoc_backslash1.right │ │ ├── heredoc_backslash1.tests │ │ ├── heredoc_bkslash_newline1.right │ │ ├── heredoc_bkslash_newline1.tests │ │ ├── heredoc_empty.right │ │ ├── heredoc_empty.tests │ │ ├── heredoc_empty2.right │ │ ├── heredoc_empty2.tests │ │ ├── heredoc_huge.right │ │ ├── heredoc_huge.tests │ │ ├── heredoc_var_expand1.right │ │ └── heredoc_var_expand1.tests │ ├── ash-invert │ │ ├── invert.right │ │ └── invert.tests │ ├── ash-misc │ │ ├── and-or.right │ │ ├── and-or.tests │ │ ├── assignment1.right │ │ ├── assignment1.tests │ │ ├── assignment2.right │ │ ├── assignment2.tests │ │ ├── assignment3.right │ │ ├── assignment3.tests │ │ ├── assignment4.right │ │ ├── assignment4.tests │ │ ├── assignment5.right │ │ ├── assignment5.tests │ │ ├── break1.right │ │ ├── break1.tests │ │ ├── break2.right │ │ ├── break2.tests │ │ ├── break3.right │ │ ├── break3.tests │ │ ├── break4.right │ │ ├── break4.tests │ │ ├── break5.right │ │ ├── break5.tests │ │ ├── builtin1.right │ │ ├── builtin1.tests │ │ ├── case1.right │ │ ├── case1.tests │ │ ├── colon.right │ │ ├── colon.tests │ │ ├── command.right │ │ ├── command.tests │ │ ├── command2.right │ │ ├── command2.tests │ │ ├── compound.right │ │ ├── compound.tests │ │ ├── continue1.right │ │ ├── continue1.tests │ │ ├── continue2.right │ │ ├── continue2.tests │ │ ├── continue3.right │ │ ├── continue3.tests │ │ ├── control_char1.right │ │ ├── control_char1.tests │ │ ├── control_char2.right │ │ ├── control_char2.tests │ │ ├── echo_write_error.right │ │ ├── echo_write_error.tests │ │ ├── empty_args.right │ │ ├── empty_args.tests │ │ ├── empty_for.right │ │ ├── empty_for.tests │ │ ├── empty_for2.right │ │ ├── empty_for2.tests │ │ ├── env_and_func.right │ │ ├── env_and_func.tests │ │ ├── errexit1.right │ │ ├── errexit1.tests │ │ ├── eval1.right │ │ ├── eval1.tests │ │ ├── eval2.right │ │ ├── eval2.tests │ │ ├── exec.right │ │ ├── exec.tests │ │ ├── exit1.right │ │ ├── exit1.tests │ │ ├── exitcode1.right │ │ ├── exitcode1.tests │ │ ├── exitcode2.right │ │ ├── exitcode2.tests │ │ ├── exitcode_EACCES.right │ │ ├── exitcode_EACCES.tests │ │ ├── exitcode_ENOENT.right │ │ ├── exitcode_ENOENT.tests │ │ ├── for.right │ │ ├── for.tests │ │ ├── for_with_bslashes.right │ │ ├── for_with_bslashes.tests │ │ ├── for_with_keywords.right │ │ ├── for_with_keywords.tests │ │ ├── func1.right │ │ ├── func1.tests │ │ ├── func2.right │ │ ├── func2.tests │ │ ├── func3.right │ │ ├── func3.tests │ │ ├── func4.right │ │ ├── func4.tests │ │ ├── func5.right │ │ ├── func5.tests │ │ ├── func_args1.right │ │ ├── func_args1.tests │ │ ├── func_bash1.right │ │ ├── func_bash1.tests │ │ ├── func_compound1.right │ │ ├── func_compound1.tests │ │ ├── func_local1.right │ │ ├── func_local1.tests │ │ ├── func_local2.right │ │ ├── func_local2.tests │ │ ├── func_prio_over_builtins.right │ │ ├── func_prio_over_builtins.tests │ │ ├── func_return1.right │ │ ├── func_return1.tests │ │ ├── func_return2.right │ │ ├── func_return2.tests │ │ ├── group_in_braces.right │ │ ├── group_in_braces.tests │ │ ├── if_false_exitcode.right │ │ ├── if_false_exitcode.tests │ │ ├── last_amp.right │ │ ├── last_amp.tests │ │ ├── local1.right │ │ ├── local1.tests │ │ ├── local2.right │ │ ├── local2.tests │ │ ├── nommu1.right │ │ ├── nommu1.tests │ │ ├── nommu2.right │ │ ├── nommu2.tests │ │ ├── nommu3.right │ │ ├── nommu3.tests │ │ ├── nulltick1.right │ │ ├── nulltick1.tests │ │ ├── opts1.right │ │ ├── opts1.tests │ │ ├── pid.right │ │ ├── pid.tests │ │ ├── pipefail.right │ │ ├── pipefail.tests │ │ ├── read.right │ │ ├── read.tests │ │ ├── return1.right │ │ ├── return1.tests │ │ ├── shift.right │ │ ├── shift.tests │ │ ├── shift1.right │ │ ├── shift1.tests │ │ ├── source1.right │ │ ├── source1.tests │ │ ├── source2.right │ │ ├── source2.tests │ │ ├── source3.right │ │ ├── source3.tests │ │ ├── source5.right │ │ ├── source5.tests │ │ ├── source_argv_and_shift.right │ │ ├── source_argv_and_shift.tests │ │ ├── tickquote1.right │ │ ├── tickquote1.tests │ │ ├── unicode1.right │ │ ├── unicode1.tests │ │ ├── until1.right │ │ ├── until1.tests │ │ ├── wait4.right │ │ ├── wait4.tests │ │ ├── wait5.right │ │ ├── wait5.tests │ │ ├── wait6.right │ │ ├── wait6.tests │ │ ├── while1.right │ │ ├── while1.tests │ │ ├── while2.right │ │ ├── while2.tests │ │ ├── while4.right │ │ ├── while4.tests │ │ ├── while_in_subshell.right │ │ └── while_in_subshell.tests │ ├── ash-parsing │ │ ├── and_or_and_backgrounding.right │ │ ├── and_or_and_backgrounding.tests │ │ ├── argv0.right │ │ ├── argv0.tests │ │ ├── bkslash_eof1.right │ │ ├── bkslash_eof1.tests │ │ ├── bkslash_newline1.right │ │ ├── bkslash_newline1.tests │ │ ├── bkslash_newline2.right │ │ ├── bkslash_newline2.tests │ │ ├── bkslash_newline3.right │ │ ├── bkslash_newline3.tests │ │ ├── brace1.right │ │ ├── brace1.tests │ │ ├── brace2.right │ │ ├── brace2.tests │ │ ├── comment1.right │ │ ├── comment1.tests │ │ ├── comment2.right │ │ ├── comment2.tests │ │ ├── eol1.right │ │ ├── eol1.tests │ │ ├── escape1.right │ │ ├── escape1.tests │ │ ├── escape2.right │ │ ├── escape2.tests │ │ ├── escape3.right │ │ ├── escape3.tests │ │ ├── escape4.right │ │ ├── escape4.tests │ │ ├── escape5.right │ │ ├── escape5.tests │ │ ├── group1.right │ │ ├── group1.tests │ │ ├── group2.right │ │ ├── group2.tests │ │ ├── groups_and_keywords1.right │ │ ├── groups_and_keywords1.tests │ │ ├── groups_and_keywords2.right │ │ ├── groups_and_keywords2.tests │ │ ├── negate.right │ │ ├── negate.tests │ │ ├── noeol.right │ │ ├── noeol.tests │ │ ├── noeol2.right │ │ ├── noeol2.tests │ │ ├── noeol3.right │ │ ├── noeol3.tests │ │ ├── process_subst.right │ │ ├── process_subst.tests │ │ ├── quote1.right │ │ ├── quote1.tests │ │ ├── quote2.right │ │ ├── quote2.tests │ │ ├── quote3.right │ │ ├── quote3.tests │ │ ├── quote4.right │ │ ├── quote4.tests │ │ ├── starquoted.right │ │ ├── starquoted.tests │ │ ├── starquoted2.right │ │ ├── starquoted2.tests │ │ ├── starquoted3.right │ │ └── starquoted3.tests │ ├── ash-psubst │ │ ├── emptytick.right │ │ ├── emptytick.tests │ │ ├── tick.right │ │ ├── tick.tests │ │ ├── tick2.right │ │ ├── tick2.tests │ │ ├── tick3.right │ │ ├── tick3.tests │ │ ├── tick4.right │ │ ├── tick4.tests │ │ ├── tick_huge.right │ │ └── tick_huge.tests │ ├── ash-quoting │ │ ├── bkslash_case1.right │ │ ├── bkslash_case1.tests │ │ ├── bkslash_case2.right │ │ ├── bkslash_case2.tests │ │ ├── bkslash_in_varexp.right │ │ ├── bkslash_in_varexp.tests │ │ ├── bkslash_in_varexp1.right │ │ ├── bkslash_in_varexp1.tests │ │ ├── case_glob1.right │ │ ├── case_glob1.tests │ │ ├── dollar_repl_slash_bash1.right │ │ ├── dollar_repl_slash_bash1.tests │ │ ├── dollar_repl_slash_bash2.right │ │ ├── dollar_repl_slash_bash2.tests │ │ ├── dollar_squote_bash1.right │ │ ├── dollar_squote_bash1.tests │ │ ├── dollar_squote_bash2.right │ │ ├── dollar_squote_bash2.tests │ │ ├── mode_x.right │ │ ├── mode_x.tests │ │ ├── quote_in_varexp1.right │ │ ├── quote_in_varexp1.tests │ │ ├── quoted_punct.right │ │ ├── quoted_punct.tests │ │ ├── squote_in_varexp.right │ │ ├── squote_in_varexp.tests │ │ ├── squote_in_varexp1.right │ │ ├── squote_in_varexp1.tests │ │ ├── squote_in_varexp2.right │ │ ├── squote_in_varexp2.tests │ │ ├── squote_in_varexp3.right │ │ ├── squote_in_varexp3.tests │ │ ├── unicode_8x_chars.right │ │ └── unicode_8x_chars.tests │ ├── ash-read │ │ ├── read_REPLY.right │ │ ├── read_REPLY.tests │ │ ├── read_SIGCHLD.right │ │ ├── read_SIGCHLD.tests │ │ ├── read_ifs.right │ │ ├── read_ifs.tests │ │ ├── read_n.right │ │ ├── read_n.tests │ │ ├── read_r.right │ │ ├── read_r.tests │ │ ├── read_t.right │ │ ├── read_t.tests │ │ ├── read_t0.right │ │ └── read_t0.tests │ ├── ash-redir │ │ ├── redir.right │ │ ├── redir.tests │ │ ├── redir1.right │ │ ├── redir1.tests │ │ ├── redir2.right │ │ ├── redir2.tests │ │ ├── redir3.right │ │ ├── redir3.tests │ │ ├── redir4.right │ │ ├── redir4.tests │ │ ├── redir5.right │ │ ├── redir5.tests │ │ ├── redir6.right │ │ ├── redir6.tests │ │ ├── redir7.right │ │ ├── redir7.tests │ │ ├── redir8.right │ │ ├── redir8.tests │ │ ├── redir9.right │ │ ├── redir9.tests │ │ ├── redirA.right │ │ ├── redirA.tests │ │ ├── redir_children_should_not_see_saved_fd_1.right │ │ ├── redir_children_should_not_see_saved_fd_1.tests │ │ ├── redir_children_should_not_see_saved_fd_2.right │ │ ├── redir_children_should_not_see_saved_fd_2.tests │ │ ├── redir_children_should_not_see_saved_fd_3.right │ │ ├── redir_children_should_not_see_saved_fd_3.tests │ │ ├── redir_escapednum.right │ │ ├── redir_escapednum.tests │ │ ├── redir_exec1.right │ │ ├── redir_exec1.tests │ │ ├── redir_expand.right │ │ ├── redir_expand.tests │ │ ├── redir_leak.right │ │ ├── redir_leak.tests │ │ ├── redir_multi.right │ │ ├── redir_multi.tests │ │ ├── redir_script.right │ │ ├── redir_script.tests │ │ ├── redir_space.right │ │ ├── redir_space.tests │ │ ├── redir_to_bad_fd.right │ │ ├── redir_to_bad_fd.tests │ │ ├── redir_to_bad_fd255.right │ │ ├── redir_to_bad_fd255.tests │ │ ├── redir_to_bad_fd3.right │ │ └── redir_to_bad_fd3.tests │ ├── ash-signals │ │ ├── catch.right │ │ ├── catch.tests │ │ ├── continue_and_trap1.right │ │ ├── continue_and_trap1.tests │ │ ├── reap1.right │ │ ├── reap1.tests │ │ ├── return_in_trap1.right │ │ ├── return_in_trap1.tests │ │ ├── save-ret.right │ │ ├── save-ret.tests │ │ ├── savetrap.right │ │ ├── savetrap.tests │ │ ├── sigint1.right │ │ ├── sigint1.tests │ │ ├── signal1.right │ │ ├── signal1.tests │ │ ├── signal2.right │ │ ├── signal2.tests │ │ ├── signal3.right │ │ ├── signal3.tests │ │ ├── signal4.right │ │ ├── signal4.tests │ │ ├── signal5.right │ │ ├── signal5.tests │ │ ├── signal6.right │ │ ├── signal6.tests │ │ ├── signal7.right │ │ ├── signal7.tests │ │ ├── signal8.right │ │ ├── signal8.tests │ │ ├── signal9.right │ │ ├── signal9.tests │ │ ├── signal_read2.right │ │ ├── signal_read2.tests │ │ ├── sigquit_exec.right │ │ ├── sigquit_exec.tests │ │ ├── subshell.right │ │ └── subshell.tests │ ├── ash-standalone │ │ ├── noexec_gets_no_env.right │ │ ├── noexec_gets_no_env.tests │ │ ├── nofork_env.right │ │ ├── nofork_env.tests │ │ ├── nofork_trashes_getopt.right │ │ ├── nofork_trashes_getopt.tests │ │ ├── var_standalone1.right │ │ └── var_standalone1.tests │ ├── ash-vars │ │ ├── empty.right │ │ ├── empty.tests │ │ ├── glob_and_vars.right │ │ ├── glob_and_vars.tests │ │ ├── param_expand_alt.right │ │ ├── param_expand_alt.tests │ │ ├── param_expand_alt2.right │ │ ├── param_expand_alt2.tests │ │ ├── param_expand_assign.right │ │ ├── param_expand_assign.tests │ │ ├── param_expand_bash_substring.right │ │ ├── param_expand_bash_substring.tests │ │ ├── param_expand_default.right │ │ ├── param_expand_default.tests │ │ ├── param_expand_indicate_error.right │ │ ├── param_expand_indicate_error.tests │ │ ├── param_expand_len.right │ │ ├── param_expand_len.tests │ │ ├── param_expand_len1.right │ │ ├── param_expand_len1.tests │ │ ├── param_glob.right │ │ ├── param_glob.tests │ │ ├── param_subshell.right │ │ ├── param_subshell.tests │ │ ├── readonly0.right │ │ ├── readonly0.tests │ │ ├── readonly1.right │ │ ├── readonly1.tests │ │ ├── star.right │ │ ├── star.tests │ │ ├── unset.right │ │ ├── unset.tests │ │ ├── var-do-not-collapse-arithmetic-expansion-at-parse-time.right │ │ ├── var-do-not-collapse-arithmetic-expansion-at-parse-time.tests │ │ ├── var-do-not-expand-tilde-in-parameter-expansion-in-quotes.right │ │ ├── var-do-not-expand-tilde-in-parameter-expansion-in-quotes.tests │ │ ├── var-do-not-quote-backslashes-in-parameter-expansions-outside-quotes.right │ │ ├── var-do-not-quote-backslashes-in-parameter-expansions-outside-quotes.tests │ │ ├── var-expand-tilde-in-parameter-expansion.right │ │ ├── var-expand-tilde-in-parameter-expansion.tests │ │ ├── var-pattern-replacement-in-parameter-expansion-1.right │ │ ├── var-pattern-replacement-in-parameter-expansion-1.tests │ │ ├── var-pattern-replacement-in-parameter-expansion-2.right │ │ ├── var-pattern-replacement-in-parameter-expansion-2.tests │ │ ├── var-pattern-replacement-in-parameter-expansion-3.right │ │ ├── var-pattern-replacement-in-parameter-expansion-3.tests │ │ ├── var-pattern-replacement-in-parameter-expansion-4.right │ │ ├── var-pattern-replacement-in-parameter-expansion-4.tests │ │ ├── var-pattern-replacement-in-parameter-expansion-5.right │ │ ├── var-pattern-replacement-in-parameter-expansion-5.tests │ │ ├── var-runtime-quote-detection.right │ │ ├── var-runtime-quote-detection.tests │ │ ├── var-utf8-length.right │ │ ├── var-utf8-length.tests │ │ ├── var1.right │ │ ├── var1.tests │ │ ├── var2.right │ │ ├── var2.tests │ │ ├── var3.right │ │ ├── var3.tests │ │ ├── var4.right │ │ ├── var4.tests │ │ ├── var5.right │ │ ├── var5.tests │ │ ├── var_LINENO1.right │ │ ├── var_LINENO1.tests │ │ ├── var_bash1.right │ │ ├── var_bash1.tests │ │ ├── var_bash1a.right │ │ ├── var_bash1a.tests │ │ ├── var_bash1b.right │ │ ├── var_bash1b.tests │ │ ├── var_bash2.right │ │ ├── var_bash2.tests │ │ ├── var_bash3.right │ │ ├── var_bash3.tests │ │ ├── var_bash4.right │ │ ├── var_bash4.tests │ │ ├── var_bash5.right │ │ ├── var_bash5.tests │ │ ├── var_bash6.right │ │ ├── var_bash6.tests │ │ ├── var_bash7.right │ │ ├── var_bash7.tests │ │ ├── var_bash_repl_empty_pattern.right │ │ ├── var_bash_repl_empty_pattern.tests │ │ ├── var_bash_repl_empty_var.right │ │ ├── var_bash_repl_empty_var.tests │ │ ├── var_expand_in_assign.right │ │ ├── var_expand_in_assign.tests │ │ ├── var_expand_in_redir.right │ │ ├── var_expand_in_redir.tests │ │ ├── var_expand_on_ifs.right │ │ ├── var_expand_on_ifs.tests │ │ ├── var_in_pipes.right │ │ ├── var_in_pipes.tests │ │ ├── var_leak.right │ │ ├── var_leak.tests │ │ ├── var_leaks.right │ │ ├── var_leaks.tests │ │ ├── var_posix1.right │ │ ├── var_posix1.tests │ │ ├── var_serial.right │ │ ├── var_serial.tests │ │ ├── var_subst_in_for.right │ │ ├── var_subst_in_for.tests │ │ ├── var_unbackslash.right │ │ ├── var_unbackslash.tests │ │ ├── var_unbackslash1.right │ │ ├── var_unbackslash1.tests │ │ ├── var_wordsplit_ifs1.right │ │ ├── var_wordsplit_ifs1.tests │ │ ├── var_wordsplit_ifs2.right │ │ ├── var_wordsplit_ifs2.tests │ │ ├── var_wordsplit_ifs3.right │ │ ├── var_wordsplit_ifs3.tests │ │ ├── var_wordsplit_ifs4.right │ │ └── var_wordsplit_ifs4.tests │ ├── ash-z_slow │ │ ├── many_ifs.right │ │ └── many_ifs.tests │ ├── printenv.c │ ├── recho.c │ ├── run-all │ └── zecho.c ├── brace.txt ├── cttyhack.c ├── hush.c ├── hush_doc.txt ├── hush_leaktool.sh ├── hush_test │ ├── hush-arith │ │ ├── arith-postinc.right │ │ ├── arith-postinc.tests │ │ ├── arith.right │ │ ├── arith.tests │ │ ├── arith1.sub │ │ ├── arith2.sub │ │ ├── arith_nested1.right │ │ └── arith_nested1.tests │ ├── hush-bugs │ │ ├── export_exp.right │ │ └── export_exp.tests.disabled │ ├── hush-getopts │ │ ├── getopt_nested.right │ │ ├── getopt_nested.tests │ │ ├── getopt_optarg.right │ │ ├── getopt_optarg.tests │ │ ├── getopt_positional.right │ │ ├── getopt_positional.tests │ │ ├── getopt_silent.right │ │ ├── getopt_silent.tests │ │ ├── getopt_simple.right │ │ ├── getopt_simple.tests │ │ ├── getopt_test_libc_bug.right │ │ └── getopt_test_libc_bug.tests │ ├── hush-glob │ │ ├── bash_brace1.right │ │ ├── bash_brace1.tests │ │ ├── glob1.right │ │ ├── glob1.tests │ │ ├── glob2.right │ │ ├── glob2.tests │ │ ├── glob3.right │ │ ├── glob3.tests │ │ ├── glob_and_assign.right │ │ ├── glob_and_assign.tests │ │ ├── glob_dir.right │ │ ├── glob_dir.tests │ │ ├── glob_redir.right │ │ └── glob_redir.tests │ ├── hush-heredoc │ │ ├── heredoc1.right │ │ ├── heredoc1.tests │ │ ├── heredoc2.right │ │ ├── heredoc2.tests │ │ ├── heredoc3.right │ │ ├── heredoc3.tests │ │ ├── heredoc4.right │ │ ├── heredoc4.tests │ │ ├── heredoc5.right │ │ ├── heredoc5.tests │ │ ├── heredoc6.right │ │ ├── heredoc6.tests │ │ ├── heredoc7.right │ │ ├── heredoc7.tests │ │ ├── heredoc8.right │ │ ├── heredoc8.tests │ │ ├── heredoc_backslash1.right │ │ ├── heredoc_backslash1.tests │ │ ├── heredoc_bkslash_newline1.right │ │ ├── heredoc_bkslash_newline1.tests │ │ ├── heredoc_empty2.right │ │ ├── heredoc_empty2.tests │ │ ├── heredoc_huge.right │ │ └── heredoc_huge.tests │ ├── hush-invert │ │ ├── invert.right │ │ └── invert.tests │ ├── hush-leak │ │ ├── leak_argv1.right │ │ └── leak_argv1.tests │ ├── hush-misc │ │ ├── and-or.right │ │ ├── and-or.tests │ │ ├── assignment1.right │ │ ├── assignment1.tests │ │ ├── assignment2.right │ │ ├── assignment2.tests │ │ ├── assignment3.right │ │ ├── assignment3.tests │ │ ├── assignment4.right │ │ ├── assignment4.tests │ │ ├── assignment5.right │ │ ├── assignment5.tests │ │ ├── break1.right │ │ ├── break1.tests │ │ ├── break2.right │ │ ├── break2.tests │ │ ├── break3.right │ │ ├── break3.tests │ │ ├── break4.right │ │ ├── break4.tests │ │ ├── break5.right │ │ ├── break5.tests │ │ ├── builtin1.right │ │ ├── builtin1.tests │ │ ├── case1.right │ │ ├── case1.tests │ │ ├── colon.right │ │ ├── colon.tests │ │ ├── command2.right │ │ ├── command2.tests │ │ ├── compound.right │ │ ├── compound.tests │ │ ├── continue1.right │ │ ├── continue1.tests │ │ ├── continue2.right │ │ ├── continue2.tests │ │ ├── continue3.right │ │ ├── continue3.tests │ │ ├── control_char1.right │ │ ├── control_char1.tests │ │ ├── control_char2.right │ │ ├── control_char2.tests │ │ ├── echo_write_error.right │ │ ├── echo_write_error.tests │ │ ├── empty_args.right │ │ ├── empty_args.tests │ │ ├── empty_for.right │ │ ├── empty_for.tests │ │ ├── empty_for2.right │ │ ├── empty_for2.tests │ │ ├── env_and_func.right │ │ ├── env_and_func.tests │ │ ├── errexit1.right │ │ ├── errexit1.tests │ │ ├── eval1.right │ │ ├── eval1.tests │ │ ├── eval2.right │ │ ├── eval2.tests │ │ ├── exec.right │ │ ├── exec.tests │ │ ├── exit1.right │ │ ├── exit1.tests │ │ ├── exitcode1.right │ │ ├── exitcode1.tests │ │ ├── exitcode2.right │ │ ├── exitcode2.tests │ │ ├── exitcode_EACCES.right │ │ ├── exitcode_EACCES.tests │ │ ├── exitcode_ENOENT.right │ │ ├── exitcode_ENOENT.tests │ │ ├── export-n.right │ │ ├── export-n.tests │ │ ├── export.right │ │ ├── export.tests │ │ ├── for.right │ │ ├── for.tests │ │ ├── for_with_bslashes.right │ │ ├── for_with_bslashes.tests │ │ ├── for_with_keywords.right │ │ ├── for_with_keywords.tests │ │ ├── func1.right │ │ ├── func1.tests │ │ ├── func2.right │ │ ├── func2.tests │ │ ├── func3.right │ │ ├── func3.tests │ │ ├── func4.right │ │ ├── func4.tests │ │ ├── func5.right │ │ ├── func5.tests │ │ ├── func_args1.right │ │ ├── func_args1.tests │ │ ├── func_local1.right │ │ ├── func_local1.tests │ │ ├── func_local2.right │ │ ├── func_local2.tests │ │ ├── func_prio_over_builtins.right │ │ ├── func_prio_over_builtins.tests │ │ ├── func_return1.right │ │ ├── func_return1.tests │ │ ├── func_return2.right │ │ ├── func_return2.tests │ │ ├── group_in_braces.right │ │ ├── group_in_braces.tests │ │ ├── if_false_exitcode.right │ │ ├── if_false_exitcode.tests │ │ ├── last_amp.right │ │ ├── last_amp.tests │ │ ├── local1.right │ │ ├── local1.tests │ │ ├── nommu1.right │ │ ├── nommu1.tests │ │ ├── nommu2.right │ │ ├── nommu2.tests │ │ ├── nommu3.right │ │ ├── nommu3.tests │ │ ├── nulltick1.right │ │ ├── nulltick1.tests │ │ ├── opts1.right │ │ ├── opts1.tests │ │ ├── pid.right │ │ ├── pid.tests │ │ ├── pipefail.right │ │ ├── pipefail.tests │ │ ├── read.right │ │ ├── read.tests │ │ ├── return1.right │ │ ├── return1.tests │ │ ├── shift.right │ │ ├── shift.tests │ │ ├── shift1.right │ │ ├── shift1.tests │ │ ├── sig_exitcode.right │ │ ├── sig_exitcode.tests │ │ ├── source1.right │ │ ├── source1.tests │ │ ├── source2.right │ │ ├── source2.tests │ │ ├── source3.right │ │ ├── source3.tests │ │ ├── source4.right │ │ ├── source4.tests │ │ ├── source5.right │ │ ├── source5.tests │ │ ├── source_argv_and_shift.right │ │ ├── source_argv_and_shift.tests │ │ ├── syntax_err.right │ │ ├── syntax_err.tests │ │ ├── syntax_err_negate.right │ │ ├── syntax_err_negate.tests │ │ ├── tickquote1.right │ │ ├── tickquote1.tests │ │ ├── unicode1.right │ │ ├── unicode1.tests │ │ ├── until1.right │ │ ├── until1.tests │ │ ├── wait1.right │ │ ├── wait1.tests │ │ ├── wait2.right │ │ ├── wait2.tests │ │ ├── wait3.right │ │ ├── wait3.tests │ │ ├── wait4.right │ │ ├── wait4.tests │ │ ├── wait5.right │ │ ├── wait5.tests │ │ ├── wait6.right │ │ ├── wait6.tests │ │ ├── while1.right │ │ ├── while1.tests │ │ ├── while2.right │ │ ├── while2.tests │ │ ├── while3.right │ │ ├── while3.tests │ │ ├── while4.right │ │ ├── while4.tests │ │ ├── while_in_subshell.right │ │ └── while_in_subshell.tests │ ├── hush-parsing │ │ ├── and_or_and_backgrounding.right │ │ ├── and_or_and_backgrounding.tests │ │ ├── argv0.right │ │ ├── argv0.tests │ │ ├── bkslash_eof1.right │ │ ├── bkslash_eof1.tests │ │ ├── bkslash_eof2.right │ │ ├── bkslash_eof2.tests │ │ ├── bkslash_newline1.right │ │ ├── bkslash_newline1.tests │ │ ├── bkslash_newline2.right │ │ ├── bkslash_newline2.tests │ │ ├── bkslash_newline3.right │ │ ├── bkslash_newline3.tests │ │ ├── brace1.right │ │ ├── brace1.tests │ │ ├── brace2.right │ │ ├── brace2.tests │ │ ├── comment1.right │ │ ├── comment1.tests │ │ ├── comment2.right │ │ ├── comment2.tests │ │ ├── eol1.right │ │ ├── eol1.tests │ │ ├── escape1.right │ │ ├── escape1.tests │ │ ├── escape2.right │ │ ├── escape2.tests │ │ ├── escape3.right │ │ ├── escape3.tests │ │ ├── escape4.right │ │ ├── escape4.tests │ │ ├── escape5.right │ │ ├── escape5.tests │ │ ├── group1.right │ │ ├── group1.tests │ │ ├── group2.right │ │ ├── group2.tests │ │ ├── groups_and_keywords1.right │ │ ├── groups_and_keywords1.tests │ │ ├── groups_and_keywords2.right │ │ ├── groups_and_keywords2.tests │ │ ├── negate.right │ │ ├── negate.tests │ │ ├── noeol.right │ │ ├── noeol.tests │ │ ├── noeol2.right │ │ ├── noeol2.tests │ │ ├── noeol3.right │ │ ├── noeol3.tests │ │ ├── process_subst.right │ │ ├── process_subst.tests │ │ ├── quote1.right │ │ ├── quote1.tests │ │ ├── quote2.right │ │ ├── quote2.tests │ │ ├── quote3.right │ │ ├── quote3.tests │ │ ├── quote4.right │ │ ├── quote4.tests │ │ ├── starquoted.right │ │ ├── starquoted.tests │ │ ├── starquoted2.right │ │ ├── starquoted2.tests │ │ ├── starquoted3.right │ │ └── starquoted3.tests │ ├── hush-psubst │ │ ├── emptytick.right │ │ ├── emptytick.tests │ │ ├── falsetick.right │ │ ├── falsetick.tests │ │ ├── falsetick2.right │ │ ├── falsetick2.tests │ │ ├── tick.right │ │ ├── tick.tests │ │ ├── tick2.right │ │ ├── tick2.tests │ │ ├── tick3.right │ │ ├── tick3.tests │ │ ├── tick4.right │ │ ├── tick4.tests │ │ ├── tick5.right │ │ ├── tick5.tests │ │ ├── tick_huge.right │ │ └── tick_huge.tests │ ├── hush-quoting │ │ ├── bkslash_case1.right │ │ ├── bkslash_case1.tests │ │ ├── bkslash_case2.right │ │ ├── bkslash_case2.tests │ │ ├── bkslash_in_varexp.right │ │ ├── bkslash_in_varexp.tests │ │ ├── bkslash_in_varexp1.right │ │ ├── bkslash_in_varexp1.tests │ │ ├── case_glob1.right │ │ ├── case_glob1.tests │ │ ├── dollar_repl_slash_bash1.right │ │ ├── dollar_repl_slash_bash1.tests │ │ ├── dollar_repl_slash_bash2.right │ │ ├── dollar_repl_slash_bash2.tests │ │ ├── quoted_punct.right │ │ ├── quoted_punct.tests │ │ ├── squote_in_varexp.right │ │ ├── squote_in_varexp.tests │ │ ├── squote_in_varexp1.right │ │ ├── squote_in_varexp1.tests │ │ ├── squote_in_varexp2.right │ │ ├── squote_in_varexp2.tests │ │ ├── squote_in_varexp3.right │ │ ├── squote_in_varexp3.tests │ │ ├── unicode_8x_chars.right │ │ └── unicode_8x_chars.tests │ ├── hush-read │ │ ├── read_REPLY.right │ │ ├── read_REPLY.tests │ │ ├── read_SIGCHLD.right │ │ ├── read_SIGCHLD.tests │ │ ├── read_ifs.right │ │ ├── read_ifs.tests │ │ ├── read_ifs2.right │ │ ├── read_ifs2.tests │ │ ├── read_n.right │ │ ├── read_n.tests │ │ ├── read_r.right │ │ ├── read_r.tests │ │ ├── read_t.right │ │ ├── read_t.tests │ │ ├── read_t0.right │ │ └── read_t0.tests │ ├── hush-redir │ │ ├── redir.right │ │ ├── redir.tests │ │ ├── redir1.right │ │ ├── redir1.tests │ │ ├── redir2.right │ │ ├── redir2.tests │ │ ├── redir3.right │ │ ├── redir3.tests │ │ ├── redir4.right │ │ ├── redir4.tests │ │ ├── redir5.right │ │ ├── redir5.tests │ │ ├── redir6.right │ │ ├── redir6.tests │ │ ├── redir7.right │ │ ├── redir7.tests │ │ ├── redir8.right │ │ ├── redir8.tests │ │ ├── redir9.right │ │ ├── redir9.tests │ │ ├── redirA.right │ │ ├── redirA.tests │ │ ├── redir_backquote1.right │ │ ├── redir_backquote1.tests │ │ ├── redir_children_should_not_see_saved_fd_1.right │ │ ├── redir_children_should_not_see_saved_fd_1.tests │ │ ├── redir_children_should_not_see_saved_fd_2.right │ │ ├── redir_children_should_not_see_saved_fd_2.tests │ │ ├── redir_children_should_not_see_saved_fd_3.right │ │ ├── redir_children_should_not_see_saved_fd_3.tests │ │ ├── redir_errors.right │ │ ├── redir_errors.tests │ │ ├── redir_escapednum.right │ │ ├── redir_escapednum.tests │ │ ├── redir_exec1.right │ │ ├── redir_exec1.tests │ │ ├── redir_expand.right │ │ ├── redir_expand.tests │ │ ├── redir_leak.right │ │ ├── redir_leak.tests │ │ ├── redir_multi.right │ │ ├── redir_multi.tests │ │ ├── redir_script.right │ │ ├── redir_script.tests │ │ ├── redir_space.right │ │ ├── redir_space.tests │ │ ├── redir_to_bad_fd.right │ │ ├── redir_to_bad_fd.tests │ │ ├── redir_to_bad_fd255.right │ │ ├── redir_to_bad_fd255.tests │ │ ├── redir_to_bad_fd3.right │ │ └── redir_to_bad_fd3.tests │ ├── hush-signals │ │ ├── catch.right │ │ ├── catch.tests │ │ ├── continue_and_trap1.right │ │ ├── continue_and_trap1.tests │ │ ├── exit.right │ │ ├── exit.tests │ │ ├── reap1.right │ │ ├── reap1.tests │ │ ├── return_in_trap1.right │ │ ├── return_in_trap1.tests │ │ ├── save-ret.right │ │ ├── save-ret.tests │ │ ├── savetrap.right │ │ ├── savetrap.tests │ │ ├── sigint1.right │ │ ├── sigint1.tests │ │ ├── signal2.right │ │ ├── signal2.tests │ │ ├── signal3.right │ │ ├── signal3.tests │ │ ├── signal4.right │ │ ├── signal4.tests │ │ ├── signal5.right │ │ ├── signal5.tests │ │ ├── signal6.right │ │ ├── signal6.tests │ │ ├── signal7.right │ │ ├── signal7.tests │ │ ├── signal8.right │ │ ├── signal8.tests │ │ ├── signal9.right │ │ ├── signal9.tests │ │ ├── signal_read1.right │ │ ├── signal_read1.tests │ │ ├── signal_read2.right │ │ ├── signal_read2.tests │ │ ├── sigquit_exec.right │ │ ├── sigquit_exec.tests │ │ ├── subshell.right │ │ ├── subshell.tests │ │ ├── usage.right │ │ └── usage.tests │ ├── hush-standalone │ │ ├── noexec_gets_no_env.right │ │ ├── noexec_gets_no_env.tests │ │ ├── nofork_env.right │ │ ├── nofork_env.tests │ │ ├── nofork_trashes_getopt.right │ │ ├── nofork_trashes_getopt.tests │ │ ├── var_standalone1.right │ │ └── var_standalone1.tests │ ├── hush-vars │ │ ├── empty.right │ │ ├── empty.tests │ │ ├── glob_and_vars.right │ │ ├── glob_and_vars.tests │ │ ├── param_expand_alt.right │ │ ├── param_expand_alt.tests │ │ ├── param_expand_alt2.right │ │ ├── param_expand_alt2.tests │ │ ├── param_expand_assign.right │ │ ├── param_expand_assign.tests │ │ ├── param_expand_bash_substring.right │ │ ├── param_expand_bash_substring.tests │ │ ├── param_expand_default.right │ │ ├── param_expand_default.tests │ │ ├── param_expand_indicate_error.right │ │ ├── param_expand_indicate_error.tests │ │ ├── param_expand_len.right │ │ ├── param_expand_len.tests │ │ ├── param_expand_len1.right │ │ ├── param_expand_len1.tests │ │ ├── param_glob.right │ │ ├── param_glob.tests │ │ ├── param_subshell.right │ │ ├── param_subshell.tests │ │ ├── readonly0.right │ │ ├── readonly0.tests │ │ ├── readonly2.right │ │ ├── readonly2.tests │ │ ├── readonly3.right │ │ ├── readonly3.tests │ │ ├── star.right │ │ ├── star.tests │ │ ├── unset.right │ │ ├── unset.tests │ │ ├── var-do-not-collapse-arithmetic-expansion-at-parse-time.right │ │ ├── var-do-not-collapse-arithmetic-expansion-at-parse-time.tests │ │ ├── var-do-not-expand-tilde-in-parameter-expansion-in-quotes.right │ │ ├── var-do-not-expand-tilde-in-parameter-expansion-in-quotes.tests │ │ ├── var-do-not-quote-backslashes-in-parameter-expansions-outside-quotes.right │ │ ├── var-do-not-quote-backslashes-in-parameter-expansions-outside-quotes.tests │ │ ├── var-pattern-replacement-in-parameter-expansion-1.right │ │ ├── var-pattern-replacement-in-parameter-expansion-1.tests │ │ ├── var-pattern-replacement-in-parameter-expansion-2.right │ │ ├── var-pattern-replacement-in-parameter-expansion-2.tests │ │ ├── var-pattern-replacement-in-parameter-expansion-3.right │ │ ├── var-pattern-replacement-in-parameter-expansion-3.tests │ │ ├── var-pattern-replacement-in-parameter-expansion-4.right │ │ ├── var-pattern-replacement-in-parameter-expansion-4.tests │ │ ├── var-pattern-replacement-in-parameter-expansion-5.right │ │ ├── var-pattern-replacement-in-parameter-expansion-5.tests │ │ ├── var-runtime-quote-detection.right │ │ ├── var-runtime-quote-detection.tests │ │ ├── var-utf8-length.right │ │ ├── var-utf8-length.tests │ │ ├── var1.right │ │ ├── var1.tests │ │ ├── var2.right │ │ ├── var2.tests │ │ ├── var3.right │ │ ├── var3.tests │ │ ├── var4.right │ │ ├── var4.tests │ │ ├── var5.right │ │ ├── var5.tests │ │ ├── var6.right │ │ ├── var6.tests │ │ ├── var_LINENO1.right │ │ ├── var_LINENO1.tests │ │ ├── var_bash1.right │ │ ├── var_bash1.tests │ │ ├── var_bash1a.right │ │ ├── var_bash1a.tests │ │ ├── var_bash1b.right │ │ ├── var_bash1b.tests │ │ ├── var_bash2.right │ │ ├── var_bash2.tests │ │ ├── var_bash3.right │ │ ├── var_bash3.tests │ │ ├── var_bash4.right │ │ ├── var_bash4.tests │ │ ├── var_bash5.right │ │ ├── var_bash5.tests │ │ ├── var_bash6.right │ │ ├── var_bash6.tests │ │ ├── var_bash_repl_empty_pattern.right │ │ ├── var_bash_repl_empty_pattern.tests │ │ ├── var_bash_repl_empty_var.right │ │ ├── var_bash_repl_empty_var.tests │ │ ├── var_expand_in_assign.right │ │ ├── var_expand_in_assign.tests │ │ ├── var_expand_in_redir.right │ │ ├── var_expand_in_redir.tests │ │ ├── var_expand_on_ifs.right │ │ ├── var_expand_on_ifs.tests │ │ ├── var_in_pipes.right │ │ ├── var_in_pipes.tests │ │ ├── var_leaks.right │ │ ├── var_leaks.tests │ │ ├── var_nested1.right │ │ ├── var_nested1.tests │ │ ├── var_nested2.right │ │ ├── var_nested2.tests │ │ ├── var_posix1.right │ │ ├── var_posix1.tests │ │ ├── var_preserved.right │ │ ├── var_preserved.tests │ │ ├── var_serial.right │ │ ├── var_serial.tests │ │ ├── var_subst_in_for.right │ │ ├── var_subst_in_for.tests │ │ ├── var_unbackslash.right │ │ ├── var_unbackslash.tests │ │ ├── var_unbackslash1.right │ │ ├── var_unbackslash1.tests │ │ ├── var_wordsplit_ifs1.right │ │ ├── var_wordsplit_ifs1.tests │ │ ├── var_wordsplit_ifs2.right │ │ ├── var_wordsplit_ifs2.tests │ │ ├── var_wordsplit_ifs3.right │ │ ├── var_wordsplit_ifs3.tests │ │ ├── var_wordsplit_ifs4.right │ │ └── var_wordsplit_ifs4.tests │ ├── hush-z_slow │ │ ├── leak_all1.right │ │ ├── leak_all1.tests │ │ ├── leak_all2.right │ │ ├── leak_all2.tests │ │ ├── leak_empty_tick.right │ │ ├── leak_empty_tick.tests │ │ ├── leak_heredoc1.right │ │ ├── leak_heredoc1.tests │ │ ├── leak_var.right │ │ ├── leak_var.tests │ │ ├── leak_var2.right │ │ ├── leak_var2.tests │ │ ├── leak_var3.right │ │ ├── leak_var3.tests │ │ ├── many_ifs.right │ │ └── many_ifs.tests │ └── run-all ├── match.c ├── match.h ├── math.c ├── math.h ├── random.c ├── random.h ├── shell_common.c └── shell_common.h ├── size_single_applets.sh ├── sysklogd ├── Config.in ├── Config.src ├── Kbuild ├── Kbuild.src ├── klogd.c ├── logger.c ├── logread.c ├── syslogd.c └── syslogd_and_logger.c ├── testsuite ├── README ├── TODO ├── all_sourcecode.tests ├── ar.tests ├── ash.tests ├── awk.tests ├── awk_t1.tar.bz2 ├── basename │ ├── basename-does-not-remove-identical-extension │ └── basename-works ├── bunzip2.tests ├── bunzip2 │ ├── bunzip2-reads-from-standard-input │ └── bunzip2-removes-compressed-file ├── busybox.tests ├── bz2_issue_11.bz2 ├── bz2_issue_12.bz2 ├── bzcat.tests ├── bzcat │ └── bzcat-does-not-remove-compressed-file ├── cal.tests ├── cat.tests ├── cat │ ├── cat-prints-a-file │ └── cat-prints-a-file-and-standard-input ├── cmp │ └── cmp-detects-difference ├── comm.tests ├── cp.tests ├── cp │ ├── cp-RHL-does_not_preserve-links │ ├── cp-a-files-to-dir │ ├── cp-a-preserves-links │ ├── cp-copies-empty-file │ ├── cp-copies-large-file │ ├── cp-copies-small-file │ ├── cp-d-files-to-dir │ ├── cp-dev-file │ ├── cp-dir-create-dir │ ├── cp-dir-existing-dir │ ├── cp-does-not-copy-unreadable-file │ ├── cp-files-to-dir │ ├── cp-follows-links │ ├── cp-parents │ ├── cp-preserves-hard-links │ ├── cp-preserves-links │ └── cp-preserves-source-file ├── cpio.tests ├── cryptpw.tests ├── cut.tests ├── cut │ ├── cut-cuts-a-character │ ├── cut-cuts-a-closed-range │ ├── cut-cuts-a-field │ ├── cut-cuts-an-open-range │ └── cut-cuts-an-unclosed-range ├── date │ ├── date-@-works │ ├── date-R-works │ ├── date-format-works │ ├── date-u-works │ ├── date-works │ └── date-works-1 ├── dc.tests ├── dd │ ├── dd-accepts-if │ ├── dd-accepts-of │ ├── dd-copies-from-standard-input-to-standard-output │ ├── dd-prints-count-to-standard-error │ └── dd-reports-write-errors ├── diff.tests ├── dirname │ ├── dirname-handles-absolute-path │ ├── dirname-handles-empty-path │ ├── dirname-handles-multiple-slashes │ ├── dirname-handles-relative-path │ ├── dirname-handles-root │ ├── dirname-handles-single-component │ └── dirname-works ├── du │ ├── du-h-works │ ├── du-k-works │ ├── du-l-works │ ├── du-m-works │ ├── du-s-works │ └── du-works ├── echo │ ├── echo-does-not-print-newline │ ├── echo-prints-argument │ ├── echo-prints-arguments │ ├── echo-prints-dash │ ├── echo-prints-newline │ ├── echo-prints-non-opts │ ├── echo-prints-slash-zero │ ├── echo-prints-slash_00041 │ ├── echo-prints-slash_0041 │ ├── echo-prints-slash_041 │ └── echo-prints-slash_41 ├── expand.tests ├── expand │ └── expand-works-like-GNU ├── expr │ ├── expr-big │ └── expr-works ├── factor.tests ├── false │ ├── false-is-silent │ └── false-returns-failure ├── find.tests ├── find │ └── find-supports-minus-xdev ├── fold.tests ├── grep.tests ├── gunzip.tests ├── gunzip │ └── gunzip-reads-from-standard-input ├── gzip │ ├── gzip-accepts-multiple-files │ ├── gzip-accepts-single-minus │ ├── gzip-compression-levels │ └── gzip-removes-original-file ├── head │ ├── head-n-works │ └── head-works ├── hostid │ └── hostid-works ├── hostname │ ├── hostname-d-works │ ├── hostname-i-works │ ├── hostname-s-works │ └── hostname-works ├── id │ ├── id-g-works │ ├── id-u-works │ ├── id-un-works │ └── id-ur-works ├── ln │ ├── ln-creates-hard-links │ ├── ln-creates-soft-links │ ├── ln-force-creates-hard-links │ ├── ln-force-creates-soft-links │ ├── ln-preserves-hard-links │ └── ln-preserves-soft-links ├── ls.mk_uni_tests ├── ls.tests ├── ls │ ├── ls-1-works │ ├── ls-h-works │ ├── ls-l-works │ └── ls-s-works ├── makedevs.device_table.txt ├── makedevs.tests ├── md5sum.tests ├── md5sum │ └── md5sum-verifies-non-binary-file ├── mdev.tests ├── mkdir │ ├── mkdir-makes-a-directory │ └── mkdir-makes-parent-directories ├── mkfs.minix.tests ├── mount.testroot ├── mount.tests ├── mv │ ├── mv-files-to-dir │ ├── mv-follows-links │ ├── mv-moves-empty-file │ ├── mv-moves-file │ ├── mv-moves-hardlinks │ ├── mv-moves-large-file │ ├── mv-moves-small-file │ ├── mv-moves-symlinks │ ├── mv-moves-unreadable-files │ ├── mv-preserves-hard-links │ ├── mv-preserves-links │ ├── mv-refuses-mv-dir-to-subdir │ └── mv-removes-source-file ├── od.tests ├── parse.tests ├── paste │ ├── paste │ ├── paste-back-cuted-lines │ ├── paste-multi-stdin │ ├── paste-pairs │ └── paste-separate ├── patch.tests ├── pidof.tests ├── printf.tests ├── pwd │ └── pwd-prints-working-directory ├── readlink.tests ├── rm │ └── rm-removes-file ├── rmdir │ └── rmdir-removes-parent-directories ├── runtest ├── rx.tests ├── sed.tests ├── seq.tests ├── sha1sum.tests ├── sha256sum.tests ├── sha3sum.tests ├── sha512sum.tests ├── sort.tests ├── start-stop-daemon.tests ├── strings │ └── strings-works-like-GNU ├── sum.tests ├── tail.tests ├── tail │ ├── tail-n-works │ └── tail-works ├── tar.tests ├── tar.utf8.tar.bz2 ├── tar │ ├── tar-archives-multiple-files │ ├── tar-complains-about-missing-file │ ├── tar-demands-at-least-one-ctx │ ├── tar-demands-at-most-one-ctx │ ├── tar-extracts-all-subdirs │ ├── tar-extracts-file │ ├── tar-extracts-from-standard-input │ ├── tar-extracts-multiple-files │ ├── tar-extracts-to-standard-output │ ├── tar-handles-cz-options │ ├── tar-handles-empty-include-and-non-empty-exclude-list │ ├── tar-handles-exclude-and-extract-lists │ ├── tar-handles-multiple-X-options │ ├── tar-handles-nested-exclude │ ├── tar_with_link_with_size │ └── tar_with_prefix_fields ├── taskset.tests ├── tee │ ├── tee-appends-input │ └── tee-tees-input ├── test.tests ├── testing.sh ├── touch │ ├── touch-creates-file │ ├── touch-does-not-create-file │ └── touch-touches-files-after-non-existent-file ├── tr.tests ├── tr │ ├── tr-d-alnum-works │ ├── tr-d-works │ ├── tr-non-gnu │ ├── tr-rejects-wrong-class │ └── tr-works ├── true │ ├── true-is-silent │ └── true-returns-success ├── umlwrapper.sh ├── uncompress.tests ├── unexpand.tests ├── unexpand │ └── unexpand-works-like-GNU ├── uniq.tests ├── unlzma.tests ├── unlzma_issue_1.lzma ├── unlzma_issue_2.lzma ├── unzip.tests ├── unzip_bad_lzma_1.zip ├── unzip_bad_lzma_2.zip ├── uptime │ └── uptime-works ├── uuencode.tests ├── wc │ ├── wc-counts-all │ ├── wc-counts-characters │ ├── wc-counts-lines │ ├── wc-counts-words │ └── wc-prints-longest-line-length ├── wget │ ├── wget--O-overrides--P │ ├── wget-handles-empty-path │ ├── wget-retrieves-google-index │ └── wget-supports--P ├── which │ └── which-uses-default-path ├── xargs.tests └── xargs │ └── xargs-works └── util-linux ├── Config.in ├── Config.src ├── Kbuild ├── Kbuild.src ├── acpid.c ├── blkdiscard.c ├── blkid.c ├── blockdev.c ├── cal.c ├── chrt.c ├── dmesg.c ├── eject.c ├── fallocate.c ├── fatattr.c ├── fbset.c ├── fdformat.c ├── fdisk.c ├── fdisk_aix.c ├── fdisk_gpt.c ├── fdisk_osf.c ├── fdisk_sgi.c ├── fdisk_sun.c ├── findfs.c ├── flock.c ├── freeramdisk.c ├── fsck_minix.c ├── fsfreeze.c ├── fstrim.c ├── getopt.c ├── hexdump.c ├── hexdump_xxd.c ├── hwclock.c ├── ionice.c ├── ipcrm.c ├── ipcs.c ├── last.c ├── last_fancy.c ├── losetup.c ├── lspci.c ├── lsusb.c ├── mdev.c ├── mesg.c ├── minix.h ├── mkfs_ext2.c ├── mkfs_ext2.txt ├── mkfs_ext2_test.sh ├── mkfs_minix.c ├── mkfs_reiser.c ├── mkfs_vfat.c ├── mkswap.c ├── more.c ├── mount.c ├── mountpoint.c ├── nsenter.c ├── pivot_root.c ├── rdate.c ├── rdev.c ├── readprofile.c ├── renice.c ├── rev.c ├── rtcwake.c ├── script.c ├── scriptreplay.c ├── setarch.c ├── setpriv.c ├── setsid.c ├── swaponoff.c ├── switch_root.c ├── taskset.c ├── uevent.c ├── umount.c ├── unshare.c ├── volume_id ├── Config.in ├── Config.src ├── Kbuild ├── Kbuild.src ├── bcache.c ├── btrfs.c ├── cramfs.c ├── exfat.c ├── ext.c ├── f2fs.c ├── fat.c ├── get_devname.c ├── hfs.c ├── iso9660.c ├── jfs.c ├── lfs.c ├── linux_raid.c ├── linux_swap.c ├── luks.c ├── minix.c ├── nilfs.c ├── ntfs.c ├── ocfs2.c ├── reiserfs.c ├── romfs.c ├── squashfs.c ├── sysv.c ├── ubifs.c ├── udf.c ├── unused_highpoint.c ├── unused_hpfs.c ├── unused_isw_raid.c ├── unused_lsi_raid.c ├── unused_lvm.c ├── unused_mac.c ├── unused_msdos.c ├── unused_nvidia_raid.c ├── unused_promise_raid.c ├── unused_silicon_raid.c ├── unused_ufs.c ├── unused_via_raid.c ├── util.c ├── volume_id.c ├── volume_id_internal.h └── xfs.c └── wall.c /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hootan/BusyBox/HEAD/LICENSE -------------------------------------------------------------------------------- /busybox-v1.29.3/.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hootan/BusyBox/HEAD/busybox-v1.29.3/.config -------------------------------------------------------------------------------- /busybox-v1.29.3/AUTHORS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hootan/BusyBox/HEAD/busybox-v1.29.3/AUTHORS -------------------------------------------------------------------------------- /busybox-v1.29.3/INSTALL: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hootan/BusyBox/HEAD/busybox-v1.29.3/INSTALL -------------------------------------------------------------------------------- /busybox-v1.29.3/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hootan/BusyBox/HEAD/busybox-v1.29.3/LICENSE -------------------------------------------------------------------------------- /busybox-v1.29.3/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hootan/BusyBox/HEAD/busybox-v1.29.3/Makefile -------------------------------------------------------------------------------- /busybox-v1.29.3/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hootan/BusyBox/HEAD/busybox-v1.29.3/README -------------------------------------------------------------------------------- /busybox-v1.29.3/TODO: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hootan/BusyBox/HEAD/busybox-v1.29.3/TODO -------------------------------------------------------------------------------- /busybox-v1.29.3/examples/dnsd.conf: -------------------------------------------------------------------------------- 1 | thebox 192.168.1.5 2 | -------------------------------------------------------------------------------- /busybox-v1.29.3/include/NUM_APPLETS.h: -------------------------------------------------------------------------------- 1 | #define NUM_APPLETS 28 2 | -------------------------------------------------------------------------------- /busybox-v1.29.3/include/common_bufsiz.h.method: -------------------------------------------------------------------------------- 1 | std 2 | -------------------------------------------------------------------------------- /busybox-v1.29.3/include/config/MARKER: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /busybox-v1.29.3/include/config/acpid.h: -------------------------------------------------------------------------------- 1 | #undef CONFIG_ACPID 2 | -------------------------------------------------------------------------------- /busybox-v1.29.3/include/config/add/shell.h: -------------------------------------------------------------------------------- 1 | #undef CONFIG_ADD_SHELL 2 | -------------------------------------------------------------------------------- /busybox-v1.29.3/include/config/addgroup.h: -------------------------------------------------------------------------------- 1 | #undef CONFIG_ADDGROUP 2 | -------------------------------------------------------------------------------- /busybox-v1.29.3/include/config/adduser.h: -------------------------------------------------------------------------------- 1 | #undef CONFIG_ADDUSER 2 | -------------------------------------------------------------------------------- /busybox-v1.29.3/include/config/adjtimex.h: -------------------------------------------------------------------------------- 1 | #undef CONFIG_ADJTIMEX 2 | -------------------------------------------------------------------------------- /busybox-v1.29.3/include/config/ar.h: -------------------------------------------------------------------------------- 1 | #undef CONFIG_AR 2 | -------------------------------------------------------------------------------- /busybox-v1.29.3/include/config/arp.h: -------------------------------------------------------------------------------- 1 | #undef CONFIG_ARP 2 | -------------------------------------------------------------------------------- /busybox-v1.29.3/include/config/arping.h: -------------------------------------------------------------------------------- 1 | #undef CONFIG_ARPING 2 | -------------------------------------------------------------------------------- /busybox-v1.29.3/include/config/ash.h: -------------------------------------------------------------------------------- 1 | #undef CONFIG_ASH 2 | -------------------------------------------------------------------------------- /busybox-v1.29.3/include/config/ash/alias.h: -------------------------------------------------------------------------------- 1 | #undef CONFIG_ASH_ALIAS 2 | -------------------------------------------------------------------------------- /busybox-v1.29.3/include/config/ash/cmdcmd.h: -------------------------------------------------------------------------------- 1 | #undef CONFIG_ASH_CMDCMD 2 | -------------------------------------------------------------------------------- /busybox-v1.29.3/include/config/ash/echo.h: -------------------------------------------------------------------------------- 1 | #undef CONFIG_ASH_ECHO 2 | -------------------------------------------------------------------------------- /busybox-v1.29.3/include/config/ash/expand/prmt.h: -------------------------------------------------------------------------------- 1 | #undef CONFIG_ASH_EXPAND_PRMT 2 | -------------------------------------------------------------------------------- /busybox-v1.29.3/include/config/ash/getopts.h: -------------------------------------------------------------------------------- 1 | #undef CONFIG_ASH_GETOPTS 2 | -------------------------------------------------------------------------------- /busybox-v1.29.3/include/config/ash/help.h: -------------------------------------------------------------------------------- 1 | #undef CONFIG_ASH_HELP 2 | -------------------------------------------------------------------------------- /busybox-v1.29.3/include/config/ash/idle/timeout.h: -------------------------------------------------------------------------------- 1 | #undef CONFIG_ASH_IDLE_TIMEOUT 2 | -------------------------------------------------------------------------------- /busybox-v1.29.3/include/config/ash/internal/glob.h: -------------------------------------------------------------------------------- 1 | #undef CONFIG_ASH_INTERNAL_GLOB 2 | -------------------------------------------------------------------------------- /busybox-v1.29.3/include/config/ash/job/control.h: -------------------------------------------------------------------------------- 1 | #undef CONFIG_ASH_JOB_CONTROL 2 | -------------------------------------------------------------------------------- /busybox-v1.29.3/include/config/ash/mail.h: -------------------------------------------------------------------------------- 1 | #undef CONFIG_ASH_MAIL 2 | -------------------------------------------------------------------------------- /busybox-v1.29.3/include/config/ash/optimize/for/size.h: -------------------------------------------------------------------------------- 1 | #undef CONFIG_ASH_OPTIMIZE_FOR_SIZE 2 | -------------------------------------------------------------------------------- /busybox-v1.29.3/include/config/ash/printf.h: -------------------------------------------------------------------------------- 1 | #undef CONFIG_ASH_PRINTF 2 | -------------------------------------------------------------------------------- /busybox-v1.29.3/include/config/ash/random/support.h: -------------------------------------------------------------------------------- 1 | #undef CONFIG_ASH_RANDOM_SUPPORT 2 | -------------------------------------------------------------------------------- /busybox-v1.29.3/include/config/ash/test.h: -------------------------------------------------------------------------------- 1 | #undef CONFIG_ASH_TEST 2 | -------------------------------------------------------------------------------- /busybox-v1.29.3/include/config/awk.h: -------------------------------------------------------------------------------- 1 | #undef CONFIG_AWK 2 | -------------------------------------------------------------------------------- /busybox-v1.29.3/include/config/base64.h: -------------------------------------------------------------------------------- 1 | #undef CONFIG_BASE64 2 | -------------------------------------------------------------------------------- /busybox-v1.29.3/include/config/basename.h: -------------------------------------------------------------------------------- 1 | #undef CONFIG_BASENAME 2 | -------------------------------------------------------------------------------- /busybox-v1.29.3/include/config/bash/is/ash.h: -------------------------------------------------------------------------------- 1 | #undef CONFIG_BASH_IS_ASH 2 | -------------------------------------------------------------------------------- /busybox-v1.29.3/include/config/bash/is/hush.h: -------------------------------------------------------------------------------- 1 | #undef CONFIG_BASH_IS_HUSH 2 | -------------------------------------------------------------------------------- /busybox-v1.29.3/include/config/bash/is/none.h: -------------------------------------------------------------------------------- 1 | #define CONFIG_BASH_IS_NONE 1 2 | -------------------------------------------------------------------------------- /busybox-v1.29.3/include/config/bb/arch.h: -------------------------------------------------------------------------------- 1 | #undef CONFIG_BB_ARCH 2 | -------------------------------------------------------------------------------- /busybox-v1.29.3/include/config/bb/sysctl.h: -------------------------------------------------------------------------------- 1 | #undef CONFIG_BB_SYSCTL 2 | -------------------------------------------------------------------------------- /busybox-v1.29.3/include/config/beep.h: -------------------------------------------------------------------------------- 1 | #undef CONFIG_BEEP 2 | -------------------------------------------------------------------------------- /busybox-v1.29.3/include/config/blkdiscard.h: -------------------------------------------------------------------------------- 1 | #undef CONFIG_BLKDISCARD 2 | -------------------------------------------------------------------------------- /busybox-v1.29.3/include/config/blkid.h: -------------------------------------------------------------------------------- 1 | #undef CONFIG_BLKID 2 | -------------------------------------------------------------------------------- /busybox-v1.29.3/include/config/blockdev.h: -------------------------------------------------------------------------------- 1 | #undef CONFIG_BLOCKDEV 2 | -------------------------------------------------------------------------------- /busybox-v1.29.3/include/config/bootchartd.h: -------------------------------------------------------------------------------- 1 | #undef CONFIG_BOOTCHARTD 2 | -------------------------------------------------------------------------------- /busybox-v1.29.3/include/config/brctl.h: -------------------------------------------------------------------------------- 1 | #undef CONFIG_BRCTL 2 | -------------------------------------------------------------------------------- /busybox-v1.29.3/include/config/build/libbusybox.h: -------------------------------------------------------------------------------- 1 | #undef CONFIG_BUILD_LIBBUSYBOX 2 | -------------------------------------------------------------------------------- /busybox-v1.29.3/include/config/bunzip2.h: -------------------------------------------------------------------------------- 1 | #undef CONFIG_BUNZIP2 2 | -------------------------------------------------------------------------------- /busybox-v1.29.3/include/config/busybox.h: -------------------------------------------------------------------------------- 1 | #define CONFIG_BUSYBOX 1 2 | -------------------------------------------------------------------------------- /busybox-v1.29.3/include/config/bzcat.h: -------------------------------------------------------------------------------- 1 | #undef CONFIG_BZCAT 2 | -------------------------------------------------------------------------------- /busybox-v1.29.3/include/config/bzip2.h: -------------------------------------------------------------------------------- 1 | #undef CONFIG_BZIP2 2 | -------------------------------------------------------------------------------- /busybox-v1.29.3/include/config/bzip2/small.h: -------------------------------------------------------------------------------- 1 | #define CONFIG_BZIP2_SMALL 0 2 | -------------------------------------------------------------------------------- /busybox-v1.29.3/include/config/cal.h: -------------------------------------------------------------------------------- 1 | #undef CONFIG_CAL 2 | -------------------------------------------------------------------------------- /busybox-v1.29.3/include/config/cat.h: -------------------------------------------------------------------------------- 1 | #define CONFIG_CAT 1 2 | -------------------------------------------------------------------------------- /busybox-v1.29.3/include/config/chat.h: -------------------------------------------------------------------------------- 1 | #undef CONFIG_CHAT 2 | -------------------------------------------------------------------------------- /busybox-v1.29.3/include/config/chattr.h: -------------------------------------------------------------------------------- 1 | #undef CONFIG_CHATTR 2 | -------------------------------------------------------------------------------- /busybox-v1.29.3/include/config/chcon.h: -------------------------------------------------------------------------------- 1 | #undef CONFIG_CHCON 2 | -------------------------------------------------------------------------------- /busybox-v1.29.3/include/config/chgrp.h: -------------------------------------------------------------------------------- 1 | #define CONFIG_CHGRP 1 2 | -------------------------------------------------------------------------------- /busybox-v1.29.3/include/config/chmod.h: -------------------------------------------------------------------------------- 1 | #define CONFIG_CHMOD 1 2 | -------------------------------------------------------------------------------- /busybox-v1.29.3/include/config/chown.h: -------------------------------------------------------------------------------- 1 | #define CONFIG_CHOWN 1 2 | -------------------------------------------------------------------------------- /busybox-v1.29.3/include/config/chpasswd.h: -------------------------------------------------------------------------------- 1 | #undef CONFIG_CHPASSWD 2 | -------------------------------------------------------------------------------- /busybox-v1.29.3/include/config/chpst.h: -------------------------------------------------------------------------------- 1 | #undef CONFIG_CHPST 2 | -------------------------------------------------------------------------------- /busybox-v1.29.3/include/config/chroot.h: -------------------------------------------------------------------------------- 1 | #undef CONFIG_CHROOT 2 | -------------------------------------------------------------------------------- /busybox-v1.29.3/include/config/chrt.h: -------------------------------------------------------------------------------- 1 | #undef CONFIG_CHRT 2 | -------------------------------------------------------------------------------- /busybox-v1.29.3/include/config/chvt.h: -------------------------------------------------------------------------------- 1 | #undef CONFIG_CHVT 2 | -------------------------------------------------------------------------------- /busybox-v1.29.3/include/config/cksum.h: -------------------------------------------------------------------------------- 1 | #undef CONFIG_CKSUM 2 | -------------------------------------------------------------------------------- /busybox-v1.29.3/include/config/clear.h: -------------------------------------------------------------------------------- 1 | #undef CONFIG_CLEAR 2 | -------------------------------------------------------------------------------- /busybox-v1.29.3/include/config/cmp.h: -------------------------------------------------------------------------------- 1 | #undef CONFIG_CMP 2 | -------------------------------------------------------------------------------- /busybox-v1.29.3/include/config/comm.h: -------------------------------------------------------------------------------- 1 | #undef CONFIG_COMM 2 | -------------------------------------------------------------------------------- /busybox-v1.29.3/include/config/conspy.h: -------------------------------------------------------------------------------- 1 | #undef CONFIG_CONSPY 2 | -------------------------------------------------------------------------------- /busybox-v1.29.3/include/config/cp.h: -------------------------------------------------------------------------------- 1 | #define CONFIG_CP 1 2 | -------------------------------------------------------------------------------- /busybox-v1.29.3/include/config/cpio.h: -------------------------------------------------------------------------------- 1 | #undef CONFIG_CPIO 2 | -------------------------------------------------------------------------------- /busybox-v1.29.3/include/config/crond.h: -------------------------------------------------------------------------------- 1 | #undef CONFIG_CROND 2 | -------------------------------------------------------------------------------- /busybox-v1.29.3/include/config/crontab.h: -------------------------------------------------------------------------------- 1 | #undef CONFIG_CRONTAB 2 | -------------------------------------------------------------------------------- /busybox-v1.29.3/include/config/cryptpw.h: -------------------------------------------------------------------------------- 1 | #undef CONFIG_CRYPTPW 2 | -------------------------------------------------------------------------------- /busybox-v1.29.3/include/config/cttyhack.h: -------------------------------------------------------------------------------- 1 | #undef CONFIG_CTTYHACK 2 | -------------------------------------------------------------------------------- /busybox-v1.29.3/include/config/cut.h: -------------------------------------------------------------------------------- 1 | #define CONFIG_CUT 1 2 | -------------------------------------------------------------------------------- /busybox-v1.29.3/include/config/date.h: -------------------------------------------------------------------------------- 1 | #undef CONFIG_DATE 2 | -------------------------------------------------------------------------------- /busybox-v1.29.3/include/config/dc.h: -------------------------------------------------------------------------------- 1 | #undef CONFIG_DC 2 | -------------------------------------------------------------------------------- /busybox-v1.29.3/include/config/dd.h: -------------------------------------------------------------------------------- 1 | #define CONFIG_DD 1 2 | -------------------------------------------------------------------------------- /busybox-v1.29.3/include/config/deallocvt.h: -------------------------------------------------------------------------------- 1 | #undef CONFIG_DEALLOCVT 2 | -------------------------------------------------------------------------------- /busybox-v1.29.3/include/config/debug.h: -------------------------------------------------------------------------------- 1 | #undef CONFIG_DEBUG 2 | -------------------------------------------------------------------------------- /busybox-v1.29.3/include/config/debug/pessimize.h: -------------------------------------------------------------------------------- 1 | #undef CONFIG_DEBUG_PESSIMIZE 2 | -------------------------------------------------------------------------------- /busybox-v1.29.3/include/config/debug/sanitize.h: -------------------------------------------------------------------------------- 1 | #undef CONFIG_DEBUG_SANITIZE 2 | -------------------------------------------------------------------------------- /busybox-v1.29.3/include/config/default/depmod/file.h: -------------------------------------------------------------------------------- 1 | #define CONFIG_DEFAULT_DEPMOD_FILE "" 2 | -------------------------------------------------------------------------------- /busybox-v1.29.3/include/config/default/modules/dir.h: -------------------------------------------------------------------------------- 1 | #define CONFIG_DEFAULT_MODULES_DIR "" 2 | -------------------------------------------------------------------------------- /busybox-v1.29.3/include/config/default/setfont/dir.h: -------------------------------------------------------------------------------- 1 | #define CONFIG_DEFAULT_SETFONT_DIR "" 2 | -------------------------------------------------------------------------------- /busybox-v1.29.3/include/config/delgroup.h: -------------------------------------------------------------------------------- 1 | #undef CONFIG_DELGROUP 2 | -------------------------------------------------------------------------------- /busybox-v1.29.3/include/config/deluser.h: -------------------------------------------------------------------------------- 1 | #undef CONFIG_DELUSER 2 | -------------------------------------------------------------------------------- /busybox-v1.29.3/include/config/depmod.h: -------------------------------------------------------------------------------- 1 | #undef CONFIG_DEPMOD 2 | -------------------------------------------------------------------------------- /busybox-v1.29.3/include/config/desktop.h: -------------------------------------------------------------------------------- 1 | #define CONFIG_DESKTOP 1 2 | -------------------------------------------------------------------------------- /busybox-v1.29.3/include/config/devfsd.h: -------------------------------------------------------------------------------- 1 | #undef CONFIG_DEVFSD 2 | -------------------------------------------------------------------------------- /busybox-v1.29.3/include/config/devfsd/fg/np.h: -------------------------------------------------------------------------------- 1 | #undef CONFIG_DEVFSD_FG_NP 2 | -------------------------------------------------------------------------------- /busybox-v1.29.3/include/config/devfsd/modload.h: -------------------------------------------------------------------------------- 1 | #undef CONFIG_DEVFSD_MODLOAD 2 | -------------------------------------------------------------------------------- /busybox-v1.29.3/include/config/devfsd/verbose.h: -------------------------------------------------------------------------------- 1 | #undef CONFIG_DEVFSD_VERBOSE 2 | -------------------------------------------------------------------------------- /busybox-v1.29.3/include/config/devmem.h: -------------------------------------------------------------------------------- 1 | #undef CONFIG_DEVMEM 2 | -------------------------------------------------------------------------------- /busybox-v1.29.3/include/config/df.h: -------------------------------------------------------------------------------- 1 | #undef CONFIG_DF 2 | -------------------------------------------------------------------------------- /busybox-v1.29.3/include/config/dhcpd/leases/file.h: -------------------------------------------------------------------------------- 1 | #define CONFIG_DHCPD_LEASES_FILE "" 2 | -------------------------------------------------------------------------------- /busybox-v1.29.3/include/config/dhcprelay.h: -------------------------------------------------------------------------------- 1 | #undef CONFIG_DHCPRELAY 2 | -------------------------------------------------------------------------------- /busybox-v1.29.3/include/config/diff.h: -------------------------------------------------------------------------------- 1 | #undef CONFIG_DIFF 2 | -------------------------------------------------------------------------------- /busybox-v1.29.3/include/config/dirname.h: -------------------------------------------------------------------------------- 1 | #undef CONFIG_DIRNAME 2 | -------------------------------------------------------------------------------- /busybox-v1.29.3/include/config/dmalloc.h: -------------------------------------------------------------------------------- 1 | #undef CONFIG_DMALLOC 2 | -------------------------------------------------------------------------------- /busybox-v1.29.3/include/config/dmesg.h: -------------------------------------------------------------------------------- 1 | #undef CONFIG_DMESG 2 | -------------------------------------------------------------------------------- /busybox-v1.29.3/include/config/dnsd.h: -------------------------------------------------------------------------------- 1 | #undef CONFIG_DNSD 2 | -------------------------------------------------------------------------------- /busybox-v1.29.3/include/config/dnsdomainname.h: -------------------------------------------------------------------------------- 1 | #undef CONFIG_DNSDOMAINNAME 2 | -------------------------------------------------------------------------------- /busybox-v1.29.3/include/config/dos2unix.h: -------------------------------------------------------------------------------- 1 | #undef CONFIG_DOS2UNIX 2 | -------------------------------------------------------------------------------- /busybox-v1.29.3/include/config/dpkg.h: -------------------------------------------------------------------------------- 1 | #undef CONFIG_DPKG 2 | -------------------------------------------------------------------------------- /busybox-v1.29.3/include/config/dpkg/deb.h: -------------------------------------------------------------------------------- 1 | #undef CONFIG_DPKG_DEB 2 | -------------------------------------------------------------------------------- /busybox-v1.29.3/include/config/du.h: -------------------------------------------------------------------------------- 1 | #define CONFIG_DU 1 2 | -------------------------------------------------------------------------------- /busybox-v1.29.3/include/config/dumpkmap.h: -------------------------------------------------------------------------------- 1 | #undef CONFIG_DUMPKMAP 2 | -------------------------------------------------------------------------------- /busybox-v1.29.3/include/config/dumpleases.h: -------------------------------------------------------------------------------- 1 | #undef CONFIG_DUMPLEASES 2 | -------------------------------------------------------------------------------- /busybox-v1.29.3/include/config/echo.h: -------------------------------------------------------------------------------- 1 | #undef CONFIG_ECHO 2 | -------------------------------------------------------------------------------- /busybox-v1.29.3/include/config/ed.h: -------------------------------------------------------------------------------- 1 | #undef CONFIG_ED 2 | -------------------------------------------------------------------------------- /busybox-v1.29.3/include/config/efence.h: -------------------------------------------------------------------------------- 1 | #undef CONFIG_EFENCE 2 | -------------------------------------------------------------------------------- /busybox-v1.29.3/include/config/egrep.h: -------------------------------------------------------------------------------- 1 | #undef CONFIG_EGREP 2 | -------------------------------------------------------------------------------- /busybox-v1.29.3/include/config/eject.h: -------------------------------------------------------------------------------- 1 | #undef CONFIG_EJECT 2 | -------------------------------------------------------------------------------- /busybox-v1.29.3/include/config/env.h: -------------------------------------------------------------------------------- 1 | #undef CONFIG_ENV 2 | -------------------------------------------------------------------------------- /busybox-v1.29.3/include/config/envdir.h: -------------------------------------------------------------------------------- 1 | #undef CONFIG_ENVDIR 2 | -------------------------------------------------------------------------------- /busybox-v1.29.3/include/config/envuidgid.h: -------------------------------------------------------------------------------- 1 | #undef CONFIG_ENVUIDGID 2 | -------------------------------------------------------------------------------- /busybox-v1.29.3/include/config/ether/wake.h: -------------------------------------------------------------------------------- 1 | #undef CONFIG_ETHER_WAKE 2 | -------------------------------------------------------------------------------- /busybox-v1.29.3/include/config/expand.h: -------------------------------------------------------------------------------- 1 | #undef CONFIG_EXPAND 2 | -------------------------------------------------------------------------------- /busybox-v1.29.3/include/config/expr.h: -------------------------------------------------------------------------------- 1 | #undef CONFIG_EXPR 2 | -------------------------------------------------------------------------------- /busybox-v1.29.3/include/config/expr/math/support/64.h: -------------------------------------------------------------------------------- 1 | #undef CONFIG_EXPR_MATH_SUPPORT_64 2 | -------------------------------------------------------------------------------- /busybox-v1.29.3/include/config/extra/compat.h: -------------------------------------------------------------------------------- 1 | #define CONFIG_EXTRA_COMPAT 1 2 | -------------------------------------------------------------------------------- /busybox-v1.29.3/include/config/extra/ldlibs.h: -------------------------------------------------------------------------------- 1 | #define CONFIG_EXTRA_LDLIBS "m c gcc" 2 | -------------------------------------------------------------------------------- /busybox-v1.29.3/include/config/factor.h: -------------------------------------------------------------------------------- 1 | #undef CONFIG_FACTOR 2 | -------------------------------------------------------------------------------- /busybox-v1.29.3/include/config/fakeidentd.h: -------------------------------------------------------------------------------- 1 | #undef CONFIG_FAKEIDENTD 2 | -------------------------------------------------------------------------------- /busybox-v1.29.3/include/config/fallocate.h: -------------------------------------------------------------------------------- 1 | #undef CONFIG_FALLOCATE 2 | -------------------------------------------------------------------------------- /busybox-v1.29.3/include/config/false.h: -------------------------------------------------------------------------------- 1 | #undef CONFIG_FALSE 2 | -------------------------------------------------------------------------------- /busybox-v1.29.3/include/config/fatattr.h: -------------------------------------------------------------------------------- 1 | #undef CONFIG_FATATTR 2 | -------------------------------------------------------------------------------- /busybox-v1.29.3/include/config/fbset.h: -------------------------------------------------------------------------------- 1 | #undef CONFIG_FBSET 2 | -------------------------------------------------------------------------------- /busybox-v1.29.3/include/config/fbsplash.h: -------------------------------------------------------------------------------- 1 | #undef CONFIG_FBSPLASH 2 | -------------------------------------------------------------------------------- /busybox-v1.29.3/include/config/fdflush.h: -------------------------------------------------------------------------------- 1 | #undef CONFIG_FDFLUSH 2 | -------------------------------------------------------------------------------- /busybox-v1.29.3/include/config/fdformat.h: -------------------------------------------------------------------------------- 1 | #undef CONFIG_FDFORMAT 2 | -------------------------------------------------------------------------------- /busybox-v1.29.3/include/config/fdisk.h: -------------------------------------------------------------------------------- 1 | #undef CONFIG_FDISK 2 | -------------------------------------------------------------------------------- /busybox-v1.29.3/include/config/feature/2/4/modules.h: -------------------------------------------------------------------------------- 1 | #undef CONFIG_FEATURE_2_4_MODULES 2 | -------------------------------------------------------------------------------- /busybox-v1.29.3/include/config/feature/acpid/compat.h: -------------------------------------------------------------------------------- 1 | #undef CONFIG_FEATURE_ACPID_COMPAT 2 | -------------------------------------------------------------------------------- /busybox-v1.29.3/include/config/feature/aix/label.h: -------------------------------------------------------------------------------- 1 | #undef CONFIG_FEATURE_AIX_LABEL 2 | -------------------------------------------------------------------------------- /busybox-v1.29.3/include/config/feature/allow/exec.h: -------------------------------------------------------------------------------- 1 | #undef CONFIG_FEATURE_ALLOW_EXEC 2 | -------------------------------------------------------------------------------- /busybox-v1.29.3/include/config/feature/ar/create.h: -------------------------------------------------------------------------------- 1 | #undef CONFIG_FEATURE_AR_CREATE 2 | -------------------------------------------------------------------------------- /busybox-v1.29.3/include/config/feature/awk/libm.h: -------------------------------------------------------------------------------- 1 | #undef CONFIG_FEATURE_AWK_LIBM 2 | -------------------------------------------------------------------------------- /busybox-v1.29.3/include/config/feature/beep/freq.h: -------------------------------------------------------------------------------- 1 | #define CONFIG_FEATURE_BEEP_FREQ 0 2 | -------------------------------------------------------------------------------- /busybox-v1.29.3/include/config/feature/blkid/type.h: -------------------------------------------------------------------------------- 1 | #undef CONFIG_FEATURE_BLKID_TYPE 2 | -------------------------------------------------------------------------------- /busybox-v1.29.3/include/config/feature/brctl/fancy.h: -------------------------------------------------------------------------------- 1 | #undef CONFIG_FEATURE_BRCTL_FANCY 2 | -------------------------------------------------------------------------------- /busybox-v1.29.3/include/config/feature/brctl/show.h: -------------------------------------------------------------------------------- 1 | #undef CONFIG_FEATURE_BRCTL_SHOW 2 | -------------------------------------------------------------------------------- /busybox-v1.29.3/include/config/feature/call/telinit.h: -------------------------------------------------------------------------------- 1 | #undef CONFIG_FEATURE_CALL_TELINIT 2 | -------------------------------------------------------------------------------- /busybox-v1.29.3/include/config/feature/catn.h: -------------------------------------------------------------------------------- 1 | #undef CONFIG_FEATURE_CATN 2 | -------------------------------------------------------------------------------- /busybox-v1.29.3/include/config/feature/catv.h: -------------------------------------------------------------------------------- 1 | #undef CONFIG_FEATURE_CATV 2 | -------------------------------------------------------------------------------- /busybox-v1.29.3/include/config/feature/chat/clr/abort.h: -------------------------------------------------------------------------------- 1 | #undef CONFIG_FEATURE_CHAT_CLR_ABORT 2 | -------------------------------------------------------------------------------- /busybox-v1.29.3/include/config/feature/chat/nofail.h: -------------------------------------------------------------------------------- 1 | #undef CONFIG_FEATURE_CHAT_NOFAIL 2 | -------------------------------------------------------------------------------- /busybox-v1.29.3/include/config/feature/chat/tty/hifi.h: -------------------------------------------------------------------------------- 1 | #undef CONFIG_FEATURE_CHAT_TTY_HIFI 2 | -------------------------------------------------------------------------------- /busybox-v1.29.3/include/config/feature/check/names.h: -------------------------------------------------------------------------------- 1 | #undef CONFIG_FEATURE_CHECK_NAMES 2 | -------------------------------------------------------------------------------- /busybox-v1.29.3/include/config/feature/clean/up.h: -------------------------------------------------------------------------------- 1 | #undef CONFIG_FEATURE_CLEAN_UP 2 | -------------------------------------------------------------------------------- /busybox-v1.29.3/include/config/feature/compress/usage.h: -------------------------------------------------------------------------------- 1 | #undef CONFIG_FEATURE_COMPRESS_USAGE 2 | -------------------------------------------------------------------------------- /busybox-v1.29.3/include/config/feature/copybuf/kb.h: -------------------------------------------------------------------------------- 1 | #define CONFIG_FEATURE_COPYBUF_KB 256 2 | -------------------------------------------------------------------------------- /busybox-v1.29.3/include/config/feature/cpio/o.h: -------------------------------------------------------------------------------- 1 | #undef CONFIG_FEATURE_CPIO_O 2 | -------------------------------------------------------------------------------- /busybox-v1.29.3/include/config/feature/cpio/p.h: -------------------------------------------------------------------------------- 1 | #undef CONFIG_FEATURE_CPIO_P 2 | -------------------------------------------------------------------------------- /busybox-v1.29.3/include/config/feature/crond/d.h: -------------------------------------------------------------------------------- 1 | #undef CONFIG_FEATURE_CROND_D 2 | -------------------------------------------------------------------------------- /busybox-v1.29.3/include/config/feature/crond/dir.h: -------------------------------------------------------------------------------- 1 | #define CONFIG_FEATURE_CROND_DIR "" 2 | -------------------------------------------------------------------------------- /busybox-v1.29.3/include/config/feature/date/compat.h: -------------------------------------------------------------------------------- 1 | #undef CONFIG_FEATURE_DATE_COMPAT 2 | -------------------------------------------------------------------------------- /busybox-v1.29.3/include/config/feature/date/isofmt.h: -------------------------------------------------------------------------------- 1 | #undef CONFIG_FEATURE_DATE_ISOFMT 2 | -------------------------------------------------------------------------------- /busybox-v1.29.3/include/config/feature/date/nano.h: -------------------------------------------------------------------------------- 1 | #undef CONFIG_FEATURE_DATE_NANO 2 | -------------------------------------------------------------------------------- /busybox-v1.29.3/include/config/feature/date/set.h: -------------------------------------------------------------------------------- 1 | #undef CONFIG_FEATURE_DATE_SET 2 | -------------------------------------------------------------------------------- /busybox-v1.29.3/include/config/feature/dc/libm.h: -------------------------------------------------------------------------------- 1 | #undef CONFIG_FEATURE_DC_LIBM 2 | -------------------------------------------------------------------------------- /busybox-v1.29.3/include/config/feature/dd/ibs/obs.h: -------------------------------------------------------------------------------- 1 | #undef CONFIG_FEATURE_DD_IBS_OBS 2 | -------------------------------------------------------------------------------- /busybox-v1.29.3/include/config/feature/dd/status.h: -------------------------------------------------------------------------------- 1 | #undef CONFIG_FEATURE_DD_STATUS 2 | -------------------------------------------------------------------------------- /busybox-v1.29.3/include/config/feature/devfs.h: -------------------------------------------------------------------------------- 1 | #undef CONFIG_FEATURE_DEVFS 2 | -------------------------------------------------------------------------------- /busybox-v1.29.3/include/config/feature/devpts.h: -------------------------------------------------------------------------------- 1 | #undef CONFIG_FEATURE_DEVPTS 2 | -------------------------------------------------------------------------------- /busybox-v1.29.3/include/config/feature/df/fancy.h: -------------------------------------------------------------------------------- 1 | #undef CONFIG_FEATURE_DF_FANCY 2 | -------------------------------------------------------------------------------- /busybox-v1.29.3/include/config/feature/diff/dir.h: -------------------------------------------------------------------------------- 1 | #undef CONFIG_FEATURE_DIFF_DIR 2 | -------------------------------------------------------------------------------- /busybox-v1.29.3/include/config/feature/dmesg/pretty.h: -------------------------------------------------------------------------------- 1 | #undef CONFIG_FEATURE_DMESG_PRETTY 2 | -------------------------------------------------------------------------------- /busybox-v1.29.3/include/config/feature/editing.h: -------------------------------------------------------------------------------- 1 | #undef CONFIG_FEATURE_EDITING 2 | -------------------------------------------------------------------------------- /busybox-v1.29.3/include/config/feature/editing/vi.h: -------------------------------------------------------------------------------- 1 | #undef CONFIG_FEATURE_EDITING_VI 2 | -------------------------------------------------------------------------------- /busybox-v1.29.3/include/config/feature/editing/winch.h: -------------------------------------------------------------------------------- 1 | #undef CONFIG_FEATURE_EDITING_WINCH 2 | -------------------------------------------------------------------------------- /busybox-v1.29.3/include/config/feature/eject/scsi.h: -------------------------------------------------------------------------------- 1 | #undef CONFIG_FEATURE_EJECT_SCSI 2 | -------------------------------------------------------------------------------- /busybox-v1.29.3/include/config/feature/etc/networks.h: -------------------------------------------------------------------------------- 1 | #undef CONFIG_FEATURE_ETC_NETWORKS 2 | -------------------------------------------------------------------------------- /busybox-v1.29.3/include/config/feature/etc/services.h: -------------------------------------------------------------------------------- 1 | #undef CONFIG_FEATURE_ETC_SERVICES 2 | -------------------------------------------------------------------------------- /busybox-v1.29.3/include/config/feature/fancy/echo.h: -------------------------------------------------------------------------------- 1 | #undef CONFIG_FEATURE_FANCY_ECHO 2 | -------------------------------------------------------------------------------- /busybox-v1.29.3/include/config/feature/fancy/head.h: -------------------------------------------------------------------------------- 1 | #undef CONFIG_FEATURE_FANCY_HEAD 2 | -------------------------------------------------------------------------------- /busybox-v1.29.3/include/config/feature/fancy/ping.h: -------------------------------------------------------------------------------- 1 | #undef CONFIG_FEATURE_FANCY_PING 2 | -------------------------------------------------------------------------------- /busybox-v1.29.3/include/config/feature/fancy/sleep.h: -------------------------------------------------------------------------------- 1 | #undef CONFIG_FEATURE_FANCY_SLEEP 2 | -------------------------------------------------------------------------------- /busybox-v1.29.3/include/config/feature/fancy/tail.h: -------------------------------------------------------------------------------- 1 | #undef CONFIG_FEATURE_FANCY_TAIL 2 | -------------------------------------------------------------------------------- /busybox-v1.29.3/include/config/feature/fast/top.h: -------------------------------------------------------------------------------- 1 | #define CONFIG_FEATURE_FAST_TOP 1 2 | -------------------------------------------------------------------------------- /busybox-v1.29.3/include/config/feature/fbset/fancy.h: -------------------------------------------------------------------------------- 1 | #undef CONFIG_FEATURE_FBSET_FANCY 2 | -------------------------------------------------------------------------------- /busybox-v1.29.3/include/config/feature/fbset/readmode.h: -------------------------------------------------------------------------------- 1 | #undef CONFIG_FEATURE_FBSET_READMODE 2 | -------------------------------------------------------------------------------- /busybox-v1.29.3/include/config/feature/fdisk/advanced.h: -------------------------------------------------------------------------------- 1 | #undef CONFIG_FEATURE_FDISK_ADVANCED 2 | -------------------------------------------------------------------------------- /busybox-v1.29.3/include/config/feature/fdisk/writable.h: -------------------------------------------------------------------------------- 1 | #undef CONFIG_FEATURE_FDISK_WRITABLE 2 | -------------------------------------------------------------------------------- /busybox-v1.29.3/include/config/feature/find/context.h: -------------------------------------------------------------------------------- 1 | #undef CONFIG_FEATURE_FIND_CONTEXT 2 | -------------------------------------------------------------------------------- /busybox-v1.29.3/include/config/feature/find/delete.h: -------------------------------------------------------------------------------- 1 | #undef CONFIG_FEATURE_FIND_DELETE 2 | -------------------------------------------------------------------------------- /busybox-v1.29.3/include/config/feature/find/depth.h: -------------------------------------------------------------------------------- 1 | #undef CONFIG_FEATURE_FIND_DEPTH 2 | -------------------------------------------------------------------------------- /busybox-v1.29.3/include/config/feature/find/exec.h: -------------------------------------------------------------------------------- 1 | #undef CONFIG_FEATURE_FIND_EXEC 2 | -------------------------------------------------------------------------------- /busybox-v1.29.3/include/config/feature/find/exec/plus.h: -------------------------------------------------------------------------------- 1 | #undef CONFIG_FEATURE_FIND_EXEC_PLUS 2 | -------------------------------------------------------------------------------- /busybox-v1.29.3/include/config/feature/find/group.h: -------------------------------------------------------------------------------- 1 | #undef CONFIG_FEATURE_FIND_GROUP 2 | -------------------------------------------------------------------------------- /busybox-v1.29.3/include/config/feature/find/inum.h: -------------------------------------------------------------------------------- 1 | #undef CONFIG_FEATURE_FIND_INUM 2 | -------------------------------------------------------------------------------- /busybox-v1.29.3/include/config/feature/find/links.h: -------------------------------------------------------------------------------- 1 | #undef CONFIG_FEATURE_FIND_LINKS 2 | -------------------------------------------------------------------------------- /busybox-v1.29.3/include/config/feature/find/maxdepth.h: -------------------------------------------------------------------------------- 1 | #undef CONFIG_FEATURE_FIND_MAXDEPTH 2 | -------------------------------------------------------------------------------- /busybox-v1.29.3/include/config/feature/find/mmin.h: -------------------------------------------------------------------------------- 1 | #undef CONFIG_FEATURE_FIND_MMIN 2 | -------------------------------------------------------------------------------- /busybox-v1.29.3/include/config/feature/find/mtime.h: -------------------------------------------------------------------------------- 1 | #undef CONFIG_FEATURE_FIND_MTIME 2 | -------------------------------------------------------------------------------- /busybox-v1.29.3/include/config/feature/find/newer.h: -------------------------------------------------------------------------------- 1 | #undef CONFIG_FEATURE_FIND_NEWER 2 | -------------------------------------------------------------------------------- /busybox-v1.29.3/include/config/feature/find/not.h: -------------------------------------------------------------------------------- 1 | #undef CONFIG_FEATURE_FIND_NOT 2 | -------------------------------------------------------------------------------- /busybox-v1.29.3/include/config/feature/find/paren.h: -------------------------------------------------------------------------------- 1 | #undef CONFIG_FEATURE_FIND_PAREN 2 | -------------------------------------------------------------------------------- /busybox-v1.29.3/include/config/feature/find/path.h: -------------------------------------------------------------------------------- 1 | #undef CONFIG_FEATURE_FIND_PATH 2 | -------------------------------------------------------------------------------- /busybox-v1.29.3/include/config/feature/find/perm.h: -------------------------------------------------------------------------------- 1 | #undef CONFIG_FEATURE_FIND_PERM 2 | -------------------------------------------------------------------------------- /busybox-v1.29.3/include/config/feature/find/print0.h: -------------------------------------------------------------------------------- 1 | #undef CONFIG_FEATURE_FIND_PRINT0 2 | -------------------------------------------------------------------------------- /busybox-v1.29.3/include/config/feature/find/prune.h: -------------------------------------------------------------------------------- 1 | #undef CONFIG_FEATURE_FIND_PRUNE 2 | -------------------------------------------------------------------------------- /busybox-v1.29.3/include/config/feature/find/regex.h: -------------------------------------------------------------------------------- 1 | #undef CONFIG_FEATURE_FIND_REGEX 2 | -------------------------------------------------------------------------------- /busybox-v1.29.3/include/config/feature/find/size.h: -------------------------------------------------------------------------------- 1 | #undef CONFIG_FEATURE_FIND_SIZE 2 | -------------------------------------------------------------------------------- /busybox-v1.29.3/include/config/feature/find/type.h: -------------------------------------------------------------------------------- 1 | #undef CONFIG_FEATURE_FIND_TYPE 2 | -------------------------------------------------------------------------------- /busybox-v1.29.3/include/config/feature/find/user.h: -------------------------------------------------------------------------------- 1 | #undef CONFIG_FEATURE_FIND_USER 2 | -------------------------------------------------------------------------------- /busybox-v1.29.3/include/config/feature/find/xdev.h: -------------------------------------------------------------------------------- 1 | #undef CONFIG_FEATURE_FIND_XDEV 2 | -------------------------------------------------------------------------------- /busybox-v1.29.3/include/config/feature/float/sleep.h: -------------------------------------------------------------------------------- 1 | #undef CONFIG_FEATURE_FLOAT_SLEEP 2 | -------------------------------------------------------------------------------- /busybox-v1.29.3/include/config/feature/ftpd/write.h: -------------------------------------------------------------------------------- 1 | #undef CONFIG_FEATURE_FTPD_WRITE 2 | -------------------------------------------------------------------------------- /busybox-v1.29.3/include/config/feature/getopt/long.h: -------------------------------------------------------------------------------- 1 | #undef CONFIG_FEATURE_GETOPT_LONG 2 | -------------------------------------------------------------------------------- /busybox-v1.29.3/include/config/feature/gpt/label.h: -------------------------------------------------------------------------------- 1 | #undef CONFIG_FEATURE_GPT_LABEL 2 | -------------------------------------------------------------------------------- /busybox-v1.29.3/include/config/feature/grep/context.h: -------------------------------------------------------------------------------- 1 | #undef CONFIG_FEATURE_GREP_CONTEXT 2 | -------------------------------------------------------------------------------- /busybox-v1.29.3/include/config/feature/gzip/decompress.h: -------------------------------------------------------------------------------- 1 | #undef CONFIG_FEATURE_GZIP_DECOMPRESS 2 | -------------------------------------------------------------------------------- /busybox-v1.29.3/include/config/feature/gzip/levels.h: -------------------------------------------------------------------------------- 1 | #undef CONFIG_FEATURE_GZIP_LEVELS 2 | -------------------------------------------------------------------------------- /busybox-v1.29.3/include/config/feature/hexdump/reverse.h: -------------------------------------------------------------------------------- 1 | #undef CONFIG_FEATURE_HEXDUMP_REVERSE 2 | -------------------------------------------------------------------------------- /busybox-v1.29.3/include/config/feature/httpd/auth/md5.h: -------------------------------------------------------------------------------- 1 | #undef CONFIG_FEATURE_HTTPD_AUTH_MD5 2 | -------------------------------------------------------------------------------- /busybox-v1.29.3/include/config/feature/httpd/cgi.h: -------------------------------------------------------------------------------- 1 | #undef CONFIG_FEATURE_HTTPD_CGI 2 | -------------------------------------------------------------------------------- /busybox-v1.29.3/include/config/feature/httpd/gzip.h: -------------------------------------------------------------------------------- 1 | #undef CONFIG_FEATURE_HTTPD_GZIP 2 | -------------------------------------------------------------------------------- /busybox-v1.29.3/include/config/feature/httpd/proxy.h: -------------------------------------------------------------------------------- 1 | #undef CONFIG_FEATURE_HTTPD_PROXY 2 | -------------------------------------------------------------------------------- /busybox-v1.29.3/include/config/feature/httpd/ranges.h: -------------------------------------------------------------------------------- 1 | #undef CONFIG_FEATURE_HTTPD_RANGES 2 | -------------------------------------------------------------------------------- /busybox-v1.29.3/include/config/feature/httpd/setuid.h: -------------------------------------------------------------------------------- 1 | #undef CONFIG_FEATURE_HTTPD_SETUID 2 | -------------------------------------------------------------------------------- /busybox-v1.29.3/include/config/feature/hwib.h: -------------------------------------------------------------------------------- 1 | #undef CONFIG_FEATURE_HWIB 2 | -------------------------------------------------------------------------------- /busybox-v1.29.3/include/config/feature/ifupdown/ip.h: -------------------------------------------------------------------------------- 1 | #undef CONFIG_FEATURE_IFUPDOWN_IP 2 | -------------------------------------------------------------------------------- /busybox-v1.29.3/include/config/feature/ifupdown/ipv4.h: -------------------------------------------------------------------------------- 1 | #undef CONFIG_FEATURE_IFUPDOWN_IPV4 2 | -------------------------------------------------------------------------------- /busybox-v1.29.3/include/config/feature/ifupdown/ipv6.h: -------------------------------------------------------------------------------- 1 | #undef CONFIG_FEATURE_IFUPDOWN_IPV6 2 | -------------------------------------------------------------------------------- /busybox-v1.29.3/include/config/feature/individual.h: -------------------------------------------------------------------------------- 1 | #undef CONFIG_FEATURE_INDIVIDUAL 2 | -------------------------------------------------------------------------------- /busybox-v1.29.3/include/config/feature/inetd/rpc.h: -------------------------------------------------------------------------------- 1 | #undef CONFIG_FEATURE_INETD_RPC 2 | -------------------------------------------------------------------------------- /busybox-v1.29.3/include/config/feature/init/coredumps.h: -------------------------------------------------------------------------------- 1 | #undef CONFIG_FEATURE_INIT_COREDUMPS 2 | -------------------------------------------------------------------------------- /busybox-v1.29.3/include/config/feature/init/quiet.h: -------------------------------------------------------------------------------- 1 | #undef CONFIG_FEATURE_INIT_QUIET 2 | -------------------------------------------------------------------------------- /busybox-v1.29.3/include/config/feature/init/sctty.h: -------------------------------------------------------------------------------- 1 | #undef CONFIG_FEATURE_INIT_SCTTY 2 | -------------------------------------------------------------------------------- /busybox-v1.29.3/include/config/feature/init/syslog.h: -------------------------------------------------------------------------------- 1 | #undef CONFIG_FEATURE_INIT_SYSLOG 2 | -------------------------------------------------------------------------------- /busybox-v1.29.3/include/config/feature/insmod/load/map.h: -------------------------------------------------------------------------------- 1 | #undef CONFIG_FEATURE_INSMOD_LOAD_MAP 2 | -------------------------------------------------------------------------------- /busybox-v1.29.3/include/config/feature/insmod/try/mmap.h: -------------------------------------------------------------------------------- 1 | #undef CONFIG_FEATURE_INSMOD_TRY_MMAP 2 | -------------------------------------------------------------------------------- /busybox-v1.29.3/include/config/feature/installer.h: -------------------------------------------------------------------------------- 1 | #define CONFIG_FEATURE_INSTALLER 1 2 | -------------------------------------------------------------------------------- /busybox-v1.29.3/include/config/feature/ip/address.h: -------------------------------------------------------------------------------- 1 | #undef CONFIG_FEATURE_IP_ADDRESS 2 | -------------------------------------------------------------------------------- /busybox-v1.29.3/include/config/feature/ip/link.h: -------------------------------------------------------------------------------- 1 | #undef CONFIG_FEATURE_IP_LINK 2 | -------------------------------------------------------------------------------- /busybox-v1.29.3/include/config/feature/ip/neigh.h: -------------------------------------------------------------------------------- 1 | #undef CONFIG_FEATURE_IP_NEIGH 2 | -------------------------------------------------------------------------------- /busybox-v1.29.3/include/config/feature/ip/route.h: -------------------------------------------------------------------------------- 1 | #undef CONFIG_FEATURE_IP_ROUTE 2 | -------------------------------------------------------------------------------- /busybox-v1.29.3/include/config/feature/ip/route/dir.h: -------------------------------------------------------------------------------- 1 | #define CONFIG_FEATURE_IP_ROUTE_DIR "" 2 | -------------------------------------------------------------------------------- /busybox-v1.29.3/include/config/feature/ip/rule.h: -------------------------------------------------------------------------------- 1 | #undef CONFIG_FEATURE_IP_RULE 2 | -------------------------------------------------------------------------------- /busybox-v1.29.3/include/config/feature/ip/tunnel.h: -------------------------------------------------------------------------------- 1 | #undef CONFIG_FEATURE_IP_TUNNEL 2 | -------------------------------------------------------------------------------- /busybox-v1.29.3/include/config/feature/ipc/syslog.h: -------------------------------------------------------------------------------- 1 | #undef CONFIG_FEATURE_IPC_SYSLOG 2 | -------------------------------------------------------------------------------- /busybox-v1.29.3/include/config/feature/ipcalc/fancy.h: -------------------------------------------------------------------------------- 1 | #undef CONFIG_FEATURE_IPCALC_FANCY 2 | -------------------------------------------------------------------------------- /busybox-v1.29.3/include/config/feature/ipv6.h: -------------------------------------------------------------------------------- 1 | #undef CONFIG_FEATURE_IPV6 2 | -------------------------------------------------------------------------------- /busybox-v1.29.3/include/config/feature/kill/delay.h: -------------------------------------------------------------------------------- 1 | #define CONFIG_FEATURE_KILL_DELAY 0 2 | -------------------------------------------------------------------------------- /busybox-v1.29.3/include/config/feature/kill/removed.h: -------------------------------------------------------------------------------- 1 | #undef CONFIG_FEATURE_KILL_REMOVED 2 | -------------------------------------------------------------------------------- /busybox-v1.29.3/include/config/feature/kmsg/syslog.h: -------------------------------------------------------------------------------- 1 | #undef CONFIG_FEATURE_KMSG_SYSLOG 2 | -------------------------------------------------------------------------------- /busybox-v1.29.3/include/config/feature/last/fancy.h: -------------------------------------------------------------------------------- 1 | #undef CONFIG_FEATURE_LAST_FANCY 2 | -------------------------------------------------------------------------------- /busybox-v1.29.3/include/config/feature/less/brackets.h: -------------------------------------------------------------------------------- 1 | #undef CONFIG_FEATURE_LESS_BRACKETS 2 | -------------------------------------------------------------------------------- /busybox-v1.29.3/include/config/feature/less/dashcmd.h: -------------------------------------------------------------------------------- 1 | #undef CONFIG_FEATURE_LESS_DASHCMD 2 | -------------------------------------------------------------------------------- /busybox-v1.29.3/include/config/feature/less/env.h: -------------------------------------------------------------------------------- 1 | #undef CONFIG_FEATURE_LESS_ENV 2 | -------------------------------------------------------------------------------- /busybox-v1.29.3/include/config/feature/less/flags.h: -------------------------------------------------------------------------------- 1 | #undef CONFIG_FEATURE_LESS_FLAGS 2 | -------------------------------------------------------------------------------- /busybox-v1.29.3/include/config/feature/less/linenums.h: -------------------------------------------------------------------------------- 1 | #undef CONFIG_FEATURE_LESS_LINENUMS 2 | -------------------------------------------------------------------------------- /busybox-v1.29.3/include/config/feature/less/marks.h: -------------------------------------------------------------------------------- 1 | #undef CONFIG_FEATURE_LESS_MARKS 2 | -------------------------------------------------------------------------------- /busybox-v1.29.3/include/config/feature/less/maxlines.h: -------------------------------------------------------------------------------- 1 | #define CONFIG_FEATURE_LESS_MAXLINES 0 2 | -------------------------------------------------------------------------------- /busybox-v1.29.3/include/config/feature/less/raw.h: -------------------------------------------------------------------------------- 1 | #undef CONFIG_FEATURE_LESS_RAW 2 | -------------------------------------------------------------------------------- /busybox-v1.29.3/include/config/feature/less/regexp.h: -------------------------------------------------------------------------------- 1 | #undef CONFIG_FEATURE_LESS_REGEXP 2 | -------------------------------------------------------------------------------- /busybox-v1.29.3/include/config/feature/less/truncate.h: -------------------------------------------------------------------------------- 1 | #undef CONFIG_FEATURE_LESS_TRUNCATE 2 | -------------------------------------------------------------------------------- /busybox-v1.29.3/include/config/feature/less/winch.h: -------------------------------------------------------------------------------- 1 | #undef CONFIG_FEATURE_LESS_WINCH 2 | -------------------------------------------------------------------------------- /busybox-v1.29.3/include/config/feature/loadfont/psf2.h: -------------------------------------------------------------------------------- 1 | #undef CONFIG_FEATURE_LOADFONT_PSF2 2 | -------------------------------------------------------------------------------- /busybox-v1.29.3/include/config/feature/loadfont/raw.h: -------------------------------------------------------------------------------- 1 | #undef CONFIG_FEATURE_LOADFONT_RAW 2 | -------------------------------------------------------------------------------- /busybox-v1.29.3/include/config/feature/ls/color.h: -------------------------------------------------------------------------------- 1 | #define CONFIG_FEATURE_LS_COLOR 1 2 | -------------------------------------------------------------------------------- /busybox-v1.29.3/include/config/feature/ls/filetypes.h: -------------------------------------------------------------------------------- 1 | #define CONFIG_FEATURE_LS_FILETYPES 1 2 | -------------------------------------------------------------------------------- /busybox-v1.29.3/include/config/feature/ls/recursive.h: -------------------------------------------------------------------------------- 1 | #define CONFIG_FEATURE_LS_RECURSIVE 1 2 | -------------------------------------------------------------------------------- /busybox-v1.29.3/include/config/feature/ls/sortfiles.h: -------------------------------------------------------------------------------- 1 | #define CONFIG_FEATURE_LS_SORTFILES 1 2 | -------------------------------------------------------------------------------- /busybox-v1.29.3/include/config/feature/ls/timestamps.h: -------------------------------------------------------------------------------- 1 | #define CONFIG_FEATURE_LS_TIMESTAMPS 1 2 | -------------------------------------------------------------------------------- /busybox-v1.29.3/include/config/feature/ls/username.h: -------------------------------------------------------------------------------- 1 | #define CONFIG_FEATURE_LS_USERNAME 1 2 | -------------------------------------------------------------------------------- /busybox-v1.29.3/include/config/feature/ls/width.h: -------------------------------------------------------------------------------- 1 | #define CONFIG_FEATURE_LS_WIDTH 1 2 | -------------------------------------------------------------------------------- /busybox-v1.29.3/include/config/feature/lzma/fast.h: -------------------------------------------------------------------------------- 1 | #undef CONFIG_FEATURE_LZMA_FAST 2 | -------------------------------------------------------------------------------- /busybox-v1.29.3/include/config/feature/makedevs/leaf.h: -------------------------------------------------------------------------------- 1 | #undef CONFIG_FEATURE_MAKEDEVS_LEAF 2 | -------------------------------------------------------------------------------- /busybox-v1.29.3/include/config/feature/makedevs/table.h: -------------------------------------------------------------------------------- 1 | #undef CONFIG_FEATURE_MAKEDEVS_TABLE 2 | -------------------------------------------------------------------------------- /busybox-v1.29.3/include/config/feature/mdev/conf.h: -------------------------------------------------------------------------------- 1 | #undef CONFIG_FEATURE_MDEV_CONF 2 | -------------------------------------------------------------------------------- /busybox-v1.29.3/include/config/feature/mdev/exec.h: -------------------------------------------------------------------------------- 1 | #undef CONFIG_FEATURE_MDEV_EXEC 2 | -------------------------------------------------------------------------------- /busybox-v1.29.3/include/config/feature/mdev/rename.h: -------------------------------------------------------------------------------- 1 | #undef CONFIG_FEATURE_MDEV_RENAME 2 | -------------------------------------------------------------------------------- /busybox-v1.29.3/include/config/feature/mime/charset.h: -------------------------------------------------------------------------------- 1 | #define CONFIG_FEATURE_MIME_CHARSET "" 2 | -------------------------------------------------------------------------------- /busybox-v1.29.3/include/config/feature/minix2.h: -------------------------------------------------------------------------------- 1 | #undef CONFIG_FEATURE_MINIX2 2 | -------------------------------------------------------------------------------- /busybox-v1.29.3/include/config/feature/mkswap/uuid.h: -------------------------------------------------------------------------------- 1 | #undef CONFIG_FEATURE_MKSWAP_UUID 2 | -------------------------------------------------------------------------------- /busybox-v1.29.3/include/config/feature/modutils/alias.h: -------------------------------------------------------------------------------- 1 | #undef CONFIG_FEATURE_MODUTILS_ALIAS 2 | -------------------------------------------------------------------------------- /busybox-v1.29.3/include/config/feature/mount/cifs.h: -------------------------------------------------------------------------------- 1 | #define CONFIG_FEATURE_MOUNT_CIFS 1 2 | -------------------------------------------------------------------------------- /busybox-v1.29.3/include/config/feature/mount/fake.h: -------------------------------------------------------------------------------- 1 | #define CONFIG_FEATURE_MOUNT_FAKE 1 2 | -------------------------------------------------------------------------------- /busybox-v1.29.3/include/config/feature/mount/flags.h: -------------------------------------------------------------------------------- 1 | #define CONFIG_FEATURE_MOUNT_FLAGS 1 2 | -------------------------------------------------------------------------------- /busybox-v1.29.3/include/config/feature/mount/fstab.h: -------------------------------------------------------------------------------- 1 | #define CONFIG_FEATURE_MOUNT_FSTAB 1 2 | -------------------------------------------------------------------------------- /busybox-v1.29.3/include/config/feature/mount/label.h: -------------------------------------------------------------------------------- 1 | #define CONFIG_FEATURE_MOUNT_LABEL 1 2 | -------------------------------------------------------------------------------- /busybox-v1.29.3/include/config/feature/mount/loop.h: -------------------------------------------------------------------------------- 1 | #define CONFIG_FEATURE_MOUNT_LOOP 1 2 | -------------------------------------------------------------------------------- /busybox-v1.29.3/include/config/feature/mount/nfs.h: -------------------------------------------------------------------------------- 1 | #undef CONFIG_FEATURE_MOUNT_NFS 2 | -------------------------------------------------------------------------------- /busybox-v1.29.3/include/config/feature/mtab/support.h: -------------------------------------------------------------------------------- 1 | #undef CONFIG_FEATURE_MTAB_SUPPORT 2 | -------------------------------------------------------------------------------- /busybox-v1.29.3/include/config/feature/netstat/prg.h: -------------------------------------------------------------------------------- 1 | #undef CONFIG_FEATURE_NETSTAT_PRG 2 | -------------------------------------------------------------------------------- /busybox-v1.29.3/include/config/feature/netstat/wide.h: -------------------------------------------------------------------------------- 1 | #undef CONFIG_FEATURE_NETSTAT_WIDE 2 | -------------------------------------------------------------------------------- /busybox-v1.29.3/include/config/feature/nologin.h: -------------------------------------------------------------------------------- 1 | #undef CONFIG_FEATURE_NOLOGIN 2 | -------------------------------------------------------------------------------- /busybox-v1.29.3/include/config/feature/non/posix/cp.h: -------------------------------------------------------------------------------- 1 | #undef CONFIG_FEATURE_NON_POSIX_CP 2 | -------------------------------------------------------------------------------- /busybox-v1.29.3/include/config/feature/nslookup/big.h: -------------------------------------------------------------------------------- 1 | #undef CONFIG_FEATURE_NSLOOKUP_BIG 2 | -------------------------------------------------------------------------------- /busybox-v1.29.3/include/config/feature/ntpd/conf.h: -------------------------------------------------------------------------------- 1 | #undef CONFIG_FEATURE_NTPD_CONF 2 | -------------------------------------------------------------------------------- /busybox-v1.29.3/include/config/feature/ntpd/server.h: -------------------------------------------------------------------------------- 1 | #undef CONFIG_FEATURE_NTPD_SERVER 2 | -------------------------------------------------------------------------------- /busybox-v1.29.3/include/config/feature/osf/label.h: -------------------------------------------------------------------------------- 1 | #undef CONFIG_FEATURE_OSF_LABEL 2 | -------------------------------------------------------------------------------- /busybox-v1.29.3/include/config/feature/pidfile.h: -------------------------------------------------------------------------------- 1 | #undef CONFIG_FEATURE_PIDFILE 2 | -------------------------------------------------------------------------------- /busybox-v1.29.3/include/config/feature/pidof/omit.h: -------------------------------------------------------------------------------- 1 | #undef CONFIG_FEATURE_PIDOF_OMIT 2 | -------------------------------------------------------------------------------- /busybox-v1.29.3/include/config/feature/pidof/single.h: -------------------------------------------------------------------------------- 1 | #undef CONFIG_FEATURE_PIDOF_SINGLE 2 | -------------------------------------------------------------------------------- /busybox-v1.29.3/include/config/feature/ps/long.h: -------------------------------------------------------------------------------- 1 | #undef CONFIG_FEATURE_PS_LONG 2 | -------------------------------------------------------------------------------- /busybox-v1.29.3/include/config/feature/ps/time.h: -------------------------------------------------------------------------------- 1 | #undef CONFIG_FEATURE_PS_TIME 2 | -------------------------------------------------------------------------------- /busybox-v1.29.3/include/config/feature/ps/wide.h: -------------------------------------------------------------------------------- 1 | #undef CONFIG_FEATURE_PS_WIDE 2 | -------------------------------------------------------------------------------- /busybox-v1.29.3/include/config/feature/remote/log.h: -------------------------------------------------------------------------------- 1 | #undef CONFIG_FEATURE_REMOTE_LOG 2 | -------------------------------------------------------------------------------- /busybox-v1.29.3/include/config/feature/resize/print.h: -------------------------------------------------------------------------------- 1 | #undef CONFIG_FEATURE_RESIZE_PRINT 2 | -------------------------------------------------------------------------------- /busybox-v1.29.3/include/config/feature/rtminmax.h: -------------------------------------------------------------------------------- 1 | #undef CONFIG_FEATURE_RTMINMAX 2 | -------------------------------------------------------------------------------- /busybox-v1.29.3/include/config/feature/runsvdir/log.h: -------------------------------------------------------------------------------- 1 | #undef CONFIG_FEATURE_RUNSVDIR_LOG 2 | -------------------------------------------------------------------------------- /busybox-v1.29.3/include/config/feature/seamless/bz2.h: -------------------------------------------------------------------------------- 1 | #undef CONFIG_FEATURE_SEAMLESS_BZ2 2 | -------------------------------------------------------------------------------- /busybox-v1.29.3/include/config/feature/seamless/gz.h: -------------------------------------------------------------------------------- 1 | #undef CONFIG_FEATURE_SEAMLESS_GZ 2 | -------------------------------------------------------------------------------- /busybox-v1.29.3/include/config/feature/seamless/xz.h: -------------------------------------------------------------------------------- 1 | #undef CONFIG_FEATURE_SEAMLESS_XZ 2 | -------------------------------------------------------------------------------- /busybox-v1.29.3/include/config/feature/seamless/z.h: -------------------------------------------------------------------------------- 1 | #undef CONFIG_FEATURE_SEAMLESS_Z 2 | -------------------------------------------------------------------------------- /busybox-v1.29.3/include/config/feature/securetty.h: -------------------------------------------------------------------------------- 1 | #undef CONFIG_FEATURE_SECURETTY 2 | -------------------------------------------------------------------------------- /busybox-v1.29.3/include/config/feature/setpriv/dump.h: -------------------------------------------------------------------------------- 1 | #undef CONFIG_FEATURE_SETPRIV_DUMP 2 | -------------------------------------------------------------------------------- /busybox-v1.29.3/include/config/feature/sgi/label.h: -------------------------------------------------------------------------------- 1 | #undef CONFIG_FEATURE_SGI_LABEL 2 | -------------------------------------------------------------------------------- /busybox-v1.29.3/include/config/feature/sh/math.h: -------------------------------------------------------------------------------- 1 | #undef CONFIG_FEATURE_SH_MATH 2 | -------------------------------------------------------------------------------- /busybox-v1.29.3/include/config/feature/sh/math/64.h: -------------------------------------------------------------------------------- 1 | #undef CONFIG_FEATURE_SH_MATH_64 2 | -------------------------------------------------------------------------------- /busybox-v1.29.3/include/config/feature/sh/nofork.h: -------------------------------------------------------------------------------- 1 | #undef CONFIG_FEATURE_SH_NOFORK 2 | -------------------------------------------------------------------------------- /busybox-v1.29.3/include/config/feature/sh/read/frac.h: -------------------------------------------------------------------------------- 1 | #undef CONFIG_FEATURE_SH_READ_FRAC 2 | -------------------------------------------------------------------------------- /busybox-v1.29.3/include/config/feature/show/threads.h: -------------------------------------------------------------------------------- 1 | #undef CONFIG_FEATURE_SHOW_THREADS 2 | -------------------------------------------------------------------------------- /busybox-v1.29.3/include/config/feature/skip/rootfs.h: -------------------------------------------------------------------------------- 1 | #undef CONFIG_FEATURE_SKIP_ROOTFS 2 | -------------------------------------------------------------------------------- /busybox-v1.29.3/include/config/feature/sort/big.h: -------------------------------------------------------------------------------- 1 | #undef CONFIG_FEATURE_SORT_BIG 2 | -------------------------------------------------------------------------------- /busybox-v1.29.3/include/config/feature/split/fancy.h: -------------------------------------------------------------------------------- 1 | #undef CONFIG_FEATURE_SPLIT_FANCY 2 | -------------------------------------------------------------------------------- /busybox-v1.29.3/include/config/feature/stat/format.h: -------------------------------------------------------------------------------- 1 | #undef CONFIG_FEATURE_STAT_FORMAT 2 | -------------------------------------------------------------------------------- /busybox-v1.29.3/include/config/feature/su/syslog.h: -------------------------------------------------------------------------------- 1 | #undef CONFIG_FEATURE_SU_SYSLOG 2 | -------------------------------------------------------------------------------- /busybox-v1.29.3/include/config/feature/suid.h: -------------------------------------------------------------------------------- 1 | #undef CONFIG_FEATURE_SUID 2 | -------------------------------------------------------------------------------- /busybox-v1.29.3/include/config/feature/sun/label.h: -------------------------------------------------------------------------------- 1 | #undef CONFIG_FEATURE_SUN_LABEL 2 | -------------------------------------------------------------------------------- /busybox-v1.29.3/include/config/feature/swapon/pri.h: -------------------------------------------------------------------------------- 1 | #undef CONFIG_FEATURE_SWAPON_PRI 2 | -------------------------------------------------------------------------------- /busybox-v1.29.3/include/config/feature/sync/fancy.h: -------------------------------------------------------------------------------- 1 | #undef CONFIG_FEATURE_SYNC_FANCY 2 | -------------------------------------------------------------------------------- /busybox-v1.29.3/include/config/feature/syslog.h: -------------------------------------------------------------------------------- 1 | #undef CONFIG_FEATURE_SYSLOG 2 | -------------------------------------------------------------------------------- /busybox-v1.29.3/include/config/feature/syslogd/cfg.h: -------------------------------------------------------------------------------- 1 | #undef CONFIG_FEATURE_SYSLOGD_CFG 2 | -------------------------------------------------------------------------------- /busybox-v1.29.3/include/config/feature/syslogd/dup.h: -------------------------------------------------------------------------------- 1 | #undef CONFIG_FEATURE_SYSLOGD_DUP 2 | -------------------------------------------------------------------------------- /busybox-v1.29.3/include/config/feature/tar/create.h: -------------------------------------------------------------------------------- 1 | #undef CONFIG_FEATURE_TAR_CREATE 2 | -------------------------------------------------------------------------------- /busybox-v1.29.3/include/config/feature/tar/from.h: -------------------------------------------------------------------------------- 1 | #undef CONFIG_FEATURE_TAR_FROM 2 | -------------------------------------------------------------------------------- /busybox-v1.29.3/include/config/feature/tar/selinux.h: -------------------------------------------------------------------------------- 1 | #undef CONFIG_FEATURE_TAR_SELINUX 2 | -------------------------------------------------------------------------------- /busybox-v1.29.3/include/config/feature/tc/ingress.h: -------------------------------------------------------------------------------- 1 | #undef CONFIG_FEATURE_TC_INGRESS 2 | -------------------------------------------------------------------------------- /busybox-v1.29.3/include/config/feature/telnet/ttype.h: -------------------------------------------------------------------------------- 1 | #undef CONFIG_FEATURE_TELNET_TTYPE 2 | -------------------------------------------------------------------------------- /busybox-v1.29.3/include/config/feature/telnet/width.h: -------------------------------------------------------------------------------- 1 | #undef CONFIG_FEATURE_TELNET_WIDTH 2 | -------------------------------------------------------------------------------- /busybox-v1.29.3/include/config/feature/test/64.h: -------------------------------------------------------------------------------- 1 | #define CONFIG_FEATURE_TEST_64 1 2 | -------------------------------------------------------------------------------- /busybox-v1.29.3/include/config/feature/tftp/get.h: -------------------------------------------------------------------------------- 1 | #undef CONFIG_FEATURE_TFTP_GET 2 | -------------------------------------------------------------------------------- /busybox-v1.29.3/include/config/feature/tftp/put.h: -------------------------------------------------------------------------------- 1 | #undef CONFIG_FEATURE_TFTP_PUT 2 | -------------------------------------------------------------------------------- /busybox-v1.29.3/include/config/feature/top/decimals.h: -------------------------------------------------------------------------------- 1 | #undef CONFIG_FEATURE_TOP_DECIMALS 2 | -------------------------------------------------------------------------------- /busybox-v1.29.3/include/config/feature/top/smp/cpu.h: -------------------------------------------------------------------------------- 1 | #undef CONFIG_FEATURE_TOP_SMP_CPU 2 | -------------------------------------------------------------------------------- /busybox-v1.29.3/include/config/feature/topmem.h: -------------------------------------------------------------------------------- 1 | #undef CONFIG_FEATURE_TOPMEM 2 | -------------------------------------------------------------------------------- /busybox-v1.29.3/include/config/feature/touch/susv3.h: -------------------------------------------------------------------------------- 1 | #define CONFIG_FEATURE_TOUCH_SUSV3 1 2 | -------------------------------------------------------------------------------- /busybox-v1.29.3/include/config/feature/tr/classes.h: -------------------------------------------------------------------------------- 1 | #undef CONFIG_FEATURE_TR_CLASSES 2 | -------------------------------------------------------------------------------- /busybox-v1.29.3/include/config/feature/tr/equiv.h: -------------------------------------------------------------------------------- 1 | #undef CONFIG_FEATURE_TR_EQUIV 2 | -------------------------------------------------------------------------------- /busybox-v1.29.3/include/config/feature/tunctl/ug.h: -------------------------------------------------------------------------------- 1 | #undef CONFIG_FEATURE_TUNCTL_UG 2 | -------------------------------------------------------------------------------- /busybox-v1.29.3/include/config/feature/udhcp/8021q.h: -------------------------------------------------------------------------------- 1 | #undef CONFIG_FEATURE_UDHCP_8021Q 2 | -------------------------------------------------------------------------------- /busybox-v1.29.3/include/config/feature/udhcp/port.h: -------------------------------------------------------------------------------- 1 | #undef CONFIG_FEATURE_UDHCP_PORT 2 | -------------------------------------------------------------------------------- /busybox-v1.29.3/include/config/feature/umount/all.h: -------------------------------------------------------------------------------- 1 | #define CONFIG_FEATURE_UMOUNT_ALL 1 2 | -------------------------------------------------------------------------------- /busybox-v1.29.3/include/config/feature/unix/local.h: -------------------------------------------------------------------------------- 1 | #undef CONFIG_FEATURE_UNIX_LOCAL 2 | -------------------------------------------------------------------------------- /busybox-v1.29.3/include/config/feature/unzip/bzip2.h: -------------------------------------------------------------------------------- 1 | #undef CONFIG_FEATURE_UNZIP_BZIP2 2 | -------------------------------------------------------------------------------- /busybox-v1.29.3/include/config/feature/unzip/cdf.h: -------------------------------------------------------------------------------- 1 | #undef CONFIG_FEATURE_UNZIP_CDF 2 | -------------------------------------------------------------------------------- /busybox-v1.29.3/include/config/feature/unzip/lzma.h: -------------------------------------------------------------------------------- 1 | #undef CONFIG_FEATURE_UNZIP_LZMA 2 | -------------------------------------------------------------------------------- /busybox-v1.29.3/include/config/feature/unzip/xz.h: -------------------------------------------------------------------------------- 1 | #undef CONFIG_FEATURE_UNZIP_XZ 2 | -------------------------------------------------------------------------------- /busybox-v1.29.3/include/config/feature/use/bss/tail.h: -------------------------------------------------------------------------------- 1 | #undef CONFIG_FEATURE_USE_BSS_TAIL 2 | -------------------------------------------------------------------------------- /busybox-v1.29.3/include/config/feature/use/inittab.h: -------------------------------------------------------------------------------- 1 | #undef CONFIG_FEATURE_USE_INITTAB 2 | -------------------------------------------------------------------------------- /busybox-v1.29.3/include/config/feature/utmp.h: -------------------------------------------------------------------------------- 1 | #undef CONFIG_FEATURE_UTMP 2 | -------------------------------------------------------------------------------- /busybox-v1.29.3/include/config/feature/verbose.h: -------------------------------------------------------------------------------- 1 | #define CONFIG_FEATURE_VERBOSE 1 2 | -------------------------------------------------------------------------------- /busybox-v1.29.3/include/config/feature/vi/8bit.h: -------------------------------------------------------------------------------- 1 | #undef CONFIG_FEATURE_VI_8BIT 2 | -------------------------------------------------------------------------------- /busybox-v1.29.3/include/config/feature/vi/colon.h: -------------------------------------------------------------------------------- 1 | #undef CONFIG_FEATURE_VI_COLON 2 | -------------------------------------------------------------------------------- /busybox-v1.29.3/include/config/feature/vi/dot/cmd.h: -------------------------------------------------------------------------------- 1 | #undef CONFIG_FEATURE_VI_DOT_CMD 2 | -------------------------------------------------------------------------------- /busybox-v1.29.3/include/config/feature/vi/max/len.h: -------------------------------------------------------------------------------- 1 | #define CONFIG_FEATURE_VI_MAX_LEN 0 2 | -------------------------------------------------------------------------------- /busybox-v1.29.3/include/config/feature/vi/readonly.h: -------------------------------------------------------------------------------- 1 | #undef CONFIG_FEATURE_VI_READONLY 2 | -------------------------------------------------------------------------------- /busybox-v1.29.3/include/config/feature/vi/search.h: -------------------------------------------------------------------------------- 1 | #undef CONFIG_FEATURE_VI_SEARCH 2 | -------------------------------------------------------------------------------- /busybox-v1.29.3/include/config/feature/vi/set.h: -------------------------------------------------------------------------------- 1 | #undef CONFIG_FEATURE_VI_SET 2 | -------------------------------------------------------------------------------- /busybox-v1.29.3/include/config/feature/vi/setopts.h: -------------------------------------------------------------------------------- 1 | #undef CONFIG_FEATURE_VI_SETOPTS 2 | -------------------------------------------------------------------------------- /busybox-v1.29.3/include/config/feature/vi/undo.h: -------------------------------------------------------------------------------- 1 | #undef CONFIG_FEATURE_VI_UNDO 2 | -------------------------------------------------------------------------------- /busybox-v1.29.3/include/config/feature/vi/yankmark.h: -------------------------------------------------------------------------------- 1 | #undef CONFIG_FEATURE_VI_YANKMARK 2 | -------------------------------------------------------------------------------- /busybox-v1.29.3/include/config/feature/volumeid/ext.h: -------------------------------------------------------------------------------- 1 | #undef CONFIG_FEATURE_VOLUMEID_EXT 2 | -------------------------------------------------------------------------------- /busybox-v1.29.3/include/config/feature/volumeid/fat.h: -------------------------------------------------------------------------------- 1 | #undef CONFIG_FEATURE_VOLUMEID_FAT 2 | -------------------------------------------------------------------------------- /busybox-v1.29.3/include/config/feature/volumeid/hfs.h: -------------------------------------------------------------------------------- 1 | #undef CONFIG_FEATURE_VOLUMEID_HFS 2 | -------------------------------------------------------------------------------- /busybox-v1.29.3/include/config/feature/volumeid/jfs.h: -------------------------------------------------------------------------------- 1 | #undef CONFIG_FEATURE_VOLUMEID_JFS 2 | -------------------------------------------------------------------------------- /busybox-v1.29.3/include/config/feature/volumeid/lfs.h: -------------------------------------------------------------------------------- 1 | #undef CONFIG_FEATURE_VOLUMEID_LFS 2 | -------------------------------------------------------------------------------- /busybox-v1.29.3/include/config/feature/volumeid/udf.h: -------------------------------------------------------------------------------- 1 | #undef CONFIG_FEATURE_VOLUMEID_UDF 2 | -------------------------------------------------------------------------------- /busybox-v1.29.3/include/config/feature/volumeid/xfs.h: -------------------------------------------------------------------------------- 1 | #undef CONFIG_FEATURE_VOLUMEID_XFS 2 | -------------------------------------------------------------------------------- /busybox-v1.29.3/include/config/feature/wc/large.h: -------------------------------------------------------------------------------- 1 | #undef CONFIG_FEATURE_WC_LARGE 2 | -------------------------------------------------------------------------------- /busybox-v1.29.3/include/config/feature/wget/https.h: -------------------------------------------------------------------------------- 1 | #undef CONFIG_FEATURE_WGET_HTTPS 2 | -------------------------------------------------------------------------------- /busybox-v1.29.3/include/config/feature/wget/openssl.h: -------------------------------------------------------------------------------- 1 | #undef CONFIG_FEATURE_WGET_OPENSSL 2 | -------------------------------------------------------------------------------- /busybox-v1.29.3/include/config/feature/wget/timeout.h: -------------------------------------------------------------------------------- 1 | #undef CONFIG_FEATURE_WGET_TIMEOUT 2 | -------------------------------------------------------------------------------- /busybox-v1.29.3/include/config/feature/wtmp.h: -------------------------------------------------------------------------------- 1 | #undef CONFIG_FEATURE_WTMP 2 | -------------------------------------------------------------------------------- /busybox-v1.29.3/include/config/fedora/compat.h: -------------------------------------------------------------------------------- 1 | #undef CONFIG_FEDORA_COMPAT 2 | -------------------------------------------------------------------------------- /busybox-v1.29.3/include/config/fgconsole.h: -------------------------------------------------------------------------------- 1 | #undef CONFIG_FGCONSOLE 2 | -------------------------------------------------------------------------------- /busybox-v1.29.3/include/config/fgrep.h: -------------------------------------------------------------------------------- 1 | #undef CONFIG_FGREP 2 | -------------------------------------------------------------------------------- /busybox-v1.29.3/include/config/find.h: -------------------------------------------------------------------------------- 1 | #undef CONFIG_FIND 2 | -------------------------------------------------------------------------------- /busybox-v1.29.3/include/config/findfs.h: -------------------------------------------------------------------------------- 1 | #undef CONFIG_FINDFS 2 | -------------------------------------------------------------------------------- /busybox-v1.29.3/include/config/first/system/id.h: -------------------------------------------------------------------------------- 1 | #define CONFIG_FIRST_SYSTEM_ID 0 2 | -------------------------------------------------------------------------------- /busybox-v1.29.3/include/config/flash/eraseall.h: -------------------------------------------------------------------------------- 1 | #undef CONFIG_FLASH_ERASEALL 2 | -------------------------------------------------------------------------------- /busybox-v1.29.3/include/config/flash/lock.h: -------------------------------------------------------------------------------- 1 | #undef CONFIG_FLASH_LOCK 2 | -------------------------------------------------------------------------------- /busybox-v1.29.3/include/config/flash/unlock.h: -------------------------------------------------------------------------------- 1 | #undef CONFIG_FLASH_UNLOCK 2 | -------------------------------------------------------------------------------- /busybox-v1.29.3/include/config/flashcp.h: -------------------------------------------------------------------------------- 1 | #undef CONFIG_FLASHCP 2 | -------------------------------------------------------------------------------- /busybox-v1.29.3/include/config/flock.h: -------------------------------------------------------------------------------- 1 | #undef CONFIG_FLOCK 2 | -------------------------------------------------------------------------------- /busybox-v1.29.3/include/config/fold.h: -------------------------------------------------------------------------------- 1 | #undef CONFIG_FOLD 2 | -------------------------------------------------------------------------------- /busybox-v1.29.3/include/config/free.h: -------------------------------------------------------------------------------- 1 | #undef CONFIG_FREE 2 | -------------------------------------------------------------------------------- /busybox-v1.29.3/include/config/freeramdisk.h: -------------------------------------------------------------------------------- 1 | #undef CONFIG_FREERAMDISK 2 | -------------------------------------------------------------------------------- /busybox-v1.29.3/include/config/fsck.h: -------------------------------------------------------------------------------- 1 | #undef CONFIG_FSCK 2 | -------------------------------------------------------------------------------- /busybox-v1.29.3/include/config/fsck/minix.h: -------------------------------------------------------------------------------- 1 | #undef CONFIG_FSCK_MINIX 2 | -------------------------------------------------------------------------------- /busybox-v1.29.3/include/config/fsfreeze.h: -------------------------------------------------------------------------------- 1 | #undef CONFIG_FSFREEZE 2 | -------------------------------------------------------------------------------- /busybox-v1.29.3/include/config/fstrim.h: -------------------------------------------------------------------------------- 1 | #undef CONFIG_FSTRIM 2 | -------------------------------------------------------------------------------- /busybox-v1.29.3/include/config/fsync.h: -------------------------------------------------------------------------------- 1 | #undef CONFIG_FSYNC 2 | -------------------------------------------------------------------------------- /busybox-v1.29.3/include/config/ftpd.h: -------------------------------------------------------------------------------- 1 | #undef CONFIG_FTPD 2 | -------------------------------------------------------------------------------- /busybox-v1.29.3/include/config/ftpget.h: -------------------------------------------------------------------------------- 1 | #undef CONFIG_FTPGET 2 | -------------------------------------------------------------------------------- /busybox-v1.29.3/include/config/ftpput.h: -------------------------------------------------------------------------------- 1 | #undef CONFIG_FTPPUT 2 | -------------------------------------------------------------------------------- /busybox-v1.29.3/include/config/fuser.h: -------------------------------------------------------------------------------- 1 | #undef CONFIG_FUSER 2 | -------------------------------------------------------------------------------- /busybox-v1.29.3/include/config/getenforce.h: -------------------------------------------------------------------------------- 1 | #undef CONFIG_GETENFORCE 2 | -------------------------------------------------------------------------------- /busybox-v1.29.3/include/config/getopt.h: -------------------------------------------------------------------------------- 1 | #undef CONFIG_GETOPT 2 | -------------------------------------------------------------------------------- /busybox-v1.29.3/include/config/getsebool.h: -------------------------------------------------------------------------------- 1 | #undef CONFIG_GETSEBOOL 2 | -------------------------------------------------------------------------------- /busybox-v1.29.3/include/config/getty.h: -------------------------------------------------------------------------------- 1 | #undef CONFIG_GETTY 2 | -------------------------------------------------------------------------------- /busybox-v1.29.3/include/config/grep.h: -------------------------------------------------------------------------------- 1 | #undef CONFIG_GREP 2 | -------------------------------------------------------------------------------- /busybox-v1.29.3/include/config/groups.h: -------------------------------------------------------------------------------- 1 | #undef CONFIG_GROUPS 2 | -------------------------------------------------------------------------------- /busybox-v1.29.3/include/config/gunzip.h: -------------------------------------------------------------------------------- 1 | #undef CONFIG_GUNZIP 2 | -------------------------------------------------------------------------------- /busybox-v1.29.3/include/config/gzip.h: -------------------------------------------------------------------------------- 1 | #undef CONFIG_GZIP 2 | -------------------------------------------------------------------------------- /busybox-v1.29.3/include/config/gzip/fast.h: -------------------------------------------------------------------------------- 1 | #define CONFIG_GZIP_FAST 0 2 | -------------------------------------------------------------------------------- /busybox-v1.29.3/include/config/halt.h: -------------------------------------------------------------------------------- 1 | #undef CONFIG_HALT 2 | -------------------------------------------------------------------------------- /busybox-v1.29.3/include/config/hd.h: -------------------------------------------------------------------------------- 1 | #undef CONFIG_HD 2 | -------------------------------------------------------------------------------- /busybox-v1.29.3/include/config/hdparm.h: -------------------------------------------------------------------------------- 1 | #undef CONFIG_HDPARM 2 | -------------------------------------------------------------------------------- /busybox-v1.29.3/include/config/head.h: -------------------------------------------------------------------------------- 1 | #undef CONFIG_HEAD 2 | -------------------------------------------------------------------------------- /busybox-v1.29.3/include/config/hexdump.h: -------------------------------------------------------------------------------- 1 | #undef CONFIG_HEXDUMP 2 | -------------------------------------------------------------------------------- /busybox-v1.29.3/include/config/hexedit.h: -------------------------------------------------------------------------------- 1 | #undef CONFIG_HEXEDIT 2 | -------------------------------------------------------------------------------- /busybox-v1.29.3/include/config/hostid.h: -------------------------------------------------------------------------------- 1 | #undef CONFIG_HOSTID 2 | -------------------------------------------------------------------------------- /busybox-v1.29.3/include/config/hostname.h: -------------------------------------------------------------------------------- 1 | #undef CONFIG_HOSTNAME 2 | -------------------------------------------------------------------------------- /busybox-v1.29.3/include/config/httpd.h: -------------------------------------------------------------------------------- 1 | #undef CONFIG_HTTPD 2 | -------------------------------------------------------------------------------- /busybox-v1.29.3/include/config/hush.h: -------------------------------------------------------------------------------- 1 | #undef CONFIG_HUSH 2 | -------------------------------------------------------------------------------- /busybox-v1.29.3/include/config/hush/bash/compat.h: -------------------------------------------------------------------------------- 1 | #undef CONFIG_HUSH_BASH_COMPAT 2 | -------------------------------------------------------------------------------- /busybox-v1.29.3/include/config/hush/brace/expansion.h: -------------------------------------------------------------------------------- 1 | #undef CONFIG_HUSH_BRACE_EXPANSION 2 | -------------------------------------------------------------------------------- /busybox-v1.29.3/include/config/hush/case.h: -------------------------------------------------------------------------------- 1 | #undef CONFIG_HUSH_CASE 2 | -------------------------------------------------------------------------------- /busybox-v1.29.3/include/config/hush/command.h: -------------------------------------------------------------------------------- 1 | #undef CONFIG_HUSH_COMMAND 2 | -------------------------------------------------------------------------------- /busybox-v1.29.3/include/config/hush/echo.h: -------------------------------------------------------------------------------- 1 | #undef CONFIG_HUSH_ECHO 2 | -------------------------------------------------------------------------------- /busybox-v1.29.3/include/config/hush/export.h: -------------------------------------------------------------------------------- 1 | #undef CONFIG_HUSH_EXPORT 2 | -------------------------------------------------------------------------------- /busybox-v1.29.3/include/config/hush/export/n.h: -------------------------------------------------------------------------------- 1 | #undef CONFIG_HUSH_EXPORT_N 2 | -------------------------------------------------------------------------------- /busybox-v1.29.3/include/config/hush/functions.h: -------------------------------------------------------------------------------- 1 | #undef CONFIG_HUSH_FUNCTIONS 2 | -------------------------------------------------------------------------------- /busybox-v1.29.3/include/config/hush/getopts.h: -------------------------------------------------------------------------------- 1 | #undef CONFIG_HUSH_GETOPTS 2 | -------------------------------------------------------------------------------- /busybox-v1.29.3/include/config/hush/help.h: -------------------------------------------------------------------------------- 1 | #undef CONFIG_HUSH_HELP 2 | -------------------------------------------------------------------------------- /busybox-v1.29.3/include/config/hush/if.h: -------------------------------------------------------------------------------- 1 | #undef CONFIG_HUSH_IF 2 | -------------------------------------------------------------------------------- /busybox-v1.29.3/include/config/hush/interactive.h: -------------------------------------------------------------------------------- 1 | #undef CONFIG_HUSH_INTERACTIVE 2 | -------------------------------------------------------------------------------- /busybox-v1.29.3/include/config/hush/job.h: -------------------------------------------------------------------------------- 1 | #undef CONFIG_HUSH_JOB 2 | -------------------------------------------------------------------------------- /busybox-v1.29.3/include/config/hush/kill.h: -------------------------------------------------------------------------------- 1 | #undef CONFIG_HUSH_KILL 2 | -------------------------------------------------------------------------------- /busybox-v1.29.3/include/config/hush/lineno/var.h: -------------------------------------------------------------------------------- 1 | #undef CONFIG_HUSH_LINENO_VAR 2 | -------------------------------------------------------------------------------- /busybox-v1.29.3/include/config/hush/local.h: -------------------------------------------------------------------------------- 1 | #undef CONFIG_HUSH_LOCAL 2 | -------------------------------------------------------------------------------- /busybox-v1.29.3/include/config/hush/loops.h: -------------------------------------------------------------------------------- 1 | #undef CONFIG_HUSH_LOOPS 2 | -------------------------------------------------------------------------------- /busybox-v1.29.3/include/config/hush/memleak.h: -------------------------------------------------------------------------------- 1 | #undef CONFIG_HUSH_MEMLEAK 2 | -------------------------------------------------------------------------------- /busybox-v1.29.3/include/config/hush/mode/x.h: -------------------------------------------------------------------------------- 1 | #undef CONFIG_HUSH_MODE_X 2 | -------------------------------------------------------------------------------- /busybox-v1.29.3/include/config/hush/printf.h: -------------------------------------------------------------------------------- 1 | #undef CONFIG_HUSH_PRINTF 2 | -------------------------------------------------------------------------------- /busybox-v1.29.3/include/config/hush/random/support.h: -------------------------------------------------------------------------------- 1 | #undef CONFIG_HUSH_RANDOM_SUPPORT 2 | -------------------------------------------------------------------------------- /busybox-v1.29.3/include/config/hush/read.h: -------------------------------------------------------------------------------- 1 | #undef CONFIG_HUSH_READ 2 | -------------------------------------------------------------------------------- /busybox-v1.29.3/include/config/hush/readonly.h: -------------------------------------------------------------------------------- 1 | #undef CONFIG_HUSH_READONLY 2 | -------------------------------------------------------------------------------- /busybox-v1.29.3/include/config/hush/savehistory.h: -------------------------------------------------------------------------------- 1 | #undef CONFIG_HUSH_SAVEHISTORY 2 | -------------------------------------------------------------------------------- /busybox-v1.29.3/include/config/hush/set.h: -------------------------------------------------------------------------------- 1 | #undef CONFIG_HUSH_SET 2 | -------------------------------------------------------------------------------- /busybox-v1.29.3/include/config/hush/test.h: -------------------------------------------------------------------------------- 1 | #undef CONFIG_HUSH_TEST 2 | -------------------------------------------------------------------------------- /busybox-v1.29.3/include/config/hush/tick.h: -------------------------------------------------------------------------------- 1 | #undef CONFIG_HUSH_TICK 2 | -------------------------------------------------------------------------------- /busybox-v1.29.3/include/config/hush/times.h: -------------------------------------------------------------------------------- 1 | #undef CONFIG_HUSH_TIMES 2 | -------------------------------------------------------------------------------- /busybox-v1.29.3/include/config/hush/trap.h: -------------------------------------------------------------------------------- 1 | #undef CONFIG_HUSH_TRAP 2 | -------------------------------------------------------------------------------- /busybox-v1.29.3/include/config/hush/type.h: -------------------------------------------------------------------------------- 1 | #undef CONFIG_HUSH_TYPE 2 | -------------------------------------------------------------------------------- /busybox-v1.29.3/include/config/hush/ulimit.h: -------------------------------------------------------------------------------- 1 | #undef CONFIG_HUSH_ULIMIT 2 | -------------------------------------------------------------------------------- /busybox-v1.29.3/include/config/hush/umask.h: -------------------------------------------------------------------------------- 1 | #undef CONFIG_HUSH_UMASK 2 | -------------------------------------------------------------------------------- /busybox-v1.29.3/include/config/hush/unset.h: -------------------------------------------------------------------------------- 1 | #undef CONFIG_HUSH_UNSET 2 | -------------------------------------------------------------------------------- /busybox-v1.29.3/include/config/hush/wait.h: -------------------------------------------------------------------------------- 1 | #undef CONFIG_HUSH_WAIT 2 | -------------------------------------------------------------------------------- /busybox-v1.29.3/include/config/hwclock.h: -------------------------------------------------------------------------------- 1 | #undef CONFIG_HWCLOCK 2 | -------------------------------------------------------------------------------- /busybox-v1.29.3/include/config/i2cdetect.h: -------------------------------------------------------------------------------- 1 | #undef CONFIG_I2CDETECT 2 | -------------------------------------------------------------------------------- /busybox-v1.29.3/include/config/i2cdump.h: -------------------------------------------------------------------------------- 1 | #undef CONFIG_I2CDUMP 2 | -------------------------------------------------------------------------------- /busybox-v1.29.3/include/config/i2cget.h: -------------------------------------------------------------------------------- 1 | #undef CONFIG_I2CGET 2 | -------------------------------------------------------------------------------- /busybox-v1.29.3/include/config/i2cset.h: -------------------------------------------------------------------------------- 1 | #undef CONFIG_I2CSET 2 | -------------------------------------------------------------------------------- /busybox-v1.29.3/include/config/id.h: -------------------------------------------------------------------------------- 1 | #undef CONFIG_ID 2 | -------------------------------------------------------------------------------- /busybox-v1.29.3/include/config/ifdown.h: -------------------------------------------------------------------------------- 1 | #undef CONFIG_IFDOWN 2 | -------------------------------------------------------------------------------- /busybox-v1.29.3/include/config/ifenslave.h: -------------------------------------------------------------------------------- 1 | #undef CONFIG_IFENSLAVE 2 | -------------------------------------------------------------------------------- /busybox-v1.29.3/include/config/ifplugd.h: -------------------------------------------------------------------------------- 1 | #undef CONFIG_IFPLUGD 2 | -------------------------------------------------------------------------------- /busybox-v1.29.3/include/config/ifup.h: -------------------------------------------------------------------------------- 1 | #undef CONFIG_IFUP 2 | -------------------------------------------------------------------------------- /busybox-v1.29.3/include/config/include/susv2.h: -------------------------------------------------------------------------------- 1 | #undef CONFIG_INCLUDE_SUSv2 2 | -------------------------------------------------------------------------------- /busybox-v1.29.3/include/config/inetd.h: -------------------------------------------------------------------------------- 1 | #undef CONFIG_INETD 2 | -------------------------------------------------------------------------------- /busybox-v1.29.3/include/config/init.h: -------------------------------------------------------------------------------- 1 | #undef CONFIG_INIT 2 | -------------------------------------------------------------------------------- /busybox-v1.29.3/include/config/init/terminal/type.h: -------------------------------------------------------------------------------- 1 | #define CONFIG_INIT_TERMINAL_TYPE "" 2 | -------------------------------------------------------------------------------- /busybox-v1.29.3/include/config/inotifyd.h: -------------------------------------------------------------------------------- 1 | #undef CONFIG_INOTIFYD 2 | -------------------------------------------------------------------------------- /busybox-v1.29.3/include/config/insmod.h: -------------------------------------------------------------------------------- 1 | #undef CONFIG_INSMOD 2 | -------------------------------------------------------------------------------- /busybox-v1.29.3/include/config/install.h: -------------------------------------------------------------------------------- 1 | #undef CONFIG_INSTALL 2 | -------------------------------------------------------------------------------- /busybox-v1.29.3/include/config/install/applet/dont.h: -------------------------------------------------------------------------------- 1 | #undef CONFIG_INSTALL_APPLET_DONT 2 | -------------------------------------------------------------------------------- /busybox-v1.29.3/include/config/install/no/usr.h: -------------------------------------------------------------------------------- 1 | #define CONFIG_INSTALL_NO_USR 1 2 | -------------------------------------------------------------------------------- /busybox-v1.29.3/include/config/ioctl/hex2str/error.h: -------------------------------------------------------------------------------- 1 | #undef CONFIG_IOCTL_HEX2STR_ERROR 2 | -------------------------------------------------------------------------------- /busybox-v1.29.3/include/config/ionice.h: -------------------------------------------------------------------------------- 1 | #undef CONFIG_IONICE 2 | -------------------------------------------------------------------------------- /busybox-v1.29.3/include/config/iostat.h: -------------------------------------------------------------------------------- 1 | #undef CONFIG_IOSTAT 2 | -------------------------------------------------------------------------------- /busybox-v1.29.3/include/config/ip.h: -------------------------------------------------------------------------------- 1 | #undef CONFIG_IP 2 | -------------------------------------------------------------------------------- /busybox-v1.29.3/include/config/ipaddr.h: -------------------------------------------------------------------------------- 1 | #undef CONFIG_IPADDR 2 | -------------------------------------------------------------------------------- /busybox-v1.29.3/include/config/ipcalc.h: -------------------------------------------------------------------------------- 1 | #undef CONFIG_IPCALC 2 | -------------------------------------------------------------------------------- /busybox-v1.29.3/include/config/ipcrm.h: -------------------------------------------------------------------------------- 1 | #undef CONFIG_IPCRM 2 | -------------------------------------------------------------------------------- /busybox-v1.29.3/include/config/ipcs.h: -------------------------------------------------------------------------------- 1 | #undef CONFIG_IPCS 2 | -------------------------------------------------------------------------------- /busybox-v1.29.3/include/config/iplink.h: -------------------------------------------------------------------------------- 1 | #undef CONFIG_IPLINK 2 | -------------------------------------------------------------------------------- /busybox-v1.29.3/include/config/ipneigh.h: -------------------------------------------------------------------------------- 1 | #undef CONFIG_IPNEIGH 2 | -------------------------------------------------------------------------------- /busybox-v1.29.3/include/config/iproute.h: -------------------------------------------------------------------------------- 1 | #undef CONFIG_IPROUTE 2 | -------------------------------------------------------------------------------- /busybox-v1.29.3/include/config/iprule.h: -------------------------------------------------------------------------------- 1 | #undef CONFIG_IPRULE 2 | -------------------------------------------------------------------------------- /busybox-v1.29.3/include/config/iptunnel.h: -------------------------------------------------------------------------------- 1 | #undef CONFIG_IPTUNNEL 2 | -------------------------------------------------------------------------------- /busybox-v1.29.3/include/config/kbd/mode.h: -------------------------------------------------------------------------------- 1 | #undef CONFIG_KBD_MODE 2 | -------------------------------------------------------------------------------- /busybox-v1.29.3/include/config/kill.h: -------------------------------------------------------------------------------- 1 | #undef CONFIG_KILL 2 | -------------------------------------------------------------------------------- /busybox-v1.29.3/include/config/killall.h: -------------------------------------------------------------------------------- 1 | #undef CONFIG_KILLALL 2 | -------------------------------------------------------------------------------- /busybox-v1.29.3/include/config/killall5.h: -------------------------------------------------------------------------------- 1 | #undef CONFIG_KILLALL5 2 | -------------------------------------------------------------------------------- /busybox-v1.29.3/include/config/klogd.h: -------------------------------------------------------------------------------- 1 | #undef CONFIG_KLOGD 2 | -------------------------------------------------------------------------------- /busybox-v1.29.3/include/config/last.h: -------------------------------------------------------------------------------- 1 | #undef CONFIG_LAST 2 | -------------------------------------------------------------------------------- /busybox-v1.29.3/include/config/last/id.h: -------------------------------------------------------------------------------- 1 | #define CONFIG_LAST_ID 0 2 | -------------------------------------------------------------------------------- /busybox-v1.29.3/include/config/last/system/id.h: -------------------------------------------------------------------------------- 1 | #define CONFIG_LAST_SYSTEM_ID 0 2 | -------------------------------------------------------------------------------- /busybox-v1.29.3/include/config/less.h: -------------------------------------------------------------------------------- 1 | #undef CONFIG_LESS 2 | -------------------------------------------------------------------------------- /busybox-v1.29.3/include/config/lfs.h: -------------------------------------------------------------------------------- 1 | #undef CONFIG_LFS 2 | -------------------------------------------------------------------------------- /busybox-v1.29.3/include/config/link.h: -------------------------------------------------------------------------------- 1 | #undef CONFIG_LINK 2 | -------------------------------------------------------------------------------- /busybox-v1.29.3/include/config/linux32.h: -------------------------------------------------------------------------------- 1 | #undef CONFIG_LINUX32 2 | -------------------------------------------------------------------------------- /busybox-v1.29.3/include/config/linux64.h: -------------------------------------------------------------------------------- 1 | #undef CONFIG_LINUX64 2 | -------------------------------------------------------------------------------- /busybox-v1.29.3/include/config/linuxrc.h: -------------------------------------------------------------------------------- 1 | #undef CONFIG_LINUXRC 2 | -------------------------------------------------------------------------------- /busybox-v1.29.3/include/config/ln.h: -------------------------------------------------------------------------------- 1 | #define CONFIG_LN 1 2 | -------------------------------------------------------------------------------- /busybox-v1.29.3/include/config/load/policy.h: -------------------------------------------------------------------------------- 1 | #undef CONFIG_LOAD_POLICY 2 | -------------------------------------------------------------------------------- /busybox-v1.29.3/include/config/loadfont.h: -------------------------------------------------------------------------------- 1 | #undef CONFIG_LOADFONT 2 | -------------------------------------------------------------------------------- /busybox-v1.29.3/include/config/loadkmap.h: -------------------------------------------------------------------------------- 1 | #undef CONFIG_LOADKMAP 2 | -------------------------------------------------------------------------------- /busybox-v1.29.3/include/config/locale/support.h: -------------------------------------------------------------------------------- 1 | #undef CONFIG_LOCALE_SUPPORT 2 | -------------------------------------------------------------------------------- /busybox-v1.29.3/include/config/logger.h: -------------------------------------------------------------------------------- 1 | #undef CONFIG_LOGGER 2 | -------------------------------------------------------------------------------- /busybox-v1.29.3/include/config/login.h: -------------------------------------------------------------------------------- 1 | #undef CONFIG_LOGIN 2 | -------------------------------------------------------------------------------- /busybox-v1.29.3/include/config/login/scripts.h: -------------------------------------------------------------------------------- 1 | #undef CONFIG_LOGIN_SCRIPTS 2 | -------------------------------------------------------------------------------- /busybox-v1.29.3/include/config/logname.h: -------------------------------------------------------------------------------- 1 | #undef CONFIG_LOGNAME 2 | -------------------------------------------------------------------------------- /busybox-v1.29.3/include/config/logread.h: -------------------------------------------------------------------------------- 1 | #undef CONFIG_LOGREAD 2 | -------------------------------------------------------------------------------- /busybox-v1.29.3/include/config/long/opts.h: -------------------------------------------------------------------------------- 1 | #define CONFIG_LONG_OPTS 1 2 | -------------------------------------------------------------------------------- /busybox-v1.29.3/include/config/losetup.h: -------------------------------------------------------------------------------- 1 | #undef CONFIG_LOSETUP 2 | -------------------------------------------------------------------------------- /busybox-v1.29.3/include/config/lpd.h: -------------------------------------------------------------------------------- 1 | #undef CONFIG_LPD 2 | -------------------------------------------------------------------------------- /busybox-v1.29.3/include/config/lpq.h: -------------------------------------------------------------------------------- 1 | #undef CONFIG_LPQ 2 | -------------------------------------------------------------------------------- /busybox-v1.29.3/include/config/lpr.h: -------------------------------------------------------------------------------- 1 | #undef CONFIG_LPR 2 | -------------------------------------------------------------------------------- /busybox-v1.29.3/include/config/ls.h: -------------------------------------------------------------------------------- 1 | #define CONFIG_LS 1 2 | -------------------------------------------------------------------------------- /busybox-v1.29.3/include/config/lsattr.h: -------------------------------------------------------------------------------- 1 | #undef CONFIG_LSATTR 2 | -------------------------------------------------------------------------------- /busybox-v1.29.3/include/config/lsmod.h: -------------------------------------------------------------------------------- 1 | #undef CONFIG_LSMOD 2 | -------------------------------------------------------------------------------- /busybox-v1.29.3/include/config/lsof.h: -------------------------------------------------------------------------------- 1 | #undef CONFIG_LSOF 2 | -------------------------------------------------------------------------------- /busybox-v1.29.3/include/config/lspci.h: -------------------------------------------------------------------------------- 1 | #undef CONFIG_LSPCI 2 | -------------------------------------------------------------------------------- /busybox-v1.29.3/include/config/lsscsi.h: -------------------------------------------------------------------------------- 1 | #undef CONFIG_LSSCSI 2 | -------------------------------------------------------------------------------- /busybox-v1.29.3/include/config/lsusb.h: -------------------------------------------------------------------------------- 1 | #undef CONFIG_LSUSB 2 | -------------------------------------------------------------------------------- /busybox-v1.29.3/include/config/lzcat.h: -------------------------------------------------------------------------------- 1 | #undef CONFIG_LZCAT 2 | -------------------------------------------------------------------------------- /busybox-v1.29.3/include/config/lzma.h: -------------------------------------------------------------------------------- 1 | #undef CONFIG_LZMA 2 | -------------------------------------------------------------------------------- /busybox-v1.29.3/include/config/lzop.h: -------------------------------------------------------------------------------- 1 | #undef CONFIG_LZOP 2 | -------------------------------------------------------------------------------- /busybox-v1.29.3/include/config/lzop/compr/high.h: -------------------------------------------------------------------------------- 1 | #undef CONFIG_LZOP_COMPR_HIGH 2 | -------------------------------------------------------------------------------- /busybox-v1.29.3/include/config/lzopcat.h: -------------------------------------------------------------------------------- 1 | #undef CONFIG_LZOPCAT 2 | -------------------------------------------------------------------------------- /busybox-v1.29.3/include/config/makedevs.h: -------------------------------------------------------------------------------- 1 | #undef CONFIG_MAKEDEVS 2 | -------------------------------------------------------------------------------- /busybox-v1.29.3/include/config/makemime.h: -------------------------------------------------------------------------------- 1 | #undef CONFIG_MAKEMIME 2 | -------------------------------------------------------------------------------- /busybox-v1.29.3/include/config/man.h: -------------------------------------------------------------------------------- 1 | #undef CONFIG_MAN 2 | -------------------------------------------------------------------------------- /busybox-v1.29.3/include/config/matchpathcon.h: -------------------------------------------------------------------------------- 1 | #undef CONFIG_MATCHPATHCON 2 | -------------------------------------------------------------------------------- /busybox-v1.29.3/include/config/md5/small.h: -------------------------------------------------------------------------------- 1 | #define CONFIG_MD5_SMALL 0 2 | -------------------------------------------------------------------------------- /busybox-v1.29.3/include/config/md5sum.h: -------------------------------------------------------------------------------- 1 | #define CONFIG_MD5SUM 1 2 | -------------------------------------------------------------------------------- /busybox-v1.29.3/include/config/mdev.h: -------------------------------------------------------------------------------- 1 | #undef CONFIG_MDEV 2 | -------------------------------------------------------------------------------- /busybox-v1.29.3/include/config/mesg.h: -------------------------------------------------------------------------------- 1 | #undef CONFIG_MESG 2 | -------------------------------------------------------------------------------- /busybox-v1.29.3/include/config/microcom.h: -------------------------------------------------------------------------------- 1 | #undef CONFIG_MICROCOM 2 | -------------------------------------------------------------------------------- /busybox-v1.29.3/include/config/minips.h: -------------------------------------------------------------------------------- 1 | #undef CONFIG_MINIPS 2 | -------------------------------------------------------------------------------- /busybox-v1.29.3/include/config/mkdir.h: -------------------------------------------------------------------------------- 1 | #define CONFIG_MKDIR 1 2 | -------------------------------------------------------------------------------- /busybox-v1.29.3/include/config/mkdosfs.h: -------------------------------------------------------------------------------- 1 | #undef CONFIG_MKDOSFS 2 | -------------------------------------------------------------------------------- /busybox-v1.29.3/include/config/mke2fs.h: -------------------------------------------------------------------------------- 1 | #undef CONFIG_MKE2FS 2 | -------------------------------------------------------------------------------- /busybox-v1.29.3/include/config/mkfifo.h: -------------------------------------------------------------------------------- 1 | #define CONFIG_MKFIFO 1 2 | -------------------------------------------------------------------------------- /busybox-v1.29.3/include/config/mkfs/ext2.h: -------------------------------------------------------------------------------- 1 | #undef CONFIG_MKFS_EXT2 2 | -------------------------------------------------------------------------------- /busybox-v1.29.3/include/config/mkfs/minix.h: -------------------------------------------------------------------------------- 1 | #undef CONFIG_MKFS_MINIX 2 | -------------------------------------------------------------------------------- /busybox-v1.29.3/include/config/mkfs/reiser.h: -------------------------------------------------------------------------------- 1 | #undef CONFIG_MKFS_REISER 2 | -------------------------------------------------------------------------------- /busybox-v1.29.3/include/config/mkfs/vfat.h: -------------------------------------------------------------------------------- 1 | #undef CONFIG_MKFS_VFAT 2 | -------------------------------------------------------------------------------- /busybox-v1.29.3/include/config/mknod.h: -------------------------------------------------------------------------------- 1 | #undef CONFIG_MKNOD 2 | -------------------------------------------------------------------------------- /busybox-v1.29.3/include/config/mkpasswd.h: -------------------------------------------------------------------------------- 1 | #undef CONFIG_MKPASSWD 2 | -------------------------------------------------------------------------------- /busybox-v1.29.3/include/config/mkswap.h: -------------------------------------------------------------------------------- 1 | #undef CONFIG_MKSWAP 2 | -------------------------------------------------------------------------------- /busybox-v1.29.3/include/config/mktemp.h: -------------------------------------------------------------------------------- 1 | #undef CONFIG_MKTEMP 2 | -------------------------------------------------------------------------------- /busybox-v1.29.3/include/config/modinfo.h: -------------------------------------------------------------------------------- 1 | #undef CONFIG_MODINFO 2 | -------------------------------------------------------------------------------- /busybox-v1.29.3/include/config/modprobe.h: -------------------------------------------------------------------------------- 1 | #undef CONFIG_MODPROBE 2 | -------------------------------------------------------------------------------- /busybox-v1.29.3/include/config/modprobe/small.h: -------------------------------------------------------------------------------- 1 | #undef CONFIG_MODPROBE_SMALL 2 | -------------------------------------------------------------------------------- /busybox-v1.29.3/include/config/monotonic/syscall.h: -------------------------------------------------------------------------------- 1 | #undef CONFIG_MONOTONIC_SYSCALL 2 | -------------------------------------------------------------------------------- /busybox-v1.29.3/include/config/more.h: -------------------------------------------------------------------------------- 1 | #undef CONFIG_MORE 2 | -------------------------------------------------------------------------------- /busybox-v1.29.3/include/config/mount.h: -------------------------------------------------------------------------------- 1 | #define CONFIG_MOUNT 1 2 | -------------------------------------------------------------------------------- /busybox-v1.29.3/include/config/mountpoint.h: -------------------------------------------------------------------------------- 1 | #define CONFIG_MOUNTPOINT 1 2 | -------------------------------------------------------------------------------- /busybox-v1.29.3/include/config/mpstat.h: -------------------------------------------------------------------------------- 1 | #undef CONFIG_MPSTAT 2 | -------------------------------------------------------------------------------- /busybox-v1.29.3/include/config/mt.h: -------------------------------------------------------------------------------- 1 | #undef CONFIG_MT 2 | -------------------------------------------------------------------------------- /busybox-v1.29.3/include/config/mv.h: -------------------------------------------------------------------------------- 1 | #define CONFIG_MV 1 2 | -------------------------------------------------------------------------------- /busybox-v1.29.3/include/config/nameif.h: -------------------------------------------------------------------------------- 1 | #undef CONFIG_NAMEIF 2 | -------------------------------------------------------------------------------- /busybox-v1.29.3/include/config/nanddump.h: -------------------------------------------------------------------------------- 1 | #undef CONFIG_NANDDUMP 2 | -------------------------------------------------------------------------------- /busybox-v1.29.3/include/config/nandwrite.h: -------------------------------------------------------------------------------- 1 | #undef CONFIG_NANDWRITE 2 | -------------------------------------------------------------------------------- /busybox-v1.29.3/include/config/nbdclient.h: -------------------------------------------------------------------------------- 1 | #undef CONFIG_NBDCLIENT 2 | -------------------------------------------------------------------------------- /busybox-v1.29.3/include/config/nc.h: -------------------------------------------------------------------------------- 1 | #undef CONFIG_NC 2 | -------------------------------------------------------------------------------- /busybox-v1.29.3/include/config/nc/110/compat.h: -------------------------------------------------------------------------------- 1 | #undef CONFIG_NC_110_COMPAT 2 | -------------------------------------------------------------------------------- /busybox-v1.29.3/include/config/nc/extra.h: -------------------------------------------------------------------------------- 1 | #undef CONFIG_NC_EXTRA 2 | -------------------------------------------------------------------------------- /busybox-v1.29.3/include/config/nc/server.h: -------------------------------------------------------------------------------- 1 | #undef CONFIG_NC_SERVER 2 | -------------------------------------------------------------------------------- /busybox-v1.29.3/include/config/netcat.h: -------------------------------------------------------------------------------- 1 | #undef CONFIG_NETCAT 2 | -------------------------------------------------------------------------------- /busybox-v1.29.3/include/config/netstat.h: -------------------------------------------------------------------------------- 1 | #undef CONFIG_NETSTAT 2 | -------------------------------------------------------------------------------- /busybox-v1.29.3/include/config/nice.h: -------------------------------------------------------------------------------- 1 | #undef CONFIG_NICE 2 | -------------------------------------------------------------------------------- /busybox-v1.29.3/include/config/nl.h: -------------------------------------------------------------------------------- 1 | #undef CONFIG_NL 2 | -------------------------------------------------------------------------------- /busybox-v1.29.3/include/config/nmeter.h: -------------------------------------------------------------------------------- 1 | #undef CONFIG_NMETER 2 | -------------------------------------------------------------------------------- /busybox-v1.29.3/include/config/no/debug/lib.h: -------------------------------------------------------------------------------- 1 | #define CONFIG_NO_DEBUG_LIB 1 2 | -------------------------------------------------------------------------------- /busybox-v1.29.3/include/config/nohup.h: -------------------------------------------------------------------------------- 1 | #undef CONFIG_NOHUP 2 | -------------------------------------------------------------------------------- /busybox-v1.29.3/include/config/nommu.h: -------------------------------------------------------------------------------- 1 | #undef CONFIG_NOMMU 2 | -------------------------------------------------------------------------------- /busybox-v1.29.3/include/config/nproc.h: -------------------------------------------------------------------------------- 1 | #undef CONFIG_NPROC 2 | -------------------------------------------------------------------------------- /busybox-v1.29.3/include/config/nsenter.h: -------------------------------------------------------------------------------- 1 | #undef CONFIG_NSENTER 2 | -------------------------------------------------------------------------------- /busybox-v1.29.3/include/config/nslookup.h: -------------------------------------------------------------------------------- 1 | #undef CONFIG_NSLOOKUP 2 | -------------------------------------------------------------------------------- /busybox-v1.29.3/include/config/ntpd.h: -------------------------------------------------------------------------------- 1 | #undef CONFIG_NTPD 2 | -------------------------------------------------------------------------------- /busybox-v1.29.3/include/config/nuke.h: -------------------------------------------------------------------------------- 1 | #undef CONFIG_NUKE 2 | -------------------------------------------------------------------------------- /busybox-v1.29.3/include/config/od.h: -------------------------------------------------------------------------------- 1 | #undef CONFIG_OD 2 | -------------------------------------------------------------------------------- /busybox-v1.29.3/include/config/openvt.h: -------------------------------------------------------------------------------- 1 | #undef CONFIG_OPENVT 2 | -------------------------------------------------------------------------------- /busybox-v1.29.3/include/config/pam.h: -------------------------------------------------------------------------------- 1 | #undef CONFIG_PAM 2 | -------------------------------------------------------------------------------- /busybox-v1.29.3/include/config/partprobe.h: -------------------------------------------------------------------------------- 1 | #undef CONFIG_PARTPROBE 2 | -------------------------------------------------------------------------------- /busybox-v1.29.3/include/config/passwd.h: -------------------------------------------------------------------------------- 1 | #undef CONFIG_PASSWD 2 | -------------------------------------------------------------------------------- /busybox-v1.29.3/include/config/password/minlen.h: -------------------------------------------------------------------------------- 1 | #define CONFIG_PASSWORD_MINLEN 6 2 | -------------------------------------------------------------------------------- /busybox-v1.29.3/include/config/paste.h: -------------------------------------------------------------------------------- 1 | #undef CONFIG_PASTE 2 | -------------------------------------------------------------------------------- /busybox-v1.29.3/include/config/patch.h: -------------------------------------------------------------------------------- 1 | #undef CONFIG_PATCH 2 | -------------------------------------------------------------------------------- /busybox-v1.29.3/include/config/pgrep.h: -------------------------------------------------------------------------------- 1 | #undef CONFIG_PGREP 2 | -------------------------------------------------------------------------------- /busybox-v1.29.3/include/config/pid/file/path.h: -------------------------------------------------------------------------------- 1 | #define CONFIG_PID_FILE_PATH "" 2 | -------------------------------------------------------------------------------- /busybox-v1.29.3/include/config/pidof.h: -------------------------------------------------------------------------------- 1 | #undef CONFIG_PIDOF 2 | -------------------------------------------------------------------------------- /busybox-v1.29.3/include/config/pie.h: -------------------------------------------------------------------------------- 1 | #define CONFIG_PIE 1 2 | -------------------------------------------------------------------------------- /busybox-v1.29.3/include/config/ping.h: -------------------------------------------------------------------------------- 1 | #undef CONFIG_PING 2 | -------------------------------------------------------------------------------- /busybox-v1.29.3/include/config/ping6.h: -------------------------------------------------------------------------------- 1 | #undef CONFIG_PING6 2 | -------------------------------------------------------------------------------- /busybox-v1.29.3/include/config/pipe/progress.h: -------------------------------------------------------------------------------- 1 | #undef CONFIG_PIPE_PROGRESS 2 | -------------------------------------------------------------------------------- /busybox-v1.29.3/include/config/pivot/root.h: -------------------------------------------------------------------------------- 1 | #undef CONFIG_PIVOT_ROOT 2 | -------------------------------------------------------------------------------- /busybox-v1.29.3/include/config/pkill.h: -------------------------------------------------------------------------------- 1 | #undef CONFIG_PKILL 2 | -------------------------------------------------------------------------------- /busybox-v1.29.3/include/config/platform/linux.h: -------------------------------------------------------------------------------- 1 | #define CONFIG_PLATFORM_LINUX 1 2 | -------------------------------------------------------------------------------- /busybox-v1.29.3/include/config/pmap.h: -------------------------------------------------------------------------------- 1 | #undef CONFIG_PMAP 2 | -------------------------------------------------------------------------------- /busybox-v1.29.3/include/config/popmaildir.h: -------------------------------------------------------------------------------- 1 | #undef CONFIG_POPMAILDIR 2 | -------------------------------------------------------------------------------- /busybox-v1.29.3/include/config/poweroff.h: -------------------------------------------------------------------------------- 1 | #undef CONFIG_POWEROFF 2 | -------------------------------------------------------------------------------- /busybox-v1.29.3/include/config/powertop.h: -------------------------------------------------------------------------------- 1 | #undef CONFIG_POWERTOP 2 | -------------------------------------------------------------------------------- /busybox-v1.29.3/include/config/prefix.h: -------------------------------------------------------------------------------- 1 | #define CONFIG_PREFIX "./_install" 2 | -------------------------------------------------------------------------------- /busybox-v1.29.3/include/config/printenv.h: -------------------------------------------------------------------------------- 1 | #undef CONFIG_PRINTENV 2 | -------------------------------------------------------------------------------- /busybox-v1.29.3/include/config/printf.h: -------------------------------------------------------------------------------- 1 | #undef CONFIG_PRINTF 2 | -------------------------------------------------------------------------------- /busybox-v1.29.3/include/config/ps.h: -------------------------------------------------------------------------------- 1 | #undef CONFIG_PS 2 | -------------------------------------------------------------------------------- /busybox-v1.29.3/include/config/pscan.h: -------------------------------------------------------------------------------- 1 | #undef CONFIG_PSCAN 2 | -------------------------------------------------------------------------------- /busybox-v1.29.3/include/config/pstree.h: -------------------------------------------------------------------------------- 1 | #undef CONFIG_PSTREE 2 | -------------------------------------------------------------------------------- /busybox-v1.29.3/include/config/pwd.h: -------------------------------------------------------------------------------- 1 | #undef CONFIG_PWD 2 | -------------------------------------------------------------------------------- /busybox-v1.29.3/include/config/pwdx.h: -------------------------------------------------------------------------------- 1 | #undef CONFIG_PWDX 2 | -------------------------------------------------------------------------------- /busybox-v1.29.3/include/config/raidautorun.h: -------------------------------------------------------------------------------- 1 | #undef CONFIG_RAIDAUTORUN 2 | -------------------------------------------------------------------------------- /busybox-v1.29.3/include/config/rdate.h: -------------------------------------------------------------------------------- 1 | #undef CONFIG_RDATE 2 | -------------------------------------------------------------------------------- /busybox-v1.29.3/include/config/rdev.h: -------------------------------------------------------------------------------- 1 | #undef CONFIG_RDEV 2 | -------------------------------------------------------------------------------- /busybox-v1.29.3/include/config/readahead.h: -------------------------------------------------------------------------------- 1 | #undef CONFIG_READAHEAD 2 | -------------------------------------------------------------------------------- /busybox-v1.29.3/include/config/readlink.h: -------------------------------------------------------------------------------- 1 | #define CONFIG_READLINK 1 2 | -------------------------------------------------------------------------------- /busybox-v1.29.3/include/config/readprofile.h: -------------------------------------------------------------------------------- 1 | #undef CONFIG_READPROFILE 2 | -------------------------------------------------------------------------------- /busybox-v1.29.3/include/config/realpath.h: -------------------------------------------------------------------------------- 1 | #undef CONFIG_REALPATH 2 | -------------------------------------------------------------------------------- /busybox-v1.29.3/include/config/reboot.h: -------------------------------------------------------------------------------- 1 | #undef CONFIG_REBOOT 2 | -------------------------------------------------------------------------------- /busybox-v1.29.3/include/config/reformime.h: -------------------------------------------------------------------------------- 1 | #undef CONFIG_REFORMIME 2 | -------------------------------------------------------------------------------- /busybox-v1.29.3/include/config/remove/shell.h: -------------------------------------------------------------------------------- 1 | #undef CONFIG_REMOVE_SHELL 2 | -------------------------------------------------------------------------------- /busybox-v1.29.3/include/config/renice.h: -------------------------------------------------------------------------------- 1 | #undef CONFIG_RENICE 2 | -------------------------------------------------------------------------------- /busybox-v1.29.3/include/config/reset.h: -------------------------------------------------------------------------------- 1 | #undef CONFIG_RESET 2 | -------------------------------------------------------------------------------- /busybox-v1.29.3/include/config/resize.h: -------------------------------------------------------------------------------- 1 | #undef CONFIG_RESIZE 2 | -------------------------------------------------------------------------------- /busybox-v1.29.3/include/config/restorecon.h: -------------------------------------------------------------------------------- 1 | #undef CONFIG_RESTORECON 2 | -------------------------------------------------------------------------------- /busybox-v1.29.3/include/config/resume.h: -------------------------------------------------------------------------------- 1 | #undef CONFIG_RESUME 2 | -------------------------------------------------------------------------------- /busybox-v1.29.3/include/config/rev.h: -------------------------------------------------------------------------------- 1 | #undef CONFIG_REV 2 | -------------------------------------------------------------------------------- /busybox-v1.29.3/include/config/rfkill.h: -------------------------------------------------------------------------------- 1 | #undef CONFIG_RFKILL 2 | -------------------------------------------------------------------------------- /busybox-v1.29.3/include/config/rm.h: -------------------------------------------------------------------------------- 1 | #define CONFIG_RM 1 2 | -------------------------------------------------------------------------------- /busybox-v1.29.3/include/config/rmdir.h: -------------------------------------------------------------------------------- 1 | #define CONFIG_RMDIR 1 2 | -------------------------------------------------------------------------------- /busybox-v1.29.3/include/config/rmmod.h: -------------------------------------------------------------------------------- 1 | #undef CONFIG_RMMOD 2 | -------------------------------------------------------------------------------- /busybox-v1.29.3/include/config/route.h: -------------------------------------------------------------------------------- 1 | #undef CONFIG_ROUTE 2 | -------------------------------------------------------------------------------- /busybox-v1.29.3/include/config/rpm.h: -------------------------------------------------------------------------------- 1 | #undef CONFIG_RPM 2 | -------------------------------------------------------------------------------- /busybox-v1.29.3/include/config/rpm2cpio.h: -------------------------------------------------------------------------------- 1 | #undef CONFIG_RPM2CPIO 2 | -------------------------------------------------------------------------------- /busybox-v1.29.3/include/config/rtcwake.h: -------------------------------------------------------------------------------- 1 | #undef CONFIG_RTCWAKE 2 | -------------------------------------------------------------------------------- /busybox-v1.29.3/include/config/run/init.h: -------------------------------------------------------------------------------- 1 | #undef CONFIG_RUN_INIT 2 | -------------------------------------------------------------------------------- /busybox-v1.29.3/include/config/run/parts.h: -------------------------------------------------------------------------------- 1 | #undef CONFIG_RUN_PARTS 2 | -------------------------------------------------------------------------------- /busybox-v1.29.3/include/config/runcon.h: -------------------------------------------------------------------------------- 1 | #undef CONFIG_RUNCON 2 | -------------------------------------------------------------------------------- /busybox-v1.29.3/include/config/runlevel.h: -------------------------------------------------------------------------------- 1 | #undef CONFIG_RUNLEVEL 2 | -------------------------------------------------------------------------------- /busybox-v1.29.3/include/config/runsv.h: -------------------------------------------------------------------------------- 1 | #undef CONFIG_RUNSV 2 | -------------------------------------------------------------------------------- /busybox-v1.29.3/include/config/runsvdir.h: -------------------------------------------------------------------------------- 1 | #undef CONFIG_RUNSVDIR 2 | -------------------------------------------------------------------------------- /busybox-v1.29.3/include/config/rx.h: -------------------------------------------------------------------------------- 1 | #undef CONFIG_RX 2 | -------------------------------------------------------------------------------- /busybox-v1.29.3/include/config/script.h: -------------------------------------------------------------------------------- 1 | #undef CONFIG_SCRIPT 2 | -------------------------------------------------------------------------------- /busybox-v1.29.3/include/config/scriptreplay.h: -------------------------------------------------------------------------------- 1 | #undef CONFIG_SCRIPTREPLAY 2 | -------------------------------------------------------------------------------- /busybox-v1.29.3/include/config/sed.h: -------------------------------------------------------------------------------- 1 | #undef CONFIG_SED 2 | -------------------------------------------------------------------------------- /busybox-v1.29.3/include/config/selinux.h: -------------------------------------------------------------------------------- 1 | #undef CONFIG_SELINUX 2 | -------------------------------------------------------------------------------- /busybox-v1.29.3/include/config/selinuxenabled.h: -------------------------------------------------------------------------------- 1 | #undef CONFIG_SELINUXENABLED 2 | -------------------------------------------------------------------------------- /busybox-v1.29.3/include/config/sendmail.h: -------------------------------------------------------------------------------- 1 | #undef CONFIG_SENDMAIL 2 | -------------------------------------------------------------------------------- /busybox-v1.29.3/include/config/seq.h: -------------------------------------------------------------------------------- 1 | #undef CONFIG_SEQ 2 | -------------------------------------------------------------------------------- /busybox-v1.29.3/include/config/sestatus.h: -------------------------------------------------------------------------------- 1 | #undef CONFIG_SESTATUS 2 | -------------------------------------------------------------------------------- /busybox-v1.29.3/include/config/setarch.h: -------------------------------------------------------------------------------- 1 | #undef CONFIG_SETARCH 2 | -------------------------------------------------------------------------------- /busybox-v1.29.3/include/config/setconsole.h: -------------------------------------------------------------------------------- 1 | #undef CONFIG_SETCONSOLE 2 | -------------------------------------------------------------------------------- /busybox-v1.29.3/include/config/setenforce.h: -------------------------------------------------------------------------------- 1 | #undef CONFIG_SETENFORCE 2 | -------------------------------------------------------------------------------- /busybox-v1.29.3/include/config/setfattr.h: -------------------------------------------------------------------------------- 1 | #undef CONFIG_SETFATTR 2 | -------------------------------------------------------------------------------- /busybox-v1.29.3/include/config/setfiles.h: -------------------------------------------------------------------------------- 1 | #undef CONFIG_SETFILES 2 | -------------------------------------------------------------------------------- /busybox-v1.29.3/include/config/setfont.h: -------------------------------------------------------------------------------- 1 | #undef CONFIG_SETFONT 2 | -------------------------------------------------------------------------------- /busybox-v1.29.3/include/config/setkeycodes.h: -------------------------------------------------------------------------------- 1 | #undef CONFIG_SETKEYCODES 2 | -------------------------------------------------------------------------------- /busybox-v1.29.3/include/config/setlogcons.h: -------------------------------------------------------------------------------- 1 | #undef CONFIG_SETLOGCONS 2 | -------------------------------------------------------------------------------- /busybox-v1.29.3/include/config/setpriv.h: -------------------------------------------------------------------------------- 1 | #undef CONFIG_SETPRIV 2 | -------------------------------------------------------------------------------- /busybox-v1.29.3/include/config/setsebool.h: -------------------------------------------------------------------------------- 1 | #undef CONFIG_SETSEBOOL 2 | -------------------------------------------------------------------------------- /busybox-v1.29.3/include/config/setserial.h: -------------------------------------------------------------------------------- 1 | #undef CONFIG_SETSERIAL 2 | -------------------------------------------------------------------------------- /busybox-v1.29.3/include/config/setsid.h: -------------------------------------------------------------------------------- 1 | #undef CONFIG_SETSID 2 | -------------------------------------------------------------------------------- /busybox-v1.29.3/include/config/setuidgid.h: -------------------------------------------------------------------------------- 1 | #undef CONFIG_SETUIDGID 2 | -------------------------------------------------------------------------------- /busybox-v1.29.3/include/config/sh/is/ash.h: -------------------------------------------------------------------------------- 1 | #undef CONFIG_SH_IS_ASH 2 | -------------------------------------------------------------------------------- /busybox-v1.29.3/include/config/sh/is/hush.h: -------------------------------------------------------------------------------- 1 | #undef CONFIG_SH_IS_HUSH 2 | -------------------------------------------------------------------------------- /busybox-v1.29.3/include/config/sh/is/none.h: -------------------------------------------------------------------------------- 1 | #define CONFIG_SH_IS_NONE 1 2 | -------------------------------------------------------------------------------- /busybox-v1.29.3/include/config/sha1sum.h: -------------------------------------------------------------------------------- 1 | #define CONFIG_SHA1SUM 1 2 | -------------------------------------------------------------------------------- /busybox-v1.29.3/include/config/sha256sum.h: -------------------------------------------------------------------------------- 1 | #define CONFIG_SHA256SUM 1 2 | -------------------------------------------------------------------------------- /busybox-v1.29.3/include/config/sha3/small.h: -------------------------------------------------------------------------------- 1 | #define CONFIG_SHA3_SMALL 0 2 | -------------------------------------------------------------------------------- /busybox-v1.29.3/include/config/sha3sum.h: -------------------------------------------------------------------------------- 1 | #define CONFIG_SHA3SUM 1 2 | -------------------------------------------------------------------------------- /busybox-v1.29.3/include/config/sha512sum.h: -------------------------------------------------------------------------------- 1 | #define CONFIG_SHA512SUM 1 2 | -------------------------------------------------------------------------------- /busybox-v1.29.3/include/config/show/usage.h: -------------------------------------------------------------------------------- 1 | #define CONFIG_SHOW_USAGE 1 2 | -------------------------------------------------------------------------------- /busybox-v1.29.3/include/config/showkey.h: -------------------------------------------------------------------------------- 1 | #undef CONFIG_SHOWKEY 2 | -------------------------------------------------------------------------------- /busybox-v1.29.3/include/config/shred.h: -------------------------------------------------------------------------------- 1 | #undef CONFIG_SHRED 2 | -------------------------------------------------------------------------------- /busybox-v1.29.3/include/config/shuf.h: -------------------------------------------------------------------------------- 1 | #undef CONFIG_SHUF 2 | -------------------------------------------------------------------------------- /busybox-v1.29.3/include/config/slattach.h: -------------------------------------------------------------------------------- 1 | #undef CONFIG_SLATTACH 2 | -------------------------------------------------------------------------------- /busybox-v1.29.3/include/config/sleep.h: -------------------------------------------------------------------------------- 1 | #undef CONFIG_SLEEP 2 | -------------------------------------------------------------------------------- /busybox-v1.29.3/include/config/smemcap.h: -------------------------------------------------------------------------------- 1 | #undef CONFIG_SMEMCAP 2 | -------------------------------------------------------------------------------- /busybox-v1.29.3/include/config/softlimit.h: -------------------------------------------------------------------------------- 1 | #undef CONFIG_SOFTLIMIT 2 | -------------------------------------------------------------------------------- /busybox-v1.29.3/include/config/sort.h: -------------------------------------------------------------------------------- 1 | #undef CONFIG_SORT 2 | -------------------------------------------------------------------------------- /busybox-v1.29.3/include/config/split.h: -------------------------------------------------------------------------------- 1 | #undef CONFIG_SPLIT 2 | -------------------------------------------------------------------------------- /busybox-v1.29.3/include/config/ssl/client.h: -------------------------------------------------------------------------------- 1 | #undef CONFIG_SSL_CLIENT 2 | -------------------------------------------------------------------------------- /busybox-v1.29.3/include/config/start/stop/daemon.h: -------------------------------------------------------------------------------- 1 | #undef CONFIG_START_STOP_DAEMON 2 | -------------------------------------------------------------------------------- /busybox-v1.29.3/include/config/stat.h: -------------------------------------------------------------------------------- 1 | #undef CONFIG_STAT 2 | -------------------------------------------------------------------------------- /busybox-v1.29.3/include/config/static.h: -------------------------------------------------------------------------------- 1 | #undef CONFIG_STATIC 2 | -------------------------------------------------------------------------------- /busybox-v1.29.3/include/config/strings.h: -------------------------------------------------------------------------------- 1 | #undef CONFIG_STRINGS 2 | -------------------------------------------------------------------------------- /busybox-v1.29.3/include/config/stty.h: -------------------------------------------------------------------------------- 1 | #undef CONFIG_STTY 2 | -------------------------------------------------------------------------------- /busybox-v1.29.3/include/config/su.h: -------------------------------------------------------------------------------- 1 | #undef CONFIG_SU 2 | -------------------------------------------------------------------------------- /busybox-v1.29.3/include/config/subst/wchar.h: -------------------------------------------------------------------------------- 1 | #define CONFIG_SUBST_WCHAR 63 2 | -------------------------------------------------------------------------------- /busybox-v1.29.3/include/config/sulogin.h: -------------------------------------------------------------------------------- 1 | #undef CONFIG_SULOGIN 2 | -------------------------------------------------------------------------------- /busybox-v1.29.3/include/config/sum.h: -------------------------------------------------------------------------------- 1 | #undef CONFIG_SUM 2 | -------------------------------------------------------------------------------- /busybox-v1.29.3/include/config/sv.h: -------------------------------------------------------------------------------- 1 | #undef CONFIG_SV 2 | -------------------------------------------------------------------------------- /busybox-v1.29.3/include/config/svc.h: -------------------------------------------------------------------------------- 1 | #undef CONFIG_SVC 2 | -------------------------------------------------------------------------------- /busybox-v1.29.3/include/config/svlogd.h: -------------------------------------------------------------------------------- 1 | #undef CONFIG_SVLOGD 2 | -------------------------------------------------------------------------------- /busybox-v1.29.3/include/config/svok.h: -------------------------------------------------------------------------------- 1 | #undef CONFIG_SVOK 2 | -------------------------------------------------------------------------------- /busybox-v1.29.3/include/config/swapoff.h: -------------------------------------------------------------------------------- 1 | #undef CONFIG_SWAPOFF 2 | -------------------------------------------------------------------------------- /busybox-v1.29.3/include/config/swapon.h: -------------------------------------------------------------------------------- 1 | #undef CONFIG_SWAPON 2 | -------------------------------------------------------------------------------- /busybox-v1.29.3/include/config/switch/root.h: -------------------------------------------------------------------------------- 1 | #undef CONFIG_SWITCH_ROOT 2 | -------------------------------------------------------------------------------- /busybox-v1.29.3/include/config/sync.h: -------------------------------------------------------------------------------- 1 | #undef CONFIG_SYNC 2 | -------------------------------------------------------------------------------- /busybox-v1.29.3/include/config/syslogd.h: -------------------------------------------------------------------------------- 1 | #undef CONFIG_SYSLOGD 2 | -------------------------------------------------------------------------------- /busybox-v1.29.3/include/config/sysroot.h: -------------------------------------------------------------------------------- 1 | #define CONFIG_SYSROOT "/tc/x64/sysroot" 2 | -------------------------------------------------------------------------------- /busybox-v1.29.3/include/config/tac.h: -------------------------------------------------------------------------------- 1 | #undef CONFIG_TAC 2 | -------------------------------------------------------------------------------- /busybox-v1.29.3/include/config/tail.h: -------------------------------------------------------------------------------- 1 | #undef CONFIG_TAIL 2 | -------------------------------------------------------------------------------- /busybox-v1.29.3/include/config/tar.h: -------------------------------------------------------------------------------- 1 | #undef CONFIG_TAR 2 | -------------------------------------------------------------------------------- /busybox-v1.29.3/include/config/taskset.h: -------------------------------------------------------------------------------- 1 | #undef CONFIG_TASKSET 2 | -------------------------------------------------------------------------------- /busybox-v1.29.3/include/config/tc.h: -------------------------------------------------------------------------------- 1 | #undef CONFIG_TC 2 | -------------------------------------------------------------------------------- /busybox-v1.29.3/include/config/tcpsvd.h: -------------------------------------------------------------------------------- 1 | #undef CONFIG_TCPSVD 2 | -------------------------------------------------------------------------------- /busybox-v1.29.3/include/config/tee.h: -------------------------------------------------------------------------------- 1 | #undef CONFIG_TEE 2 | -------------------------------------------------------------------------------- /busybox-v1.29.3/include/config/telinit/path.h: -------------------------------------------------------------------------------- 1 | #define CONFIG_TELINIT_PATH "" 2 | -------------------------------------------------------------------------------- /busybox-v1.29.3/include/config/telnet.h: -------------------------------------------------------------------------------- 1 | #undef CONFIG_TELNET 2 | -------------------------------------------------------------------------------- /busybox-v1.29.3/include/config/telnetd.h: -------------------------------------------------------------------------------- 1 | #undef CONFIG_TELNETD 2 | -------------------------------------------------------------------------------- /busybox-v1.29.3/include/config/test.h: -------------------------------------------------------------------------------- 1 | #define CONFIG_TEST 1 2 | -------------------------------------------------------------------------------- /busybox-v1.29.3/include/config/test1.h: -------------------------------------------------------------------------------- 1 | #define CONFIG_TEST1 1 2 | -------------------------------------------------------------------------------- /busybox-v1.29.3/include/config/test2.h: -------------------------------------------------------------------------------- 1 | #define CONFIG_TEST2 1 2 | -------------------------------------------------------------------------------- /busybox-v1.29.3/include/config/tftp.h: -------------------------------------------------------------------------------- 1 | #undef CONFIG_TFTP 2 | -------------------------------------------------------------------------------- /busybox-v1.29.3/include/config/tftp/debug.h: -------------------------------------------------------------------------------- 1 | #undef CONFIG_TFTP_DEBUG 2 | -------------------------------------------------------------------------------- /busybox-v1.29.3/include/config/tftpd.h: -------------------------------------------------------------------------------- 1 | #undef CONFIG_TFTPD 2 | -------------------------------------------------------------------------------- /busybox-v1.29.3/include/config/time.h: -------------------------------------------------------------------------------- 1 | #undef CONFIG_TIME 2 | -------------------------------------------------------------------------------- /busybox-v1.29.3/include/config/timeout.h: -------------------------------------------------------------------------------- 1 | #undef CONFIG_TIMEOUT 2 | -------------------------------------------------------------------------------- /busybox-v1.29.3/include/config/tls.h: -------------------------------------------------------------------------------- 1 | #undef CONFIG_TLS 2 | -------------------------------------------------------------------------------- /busybox-v1.29.3/include/config/top.h: -------------------------------------------------------------------------------- 1 | #undef CONFIG_TOP 2 | -------------------------------------------------------------------------------- /busybox-v1.29.3/include/config/touch.h: -------------------------------------------------------------------------------- 1 | #define CONFIG_TOUCH 1 2 | -------------------------------------------------------------------------------- /busybox-v1.29.3/include/config/tr.h: -------------------------------------------------------------------------------- 1 | #undef CONFIG_TR 2 | -------------------------------------------------------------------------------- /busybox-v1.29.3/include/config/traceroute.h: -------------------------------------------------------------------------------- 1 | #undef CONFIG_TRACEROUTE 2 | -------------------------------------------------------------------------------- /busybox-v1.29.3/include/config/traceroute6.h: -------------------------------------------------------------------------------- 1 | #undef CONFIG_TRACEROUTE6 2 | -------------------------------------------------------------------------------- /busybox-v1.29.3/include/config/true.h: -------------------------------------------------------------------------------- 1 | #undef CONFIG_TRUE 2 | -------------------------------------------------------------------------------- /busybox-v1.29.3/include/config/truncate.h: -------------------------------------------------------------------------------- 1 | #undef CONFIG_TRUNCATE 2 | -------------------------------------------------------------------------------- /busybox-v1.29.3/include/config/tty.h: -------------------------------------------------------------------------------- 1 | #undef CONFIG_TTY 2 | -------------------------------------------------------------------------------- /busybox-v1.29.3/include/config/ttysize.h: -------------------------------------------------------------------------------- 1 | #undef CONFIG_TTYSIZE 2 | -------------------------------------------------------------------------------- /busybox-v1.29.3/include/config/tunctl.h: -------------------------------------------------------------------------------- 1 | #undef CONFIG_TUNCTL 2 | -------------------------------------------------------------------------------- /busybox-v1.29.3/include/config/tune2fs.h: -------------------------------------------------------------------------------- 1 | #undef CONFIG_TUNE2FS 2 | -------------------------------------------------------------------------------- /busybox-v1.29.3/include/config/ubiattach.h: -------------------------------------------------------------------------------- 1 | #undef CONFIG_UBIATTACH 2 | -------------------------------------------------------------------------------- /busybox-v1.29.3/include/config/ubidetach.h: -------------------------------------------------------------------------------- 1 | #undef CONFIG_UBIDETACH 2 | -------------------------------------------------------------------------------- /busybox-v1.29.3/include/config/ubimkvol.h: -------------------------------------------------------------------------------- 1 | #undef CONFIG_UBIMKVOL 2 | -------------------------------------------------------------------------------- /busybox-v1.29.3/include/config/ubirename.h: -------------------------------------------------------------------------------- 1 | #undef CONFIG_UBIRENAME 2 | -------------------------------------------------------------------------------- /busybox-v1.29.3/include/config/ubirmvol.h: -------------------------------------------------------------------------------- 1 | #undef CONFIG_UBIRMVOL 2 | -------------------------------------------------------------------------------- /busybox-v1.29.3/include/config/ubirsvol.h: -------------------------------------------------------------------------------- 1 | #undef CONFIG_UBIRSVOL 2 | -------------------------------------------------------------------------------- /busybox-v1.29.3/include/config/ubiupdatevol.h: -------------------------------------------------------------------------------- 1 | #undef CONFIG_UBIUPDATEVOL 2 | -------------------------------------------------------------------------------- /busybox-v1.29.3/include/config/udhcp/debug.h: -------------------------------------------------------------------------------- 1 | #define CONFIG_UDHCP_DEBUG 0 2 | -------------------------------------------------------------------------------- /busybox-v1.29.3/include/config/udhcpc.h: -------------------------------------------------------------------------------- 1 | #undef CONFIG_UDHCPC 2 | -------------------------------------------------------------------------------- /busybox-v1.29.3/include/config/udhcpc6.h: -------------------------------------------------------------------------------- 1 | #undef CONFIG_UDHCPC6 2 | -------------------------------------------------------------------------------- /busybox-v1.29.3/include/config/udhcpd.h: -------------------------------------------------------------------------------- 1 | #undef CONFIG_UDHCPD 2 | -------------------------------------------------------------------------------- /busybox-v1.29.3/include/config/udpsvd.h: -------------------------------------------------------------------------------- 1 | #undef CONFIG_UDPSVD 2 | -------------------------------------------------------------------------------- /busybox-v1.29.3/include/config/uevent.h: -------------------------------------------------------------------------------- 1 | #undef CONFIG_UEVENT 2 | -------------------------------------------------------------------------------- /busybox-v1.29.3/include/config/umount.h: -------------------------------------------------------------------------------- 1 | #define CONFIG_UMOUNT 1 2 | -------------------------------------------------------------------------------- /busybox-v1.29.3/include/config/uname.h: -------------------------------------------------------------------------------- 1 | #undef CONFIG_UNAME 2 | -------------------------------------------------------------------------------- /busybox-v1.29.3/include/config/uncompress.h: -------------------------------------------------------------------------------- 1 | #undef CONFIG_UNCOMPRESS 2 | -------------------------------------------------------------------------------- /busybox-v1.29.3/include/config/unexpand.h: -------------------------------------------------------------------------------- 1 | #undef CONFIG_UNEXPAND 2 | -------------------------------------------------------------------------------- /busybox-v1.29.3/include/config/unicode/support.h: -------------------------------------------------------------------------------- 1 | #define CONFIG_UNICODE_SUPPORT 1 2 | -------------------------------------------------------------------------------- /busybox-v1.29.3/include/config/unicode/using/locale.h: -------------------------------------------------------------------------------- 1 | #undef CONFIG_UNICODE_USING_LOCALE 2 | -------------------------------------------------------------------------------- /busybox-v1.29.3/include/config/uniq.h: -------------------------------------------------------------------------------- 1 | #undef CONFIG_UNIQ 2 | -------------------------------------------------------------------------------- /busybox-v1.29.3/include/config/unit/test.h: -------------------------------------------------------------------------------- 1 | #undef CONFIG_UNIT_TEST 2 | -------------------------------------------------------------------------------- /busybox-v1.29.3/include/config/unix2dos.h: -------------------------------------------------------------------------------- 1 | #undef CONFIG_UNIX2DOS 2 | -------------------------------------------------------------------------------- /busybox-v1.29.3/include/config/unlink.h: -------------------------------------------------------------------------------- 1 | #undef CONFIG_UNLINK 2 | -------------------------------------------------------------------------------- /busybox-v1.29.3/include/config/unlzma.h: -------------------------------------------------------------------------------- 1 | #undef CONFIG_UNLZMA 2 | -------------------------------------------------------------------------------- /busybox-v1.29.3/include/config/unlzop.h: -------------------------------------------------------------------------------- 1 | #undef CONFIG_UNLZOP 2 | -------------------------------------------------------------------------------- /busybox-v1.29.3/include/config/unshare.h: -------------------------------------------------------------------------------- 1 | #undef CONFIG_UNSHARE 2 | -------------------------------------------------------------------------------- /busybox-v1.29.3/include/config/unxz.h: -------------------------------------------------------------------------------- 1 | #undef CONFIG_UNXZ 2 | -------------------------------------------------------------------------------- /busybox-v1.29.3/include/config/unzip.h: -------------------------------------------------------------------------------- 1 | #undef CONFIG_UNZIP 2 | -------------------------------------------------------------------------------- /busybox-v1.29.3/include/config/uptime.h: -------------------------------------------------------------------------------- 1 | #undef CONFIG_UPTIME 2 | -------------------------------------------------------------------------------- /busybox-v1.29.3/include/config/use/bb/crypt.h: -------------------------------------------------------------------------------- 1 | #undef CONFIG_USE_BB_CRYPT 2 | -------------------------------------------------------------------------------- /busybox-v1.29.3/include/config/use/bb/crypt/sha.h: -------------------------------------------------------------------------------- 1 | #undef CONFIG_USE_BB_CRYPT_SHA 2 | -------------------------------------------------------------------------------- /busybox-v1.29.3/include/config/use/bb/pwd/grp.h: -------------------------------------------------------------------------------- 1 | #undef CONFIG_USE_BB_PWD_GRP 2 | -------------------------------------------------------------------------------- /busybox-v1.29.3/include/config/use/bb/shadow.h: -------------------------------------------------------------------------------- 1 | #undef CONFIG_USE_BB_SHADOW 2 | -------------------------------------------------------------------------------- /busybox-v1.29.3/include/config/use/portable/code.h: -------------------------------------------------------------------------------- 1 | #undef CONFIG_USE_PORTABLE_CODE 2 | -------------------------------------------------------------------------------- /busybox-v1.29.3/include/config/users.h: -------------------------------------------------------------------------------- 1 | #undef CONFIG_USERS 2 | -------------------------------------------------------------------------------- /busybox-v1.29.3/include/config/usleep.h: -------------------------------------------------------------------------------- 1 | #undef CONFIG_USLEEP 2 | -------------------------------------------------------------------------------- /busybox-v1.29.3/include/config/uudecode.h: -------------------------------------------------------------------------------- 1 | #undef CONFIG_UUDECODE 2 | -------------------------------------------------------------------------------- /busybox-v1.29.3/include/config/uuencode.h: -------------------------------------------------------------------------------- 1 | #undef CONFIG_UUENCODE 2 | -------------------------------------------------------------------------------- /busybox-v1.29.3/include/config/vi.h: -------------------------------------------------------------------------------- 1 | #undef CONFIG_VI 2 | -------------------------------------------------------------------------------- /busybox-v1.29.3/include/config/vlock.h: -------------------------------------------------------------------------------- 1 | #undef CONFIG_VLOCK 2 | -------------------------------------------------------------------------------- /busybox-v1.29.3/include/config/volname.h: -------------------------------------------------------------------------------- 1 | #undef CONFIG_VOLNAME 2 | -------------------------------------------------------------------------------- /busybox-v1.29.3/include/config/volumeid.h: -------------------------------------------------------------------------------- 1 | #define CONFIG_VOLUMEID 1 2 | -------------------------------------------------------------------------------- /busybox-v1.29.3/include/config/w.h: -------------------------------------------------------------------------------- 1 | #undef CONFIG_W 2 | -------------------------------------------------------------------------------- /busybox-v1.29.3/include/config/wall.h: -------------------------------------------------------------------------------- 1 | #undef CONFIG_WALL 2 | -------------------------------------------------------------------------------- /busybox-v1.29.3/include/config/watch.h: -------------------------------------------------------------------------------- 1 | #undef CONFIG_WATCH 2 | -------------------------------------------------------------------------------- /busybox-v1.29.3/include/config/watchdog.h: -------------------------------------------------------------------------------- 1 | #undef CONFIG_WATCHDOG 2 | -------------------------------------------------------------------------------- /busybox-v1.29.3/include/config/wc.h: -------------------------------------------------------------------------------- 1 | #undef CONFIG_WC 2 | -------------------------------------------------------------------------------- /busybox-v1.29.3/include/config/werror.h: -------------------------------------------------------------------------------- 1 | #undef CONFIG_WERROR 2 | -------------------------------------------------------------------------------- /busybox-v1.29.3/include/config/wget.h: -------------------------------------------------------------------------------- 1 | #undef CONFIG_WGET 2 | -------------------------------------------------------------------------------- /busybox-v1.29.3/include/config/which.h: -------------------------------------------------------------------------------- 1 | #undef CONFIG_WHICH 2 | -------------------------------------------------------------------------------- /busybox-v1.29.3/include/config/who.h: -------------------------------------------------------------------------------- 1 | #undef CONFIG_WHO 2 | -------------------------------------------------------------------------------- /busybox-v1.29.3/include/config/whoami.h: -------------------------------------------------------------------------------- 1 | #undef CONFIG_WHOAMI 2 | -------------------------------------------------------------------------------- /busybox-v1.29.3/include/config/whois.h: -------------------------------------------------------------------------------- 1 | #undef CONFIG_WHOIS 2 | -------------------------------------------------------------------------------- /busybox-v1.29.3/include/config/xargs.h: -------------------------------------------------------------------------------- 1 | #undef CONFIG_XARGS 2 | -------------------------------------------------------------------------------- /busybox-v1.29.3/include/config/xxd.h: -------------------------------------------------------------------------------- 1 | #undef CONFIG_XXD 2 | -------------------------------------------------------------------------------- /busybox-v1.29.3/include/config/xz.h: -------------------------------------------------------------------------------- 1 | #undef CONFIG_XZ 2 | -------------------------------------------------------------------------------- /busybox-v1.29.3/include/config/xzcat.h: -------------------------------------------------------------------------------- 1 | #undef CONFIG_XZCAT 2 | -------------------------------------------------------------------------------- /busybox-v1.29.3/include/config/yes.h: -------------------------------------------------------------------------------- 1 | #undef CONFIG_YES 2 | -------------------------------------------------------------------------------- /busybox-v1.29.3/include/config/zcat.h: -------------------------------------------------------------------------------- 1 | #undef CONFIG_ZCAT 2 | -------------------------------------------------------------------------------- /busybox-v1.29.3/include/config/zcip.h: -------------------------------------------------------------------------------- 1 | #undef CONFIG_ZCIP 2 | -------------------------------------------------------------------------------- /busybox-v1.29.3/shell/ash_test/ash-arith/arith-bash1.right: -------------------------------------------------------------------------------- 1 | 1 2 | 0 3 | -------------------------------------------------------------------------------- /busybox-v1.29.3/shell/ash_test/ash-arith/arith_nested1.right: -------------------------------------------------------------------------------- 1 | 1 2 | -------------------------------------------------------------------------------- /busybox-v1.29.3/shell/ash_test/ash-heredoc/heredoc2.right: -------------------------------------------------------------------------------- 1 | bar 2 | bar 3 | -------------------------------------------------------------------------------- /busybox-v1.29.3/shell/ash_test/ash-heredoc/heredoc4.right: -------------------------------------------------------------------------------- 1 | '$' 2 | -------------------------------------------------------------------------------- /busybox-v1.29.3/shell/ash_test/ash-heredoc/heredoc6.right: -------------------------------------------------------------------------------- 1 | test 2 | OK:0 3 | -------------------------------------------------------------------------------- /busybox-v1.29.3/shell/ash_test/ash-heredoc/heredoc7.right: -------------------------------------------------------------------------------- 1 | _ASBOX 2 | -------------------------------------------------------------------------------- /busybox-v1.29.3/shell/ash_test/ash-heredoc/heredoc9.right: -------------------------------------------------------------------------------- 1 | hello 2 | -------------------------------------------------------------------------------- /busybox-v1.29.3/shell/ash_test/ash-misc/assignment3.right: -------------------------------------------------------------------------------- 1 | Done:0 2 | abc=123 3 | -------------------------------------------------------------------------------- /busybox-v1.29.3/shell/ash_test/ash-misc/assignment4.right: -------------------------------------------------------------------------------- 1 | Done:0 2 | -------------------------------------------------------------------------------- /busybox-v1.29.3/shell/ash_test/ash-misc/break1.right: -------------------------------------------------------------------------------- 1 | A 2 | OK:0 3 | -------------------------------------------------------------------------------- /busybox-v1.29.3/shell/ash_test/ash-misc/break2.right: -------------------------------------------------------------------------------- 1 | A 2 | AA 3 | OK:0 4 | -------------------------------------------------------------------------------- /busybox-v1.29.3/shell/ash_test/ash-misc/break3.right: -------------------------------------------------------------------------------- 1 | A 2 | OK:0 3 | -------------------------------------------------------------------------------- /busybox-v1.29.3/shell/ash_test/ash-misc/builtin1.right: -------------------------------------------------------------------------------- 1 | VARIABLE=export 2 | OK:0 3 | -------------------------------------------------------------------------------- /busybox-v1.29.3/shell/ash_test/ash-misc/colon.right: -------------------------------------------------------------------------------- 1 | 0 2 | OK: 0 3 | -------------------------------------------------------------------------------- /busybox-v1.29.3/shell/ash_test/ash-misc/command.right: -------------------------------------------------------------------------------- 1 | recho: not found 2 | -------------------------------------------------------------------------------- /busybox-v1.29.3/shell/ash_test/ash-misc/command.tests: -------------------------------------------------------------------------------- 1 | command -p -V recho 2 | -------------------------------------------------------------------------------- /busybox-v1.29.3/shell/ash_test/ash-misc/continue2.right: -------------------------------------------------------------------------------- 1 | Ok:1 2 | -------------------------------------------------------------------------------- /busybox-v1.29.3/shell/ash_test/ash-misc/continue3.right: -------------------------------------------------------------------------------- 1 | 0 2 | 0 3 | -------------------------------------------------------------------------------- /busybox-v1.29.3/shell/ash_test/ash-misc/control_char1.right: -------------------------------------------------------------------------------- 1 |  2 | b#c 3 | Done:0 4 | -------------------------------------------------------------------------------- /busybox-v1.29.3/shell/ash_test/ash-misc/control_char2.right: -------------------------------------------------------------------------------- 1 |  2 | Done:0 3 | -------------------------------------------------------------------------------- /busybox-v1.29.3/shell/ash_test/ash-misc/empty_for.right: -------------------------------------------------------------------------------- 1 | OK: 0 2 | -------------------------------------------------------------------------------- /busybox-v1.29.3/shell/ash_test/ash-misc/errexit1.right: -------------------------------------------------------------------------------- 1 | OK 2 | -------------------------------------------------------------------------------- /busybox-v1.29.3/shell/ash_test/ash-misc/eval1.right: -------------------------------------------------------------------------------- 1 | Ok:0 2 | -------------------------------------------------------------------------------- /busybox-v1.29.3/shell/ash_test/ash-misc/exit1.right: -------------------------------------------------------------------------------- 1 | Once 2 | -------------------------------------------------------------------------------- /busybox-v1.29.3/shell/ash_test/ash-misc/exitcode1.right: -------------------------------------------------------------------------------- 1 | One:1 2 | Zero:0 3 | -------------------------------------------------------------------------------- /busybox-v1.29.3/shell/ash_test/ash-misc/exitcode_EACCES.tests: -------------------------------------------------------------------------------- 1 | ./ 2 | echo $? 3 | -------------------------------------------------------------------------------- /busybox-v1.29.3/shell/ash_test/ash-misc/for.right: -------------------------------------------------------------------------------- 1 | OK 2 | -------------------------------------------------------------------------------- /busybox-v1.29.3/shell/ash_test/ash-misc/func4.right: -------------------------------------------------------------------------------- 1 | 24 2 | Done 3 | -------------------------------------------------------------------------------- /busybox-v1.29.3/shell/ash_test/ash-misc/func5.right: -------------------------------------------------------------------------------- 1 | 1 2 | 2 3 | 3 4 | -------------------------------------------------------------------------------- /busybox-v1.29.3/shell/ash_test/ash-misc/func_compound1.right: -------------------------------------------------------------------------------- 1 | 1 2 | 2 3 | 3 4 | -------------------------------------------------------------------------------- /busybox-v1.29.3/shell/ash_test/ash-misc/func_local1.right: -------------------------------------------------------------------------------- 1 | z=a 2 | z=z 3 | Done 4 | -------------------------------------------------------------------------------- /busybox-v1.29.3/shell/ash_test/ash-misc/if_false_exitcode.right: -------------------------------------------------------------------------------- 1 | Ok:0 2 | -------------------------------------------------------------------------------- /busybox-v1.29.3/shell/ash_test/ash-misc/last_amp.right: -------------------------------------------------------------------------------- 1 | 3 2 | End 3 | -------------------------------------------------------------------------------- /busybox-v1.29.3/shell/ash_test/ash-misc/local2.tests: -------------------------------------------------------------------------------- 1 | local x=1 2 | -------------------------------------------------------------------------------- /busybox-v1.29.3/shell/ash_test/ash-misc/nommu3.right: -------------------------------------------------------------------------------- 1 | Ok 2 | 0 3 | -------------------------------------------------------------------------------- /busybox-v1.29.3/shell/ash_test/ash-misc/opts1.right: -------------------------------------------------------------------------------- 1 | Param1: >-10qwertyuiop< 2 | Done 3 | -------------------------------------------------------------------------------- /busybox-v1.29.3/shell/ash_test/ash-misc/pid.right: -------------------------------------------------------------------------------- 1 | 0 2 | -------------------------------------------------------------------------------- /busybox-v1.29.3/shell/ash_test/ash-misc/return1.right: -------------------------------------------------------------------------------- 1 | Ok:0 2 | -------------------------------------------------------------------------------- /busybox-v1.29.3/shell/ash_test/ash-misc/source1.right: -------------------------------------------------------------------------------- 1 | Sourced ok 2 | Done 3 | -------------------------------------------------------------------------------- /busybox-v1.29.3/shell/ash_test/ash-misc/source2.right: -------------------------------------------------------------------------------- 1 | Done: 0 2 | -------------------------------------------------------------------------------- /busybox-v1.29.3/shell/ash_test/ash-misc/tickquote1.tests: -------------------------------------------------------------------------------- 1 | echo _`"pwd`_ 2 | -------------------------------------------------------------------------------- /busybox-v1.29.3/shell/ash_test/ash-misc/unicode1.right: -------------------------------------------------------------------------------- 1 | 1 2 | 1 3 | Ok 4 | -------------------------------------------------------------------------------- /busybox-v1.29.3/shell/ash_test/ash-misc/until1.right: -------------------------------------------------------------------------------- 1 | 1 2 | 1 3 | Ok:0 4 | -------------------------------------------------------------------------------- /busybox-v1.29.3/shell/ash_test/ash-misc/wait4.right: -------------------------------------------------------------------------------- 1 | Three:3 2 | -------------------------------------------------------------------------------- /busybox-v1.29.3/shell/ash_test/ash-misc/wait5.right: -------------------------------------------------------------------------------- 1 | Zero:0 2 | Three:3 3 | -------------------------------------------------------------------------------- /busybox-v1.29.3/shell/ash_test/ash-misc/wait6.right: -------------------------------------------------------------------------------- 1 | 0 2 | 3 3 | -------------------------------------------------------------------------------- /busybox-v1.29.3/shell/ash_test/ash-misc/while1.right: -------------------------------------------------------------------------------- 1 | OK:0 2 | -------------------------------------------------------------------------------- /busybox-v1.29.3/shell/ash_test/ash-misc/while2.right: -------------------------------------------------------------------------------- 1 | Hello 2 | OK:0 3 | -------------------------------------------------------------------------------- /busybox-v1.29.3/shell/ash_test/ash-misc/while4.right: -------------------------------------------------------------------------------- 1 | Ok:0 2 | -------------------------------------------------------------------------------- /busybox-v1.29.3/shell/ash_test/ash-misc/while_in_subshell.right: -------------------------------------------------------------------------------- 1 | OK: 0 2 | -------------------------------------------------------------------------------- /busybox-v1.29.3/shell/ash_test/ash-parsing/argv0.right: -------------------------------------------------------------------------------- 1 | OK 2 | -------------------------------------------------------------------------------- /busybox-v1.29.3/shell/ash_test/ash-parsing/bkslash_eof1.right: -------------------------------------------------------------------------------- 1 | ok\ 2 | -------------------------------------------------------------------------------- /busybox-v1.29.3/shell/ash_test/ash-parsing/bkslash_eof1.tests: -------------------------------------------------------------------------------- 1 | eval 'echo ok\' 2 | -------------------------------------------------------------------------------- /busybox-v1.29.3/shell/ash_test/ash-parsing/bkslash_newline3.right: -------------------------------------------------------------------------------- 1 | a:[a] 2 | -------------------------------------------------------------------------------- /busybox-v1.29.3/shell/ash_test/ash-parsing/eol1.right: -------------------------------------------------------------------------------- 1 | Done:0 2 | -------------------------------------------------------------------------------- /busybox-v1.29.3/shell/ash_test/ash-parsing/escape1.right: -------------------------------------------------------------------------------- 1 | \ 2 | a\b 3 | \\ 4 | c\\d 5 | -------------------------------------------------------------------------------- /busybox-v1.29.3/shell/ash_test/ash-parsing/escape4.right: -------------------------------------------------------------------------------- 1 | Ok 2 | End 3 | -------------------------------------------------------------------------------- /busybox-v1.29.3/shell/ash_test/ash-parsing/group1.right: -------------------------------------------------------------------------------- 1 | word} } 2 | -------------------------------------------------------------------------------- /busybox-v1.29.3/shell/ash_test/ash-parsing/group1.tests: -------------------------------------------------------------------------------- 1 | { echo word} }; } 2 | -------------------------------------------------------------------------------- /busybox-v1.29.3/shell/ash_test/ash-parsing/group2.right: -------------------------------------------------------------------------------- 1 | got TERM 2 | Done: 0 3 | -------------------------------------------------------------------------------- /busybox-v1.29.3/shell/ash_test/ash-parsing/noeol.right: -------------------------------------------------------------------------------- 1 | HELLO 2 | -------------------------------------------------------------------------------- /busybox-v1.29.3/shell/ash_test/ash-parsing/noeol.tests: -------------------------------------------------------------------------------- 1 | # next line has no EOL! 2 | echo HELLO -------------------------------------------------------------------------------- /busybox-v1.29.3/shell/ash_test/ash-parsing/noeol2.right: -------------------------------------------------------------------------------- 1 | 1 2 | -------------------------------------------------------------------------------- /busybox-v1.29.3/shell/ash_test/ash-parsing/quote1.right: -------------------------------------------------------------------------------- 1 | '1' 2 | -------------------------------------------------------------------------------- /busybox-v1.29.3/shell/ash_test/ash-parsing/quote1.tests: -------------------------------------------------------------------------------- 1 | a=1 2 | echo "'$a'" 3 | -------------------------------------------------------------------------------- /busybox-v1.29.3/shell/ash_test/ash-parsing/quote2.right: -------------------------------------------------------------------------------- 1 | >1 2 | -------------------------------------------------------------------------------- /busybox-v1.29.3/shell/ash_test/ash-parsing/quote2.tests: -------------------------------------------------------------------------------- 1 | a=1 2 | echo ">$a" 3 | -------------------------------------------------------------------------------- /busybox-v1.29.3/shell/ash_test/ash-parsing/quote4.right: -------------------------------------------------------------------------------- 1 | a b 2 | -------------------------------------------------------------------------------- /busybox-v1.29.3/shell/ash_test/ash-parsing/quote4.tests: -------------------------------------------------------------------------------- 1 | a_b='a b' 2 | echo "$a_b" 3 | -------------------------------------------------------------------------------- /busybox-v1.29.3/shell/ash_test/ash-parsing/starquoted3.right: -------------------------------------------------------------------------------- 1 | 2 | <> 3 | -------------------------------------------------------------------------------- /busybox-v1.29.3/shell/ash_test/ash-psubst/tick.right: -------------------------------------------------------------------------------- 1 | 1 2 | 1 3 | -------------------------------------------------------------------------------- /busybox-v1.29.3/shell/ash_test/ash-psubst/tick2.right: -------------------------------------------------------------------------------- 1 | BAZ 2 | -------------------------------------------------------------------------------- /busybox-v1.29.3/shell/ash_test/ash-quoting/bkslash_case2.right: -------------------------------------------------------------------------------- 1 | ok1 2 | ok2 3 | Ok:0 4 | -------------------------------------------------------------------------------- /busybox-v1.29.3/shell/ash_test/ash-quoting/case_glob1.right: -------------------------------------------------------------------------------- 1 | s 2 | -------------------------------------------------------------------------------- /busybox-v1.29.3/shell/ash_test/ash-quoting/quote_in_varexp1.right: -------------------------------------------------------------------------------- 1 | '' 2 | Ok:0 3 | -------------------------------------------------------------------------------- /busybox-v1.29.3/shell/ash_test/ash-quoting/squote_in_varexp3.right: -------------------------------------------------------------------------------- 1 | B 2 | -------------------------------------------------------------------------------- /busybox-v1.29.3/shell/ash_test/ash-quoting/squote_in_varexp3.tests: -------------------------------------------------------------------------------- 1 | x=\'B; echo "${x#\'}" 2 | -------------------------------------------------------------------------------- /busybox-v1.29.3/shell/ash_test/ash-read/read_SIGCHLD.right: -------------------------------------------------------------------------------- 1 | x='Ok' 2 | exitcode:0 3 | -------------------------------------------------------------------------------- /busybox-v1.29.3/shell/ash_test/ash-redir/redir2.right: -------------------------------------------------------------------------------- 1 | OK 2 | -------------------------------------------------------------------------------- /busybox-v1.29.3/shell/ash_test/ash-redir/redir4.right: -------------------------------------------------------------------------------- 1 | OK 2 | -------------------------------------------------------------------------------- /busybox-v1.29.3/shell/ash_test/ash-redir/redir6.right: -------------------------------------------------------------------------------- 1 | Hello 2 | OK 3 | -------------------------------------------------------------------------------- /busybox-v1.29.3/shell/ash_test/ash-redir/redir7.right: -------------------------------------------------------------------------------- 1 | Ok 2 | Ok 3 | Done 4 | -------------------------------------------------------------------------------- /busybox-v1.29.3/shell/ash_test/ash-redir/redir8.right: -------------------------------------------------------------------------------- 1 | Ok 2 | Ok 3 | Done 4 | -------------------------------------------------------------------------------- /busybox-v1.29.3/shell/ash_test/ash-redir/redir9.right: -------------------------------------------------------------------------------- 1 | Ok 2 | Done:0 3 | -------------------------------------------------------------------------------- /busybox-v1.29.3/shell/ash_test/ash-redir/redir_escapednum.right: -------------------------------------------------------------------------------- 1 | Ok 2 | -------------------------------------------------------------------------------- /busybox-v1.29.3/shell/ash_test/ash-redir/redir_script.right: -------------------------------------------------------------------------------- 1 | Ok: script fd is not closed 2 | -------------------------------------------------------------------------------- /busybox-v1.29.3/shell/ash_test/ash-signals/continue_and_trap1.right: -------------------------------------------------------------------------------- 1 | Exiting 2 | -------------------------------------------------------------------------------- /busybox-v1.29.3/shell/ash_test/ash-signals/reap1.right: -------------------------------------------------------------------------------- 1 | Ok 2 | -------------------------------------------------------------------------------- /busybox-v1.29.3/shell/ash_test/ash-signals/save-ret.right: -------------------------------------------------------------------------------- 1 | YEAH 2 | 0 3 | -------------------------------------------------------------------------------- /busybox-v1.29.3/shell/ash_test/ash-signals/sigint1.right: -------------------------------------------------------------------------------- 1 | Sending SIGINT to main shell PID 2 | -------------------------------------------------------------------------------- /busybox-v1.29.3/shell/ash_test/ash-signals/signal6.right: -------------------------------------------------------------------------------- 1 | got TERM 2 | Done: 0 3 | -------------------------------------------------------------------------------- /busybox-v1.29.3/shell/ash_test/ash-signals/signal7.right: -------------------------------------------------------------------------------- 1 | Bug detected: 0 2 | -------------------------------------------------------------------------------- /busybox-v1.29.3/shell/ash_test/ash-signals/signal_read2.right: -------------------------------------------------------------------------------- 1 | Hangup 2 | Done:129 3 | -------------------------------------------------------------------------------- /busybox-v1.29.3/shell/ash_test/ash-standalone/nofork_trashes_getopt.right: -------------------------------------------------------------------------------- 1 | 0 2 | -------------------------------------------------------------------------------- /busybox-v1.29.3/shell/ash_test/ash-standalone/var_standalone1.right: -------------------------------------------------------------------------------- 1 | Done: 1 2 | -------------------------------------------------------------------------------- /busybox-v1.29.3/shell/ash_test/ash-vars/var-runtime-quote-detection.right: -------------------------------------------------------------------------------- 1 | <> 2 | -------------------------------------------------------------------------------- /busybox-v1.29.3/shell/ash_test/ash-vars/var-utf8-length.right: -------------------------------------------------------------------------------- 1 | 26 2 | -------------------------------------------------------------------------------- /busybox-v1.29.3/shell/ash_test/ash-vars/var3.right: -------------------------------------------------------------------------------- 1 | 1 2 | 1 3 | 4 | 5 | 0 6 | -------------------------------------------------------------------------------- /busybox-v1.29.3/shell/ash_test/ash-vars/var4.right: -------------------------------------------------------------------------------- 1 | bus/usb/1/2 2 | -------------------------------------------------------------------------------- /busybox-v1.29.3/shell/ash_test/ash-vars/var_bash7.right: -------------------------------------------------------------------------------- 1 | B 2 | -------------------------------------------------------------------------------- /busybox-v1.29.3/shell/ash_test/ash-vars/var_bash7.tests: -------------------------------------------------------------------------------- 1 | x=AB; echo "${x#$'\x41'}" 2 | -------------------------------------------------------------------------------- /busybox-v1.29.3/shell/ash_test/ash-vars/var_bash_repl_empty_pattern.right: -------------------------------------------------------------------------------- 1 | v 2 | Ok:0 3 | -------------------------------------------------------------------------------- /busybox-v1.29.3/shell/ash_test/ash-vars/var_bash_repl_empty_var.right: -------------------------------------------------------------------------------- 1 | 2 | Ok:0 3 | -------------------------------------------------------------------------------- /busybox-v1.29.3/shell/ash_test/ash-vars/var_leaks.right: -------------------------------------------------------------------------------- 1 | OK 2 | -------------------------------------------------------------------------------- /busybox-v1.29.3/shell/hush_test/hush-arith/arith_nested1.right: -------------------------------------------------------------------------------- 1 | 1 2 | -------------------------------------------------------------------------------- /busybox-v1.29.3/shell/hush_test/hush-heredoc/heredoc2.right: -------------------------------------------------------------------------------- 1 | bar 2 | bar 3 | -------------------------------------------------------------------------------- /busybox-v1.29.3/shell/hush_test/hush-heredoc/heredoc4.right: -------------------------------------------------------------------------------- 1 | '$' 2 | -------------------------------------------------------------------------------- /busybox-v1.29.3/shell/hush_test/hush-heredoc/heredoc6.right: -------------------------------------------------------------------------------- 1 | test 2 | OK:0 3 | -------------------------------------------------------------------------------- /busybox-v1.29.3/shell/hush_test/hush-heredoc/heredoc7.right: -------------------------------------------------------------------------------- 1 | _ASBOX 2 | -------------------------------------------------------------------------------- /busybox-v1.29.3/shell/hush_test/hush-heredoc/heredoc8.right: -------------------------------------------------------------------------------- 1 | hush: syntax error at 'then' 2 | -------------------------------------------------------------------------------- /busybox-v1.29.3/shell/hush_test/hush-misc/assignment3.right: -------------------------------------------------------------------------------- 1 | Done:0 2 | abc=123 3 | -------------------------------------------------------------------------------- /busybox-v1.29.3/shell/hush_test/hush-misc/assignment4.right: -------------------------------------------------------------------------------- 1 | Done:0 2 | -------------------------------------------------------------------------------- /busybox-v1.29.3/shell/hush_test/hush-misc/break1.right: -------------------------------------------------------------------------------- 1 | A 2 | OK:0 3 | -------------------------------------------------------------------------------- /busybox-v1.29.3/shell/hush_test/hush-misc/break2.right: -------------------------------------------------------------------------------- 1 | A 2 | AA 3 | OK:0 4 | -------------------------------------------------------------------------------- /busybox-v1.29.3/shell/hush_test/hush-misc/break3.right: -------------------------------------------------------------------------------- 1 | A 2 | OK:0 3 | -------------------------------------------------------------------------------- /busybox-v1.29.3/shell/hush_test/hush-misc/builtin1.right: -------------------------------------------------------------------------------- 1 | VARIABLE=export 2 | OK:0 3 | -------------------------------------------------------------------------------- /busybox-v1.29.3/shell/hush_test/hush-misc/colon.right: -------------------------------------------------------------------------------- 1 | 0 2 | OK: 0 3 | -------------------------------------------------------------------------------- /busybox-v1.29.3/shell/hush_test/hush-misc/continue2.right: -------------------------------------------------------------------------------- 1 | Ok:1 2 | -------------------------------------------------------------------------------- /busybox-v1.29.3/shell/hush_test/hush-misc/continue3.right: -------------------------------------------------------------------------------- 1 | 0 2 | 0 3 | -------------------------------------------------------------------------------- /busybox-v1.29.3/shell/hush_test/hush-misc/control_char1.right: -------------------------------------------------------------------------------- 1 |  2 | b#c 3 | Done:0 4 | -------------------------------------------------------------------------------- /busybox-v1.29.3/shell/hush_test/hush-misc/control_char2.right: -------------------------------------------------------------------------------- 1 |  2 | Done:0 3 | -------------------------------------------------------------------------------- /busybox-v1.29.3/shell/hush_test/hush-misc/empty_for.right: -------------------------------------------------------------------------------- 1 | OK: 0 2 | -------------------------------------------------------------------------------- /busybox-v1.29.3/shell/hush_test/hush-misc/env_and_func.right: -------------------------------------------------------------------------------- 1 | var=val 2 | var=old 3 | -------------------------------------------------------------------------------- /busybox-v1.29.3/shell/hush_test/hush-misc/errexit1.right: -------------------------------------------------------------------------------- 1 | OK 2 | -------------------------------------------------------------------------------- /busybox-v1.29.3/shell/hush_test/hush-misc/eval1.right: -------------------------------------------------------------------------------- 1 | Ok:0 2 | -------------------------------------------------------------------------------- /busybox-v1.29.3/shell/hush_test/hush-misc/exit1.right: -------------------------------------------------------------------------------- 1 | Once 2 | -------------------------------------------------------------------------------- /busybox-v1.29.3/shell/hush_test/hush-misc/exitcode1.right: -------------------------------------------------------------------------------- 1 | One:1 2 | Zero:0 3 | -------------------------------------------------------------------------------- /busybox-v1.29.3/shell/hush_test/hush-misc/exitcode_EACCES.tests: -------------------------------------------------------------------------------- 1 | ./ 2 | echo $? 3 | -------------------------------------------------------------------------------- /busybox-v1.29.3/shell/hush_test/hush-misc/for.right: -------------------------------------------------------------------------------- 1 | OK 2 | -------------------------------------------------------------------------------- /busybox-v1.29.3/shell/hush_test/hush-misc/func4.right: -------------------------------------------------------------------------------- 1 | 24 2 | Done 3 | -------------------------------------------------------------------------------- /busybox-v1.29.3/shell/hush_test/hush-misc/func5.right: -------------------------------------------------------------------------------- 1 | 1 2 | 2 3 | 3 4 | -------------------------------------------------------------------------------- /busybox-v1.29.3/shell/hush_test/hush-misc/func_local1.right: -------------------------------------------------------------------------------- 1 | z=a 2 | z=z 3 | Done 4 | -------------------------------------------------------------------------------- /busybox-v1.29.3/shell/hush_test/hush-misc/if_false_exitcode.right: -------------------------------------------------------------------------------- 1 | Ok:0 2 | -------------------------------------------------------------------------------- /busybox-v1.29.3/shell/hush_test/hush-misc/last_amp.right: -------------------------------------------------------------------------------- 1 | 3 2 | End 3 | -------------------------------------------------------------------------------- /busybox-v1.29.3/shell/hush_test/hush-misc/nommu3.right: -------------------------------------------------------------------------------- 1 | Ok 2 | 0 3 | -------------------------------------------------------------------------------- /busybox-v1.29.3/shell/hush_test/hush-misc/opts1.right: -------------------------------------------------------------------------------- 1 | Param1: >-10qwertyuiop< 2 | Done 3 | -------------------------------------------------------------------------------- /busybox-v1.29.3/shell/hush_test/hush-misc/pid.right: -------------------------------------------------------------------------------- 1 | 0 2 | -------------------------------------------------------------------------------- /busybox-v1.29.3/shell/hush_test/hush-misc/return1.right: -------------------------------------------------------------------------------- 1 | Ok:0 2 | -------------------------------------------------------------------------------- /busybox-v1.29.3/shell/hush_test/hush-misc/source1.right: -------------------------------------------------------------------------------- 1 | Sourced ok 2 | Done 3 | -------------------------------------------------------------------------------- /busybox-v1.29.3/shell/hush_test/hush-misc/source2.right: -------------------------------------------------------------------------------- 1 | Done: 0 2 | -------------------------------------------------------------------------------- /busybox-v1.29.3/shell/hush_test/hush-misc/unicode1.right: -------------------------------------------------------------------------------- 1 | 1 2 | 1 3 | Ok 4 | -------------------------------------------------------------------------------- /busybox-v1.29.3/shell/hush_test/hush-misc/until1.right: -------------------------------------------------------------------------------- 1 | 1 2 | 1 3 | Ok:0 4 | -------------------------------------------------------------------------------- /busybox-v1.29.3/shell/hush_test/hush-misc/wait4.right: -------------------------------------------------------------------------------- 1 | Three:3 2 | -------------------------------------------------------------------------------- /busybox-v1.29.3/shell/hush_test/hush-misc/wait5.right: -------------------------------------------------------------------------------- 1 | Zero:0 2 | Three:3 3 | -------------------------------------------------------------------------------- /busybox-v1.29.3/shell/hush_test/hush-misc/wait6.right: -------------------------------------------------------------------------------- 1 | 0 2 | 3 3 | -------------------------------------------------------------------------------- /busybox-v1.29.3/shell/hush_test/hush-misc/while1.right: -------------------------------------------------------------------------------- 1 | OK:0 2 | -------------------------------------------------------------------------------- /busybox-v1.29.3/shell/hush_test/hush-misc/while2.right: -------------------------------------------------------------------------------- 1 | Hello 2 | OK:0 3 | -------------------------------------------------------------------------------- /busybox-v1.29.3/shell/hush_test/hush-misc/while3.right: -------------------------------------------------------------------------------- 1 | OK:0 2 | -------------------------------------------------------------------------------- /busybox-v1.29.3/shell/hush_test/hush-misc/while4.right: -------------------------------------------------------------------------------- 1 | Ok:0 2 | -------------------------------------------------------------------------------- /busybox-v1.29.3/shell/hush_test/hush-misc/while_in_subshell.right: -------------------------------------------------------------------------------- 1 | OK: 0 2 | -------------------------------------------------------------------------------- /busybox-v1.29.3/shell/hush_test/hush-parsing/argv0.right: -------------------------------------------------------------------------------- 1 | OK 2 | -------------------------------------------------------------------------------- /busybox-v1.29.3/shell/hush_test/hush-parsing/bkslash_eof1.right: -------------------------------------------------------------------------------- 1 | ok\ 2 | -------------------------------------------------------------------------------- /busybox-v1.29.3/shell/hush_test/hush-parsing/bkslash_eof1.tests: -------------------------------------------------------------------------------- 1 | eval 'echo ok\' 2 | -------------------------------------------------------------------------------- /busybox-v1.29.3/shell/hush_test/hush-parsing/bkslash_newline3.right: -------------------------------------------------------------------------------- 1 | a:[a] 2 | -------------------------------------------------------------------------------- /busybox-v1.29.3/shell/hush_test/hush-parsing/eol1.right: -------------------------------------------------------------------------------- 1 | Done:0 2 | -------------------------------------------------------------------------------- /busybox-v1.29.3/shell/hush_test/hush-parsing/escape1.right: -------------------------------------------------------------------------------- 1 | \ 2 | a\b 3 | \\ 4 | c\\d 5 | -------------------------------------------------------------------------------- /busybox-v1.29.3/shell/hush_test/hush-parsing/escape4.right: -------------------------------------------------------------------------------- 1 | Ok 2 | End 3 | -------------------------------------------------------------------------------- /busybox-v1.29.3/shell/hush_test/hush-parsing/group1.right: -------------------------------------------------------------------------------- 1 | word} } 2 | -------------------------------------------------------------------------------- /busybox-v1.29.3/shell/hush_test/hush-parsing/group1.tests: -------------------------------------------------------------------------------- 1 | { echo word} }; } 2 | -------------------------------------------------------------------------------- /busybox-v1.29.3/shell/hush_test/hush-parsing/group2.right: -------------------------------------------------------------------------------- 1 | got TERM 2 | Done: 0 3 | -------------------------------------------------------------------------------- /busybox-v1.29.3/shell/hush_test/hush-parsing/noeol.right: -------------------------------------------------------------------------------- 1 | HELLO 2 | -------------------------------------------------------------------------------- /busybox-v1.29.3/shell/hush_test/hush-parsing/noeol2.right: -------------------------------------------------------------------------------- 1 | 1 2 | -------------------------------------------------------------------------------- /busybox-v1.29.3/shell/hush_test/hush-parsing/quote1.right: -------------------------------------------------------------------------------- 1 | '1' 2 | -------------------------------------------------------------------------------- /busybox-v1.29.3/shell/hush_test/hush-parsing/quote1.tests: -------------------------------------------------------------------------------- 1 | a=1 2 | echo "'$a'" 3 | -------------------------------------------------------------------------------- /busybox-v1.29.3/shell/hush_test/hush-parsing/quote2.right: -------------------------------------------------------------------------------- 1 | >1 2 | -------------------------------------------------------------------------------- /busybox-v1.29.3/shell/hush_test/hush-parsing/quote2.tests: -------------------------------------------------------------------------------- 1 | a=1 2 | echo ">$a" 3 | -------------------------------------------------------------------------------- /busybox-v1.29.3/shell/hush_test/hush-parsing/quote4.right: -------------------------------------------------------------------------------- 1 | a b 2 | -------------------------------------------------------------------------------- /busybox-v1.29.3/shell/hush_test/hush-parsing/quote4.tests: -------------------------------------------------------------------------------- 1 | a_b='a b' 2 | echo "$a_b" 3 | -------------------------------------------------------------------------------- /busybox-v1.29.3/shell/hush_test/hush-parsing/starquoted3.right: -------------------------------------------------------------------------------- 1 | 2 | <> 3 | -------------------------------------------------------------------------------- /busybox-v1.29.3/shell/hush_test/hush-psubst/falsetick2.right: -------------------------------------------------------------------------------- 1 | Two:2 v:[] 2 | -------------------------------------------------------------------------------- /busybox-v1.29.3/shell/hush_test/hush-psubst/tick.right: -------------------------------------------------------------------------------- 1 | 1 2 | 1 3 | -------------------------------------------------------------------------------- /busybox-v1.29.3/shell/hush_test/hush-psubst/tick2.right: -------------------------------------------------------------------------------- 1 | BAZ 2 | -------------------------------------------------------------------------------- /busybox-v1.29.3/shell/hush_test/hush-psubst/tick5.right: -------------------------------------------------------------------------------- 1 | 1 2 | -------------------------------------------------------------------------------- /busybox-v1.29.3/shell/hush_test/hush-psubst/tick5.tests: -------------------------------------------------------------------------------- 1 | true; echo `false` $? 2 | -------------------------------------------------------------------------------- /busybox-v1.29.3/shell/hush_test/hush-quoting/bkslash_case2.right: -------------------------------------------------------------------------------- 1 | ok1 2 | ok2 3 | Ok:0 4 | -------------------------------------------------------------------------------- /busybox-v1.29.3/shell/hush_test/hush-quoting/case_glob1.right: -------------------------------------------------------------------------------- 1 | s 2 | -------------------------------------------------------------------------------- /busybox-v1.29.3/shell/hush_test/hush-quoting/squote_in_varexp3.right: -------------------------------------------------------------------------------- 1 | B 2 | -------------------------------------------------------------------------------- /busybox-v1.29.3/shell/hush_test/hush-read/read_SIGCHLD.right: -------------------------------------------------------------------------------- 1 | x='Ok' 2 | exitcode:0 3 | -------------------------------------------------------------------------------- /busybox-v1.29.3/shell/hush_test/hush-redir/redir2.right: -------------------------------------------------------------------------------- 1 | OK 2 | -------------------------------------------------------------------------------- /busybox-v1.29.3/shell/hush_test/hush-redir/redir4.right: -------------------------------------------------------------------------------- 1 | OK 2 | -------------------------------------------------------------------------------- /busybox-v1.29.3/shell/hush_test/hush-redir/redir6.right: -------------------------------------------------------------------------------- 1 | Hello 2 | OK 3 | -------------------------------------------------------------------------------- /busybox-v1.29.3/shell/hush_test/hush-redir/redir7.right: -------------------------------------------------------------------------------- 1 | Ok 2 | Ok 3 | Done 4 | -------------------------------------------------------------------------------- /busybox-v1.29.3/shell/hush_test/hush-redir/redir8.right: -------------------------------------------------------------------------------- 1 | Ok 2 | Ok 3 | Done 4 | -------------------------------------------------------------------------------- /busybox-v1.29.3/shell/hush_test/hush-redir/redir9.right: -------------------------------------------------------------------------------- 1 | Ok 2 | Done:0 3 | -------------------------------------------------------------------------------- /busybox-v1.29.3/shell/hush_test/hush-redir/redir_escapednum.right: -------------------------------------------------------------------------------- 1 | Ok 2 | -------------------------------------------------------------------------------- /busybox-v1.29.3/shell/hush_test/hush-redir/redir_script.right: -------------------------------------------------------------------------------- 1 | Ok: script fd is not closed 2 | -------------------------------------------------------------------------------- /busybox-v1.29.3/shell/hush_test/hush-signals/continue_and_trap1.right: -------------------------------------------------------------------------------- 1 | Exiting 2 | -------------------------------------------------------------------------------- /busybox-v1.29.3/shell/hush_test/hush-signals/reap1.right: -------------------------------------------------------------------------------- 1 | Ok 2 | -------------------------------------------------------------------------------- /busybox-v1.29.3/shell/hush_test/hush-signals/save-ret.right: -------------------------------------------------------------------------------- 1 | YEAH 2 | 0 3 | -------------------------------------------------------------------------------- /busybox-v1.29.3/shell/hush_test/hush-signals/signal6.right: -------------------------------------------------------------------------------- 1 | got TERM 2 | Done: 0 3 | -------------------------------------------------------------------------------- /busybox-v1.29.3/shell/hush_test/hush-signals/signal7.right: -------------------------------------------------------------------------------- 1 | Bug detected: 0 2 | -------------------------------------------------------------------------------- /busybox-v1.29.3/shell/hush_test/hush-signals/signal_read1.right: -------------------------------------------------------------------------------- 1 | Got HUP:0 2 | -------------------------------------------------------------------------------- /busybox-v1.29.3/shell/hush_test/hush-signals/signal_read2.right: -------------------------------------------------------------------------------- 1 | HUP 2 | Done:129 3 | -------------------------------------------------------------------------------- /busybox-v1.29.3/shell/hush_test/hush-standalone/nofork_trashes_getopt.right: -------------------------------------------------------------------------------- 1 | 0 2 | -------------------------------------------------------------------------------- /busybox-v1.29.3/shell/hush_test/hush-standalone/var_standalone1.right: -------------------------------------------------------------------------------- 1 | Done: 1 2 | -------------------------------------------------------------------------------- /busybox-v1.29.3/shell/hush_test/hush-vars/var-runtime-quote-detection.right: -------------------------------------------------------------------------------- 1 | <> 2 | -------------------------------------------------------------------------------- /busybox-v1.29.3/shell/hush_test/hush-vars/var-utf8-length.right: -------------------------------------------------------------------------------- 1 | 26 2 | -------------------------------------------------------------------------------- /busybox-v1.29.3/shell/hush_test/hush-vars/var3.right: -------------------------------------------------------------------------------- 1 | 1 2 | 1 3 | 4 | 5 | 0 6 | -------------------------------------------------------------------------------- /busybox-v1.29.3/shell/hush_test/hush-vars/var4.right: -------------------------------------------------------------------------------- 1 | bus/usb/1/2 2 | -------------------------------------------------------------------------------- /busybox-v1.29.3/shell/hush_test/hush-vars/var_bash_repl_empty_pattern.right: -------------------------------------------------------------------------------- 1 | v 2 | Ok:0 3 | -------------------------------------------------------------------------------- /busybox-v1.29.3/shell/hush_test/hush-vars/var_bash_repl_empty_var.right: -------------------------------------------------------------------------------- 1 | 2 | Ok:0 3 | -------------------------------------------------------------------------------- /busybox-v1.29.3/shell/hush_test/hush-vars/var_leaks.right: -------------------------------------------------------------------------------- 1 | OK 2 | -------------------------------------------------------------------------------- /busybox-v1.29.3/shell/hush_test/hush-vars/var_nested2.right: -------------------------------------------------------------------------------- 1 | aB 2 | -------------------------------------------------------------------------------- /busybox-v1.29.3/testsuite/dirname/dirname-handles-root: -------------------------------------------------------------------------------- 1 | test $(busybox dirname /) = / 2 | -------------------------------------------------------------------------------- /busybox-v1.29.3/testsuite/echo/echo-prints-newline: -------------------------------------------------------------------------------- 1 | test `busybox echo word | wc -c` -eq 5 2 | -------------------------------------------------------------------------------- /busybox-v1.29.3/testsuite/false/false-is-silent: -------------------------------------------------------------------------------- 1 | busybox false 2>&1 | cmp - /dev/null 2 | -------------------------------------------------------------------------------- /busybox-v1.29.3/testsuite/false/false-returns-failure: -------------------------------------------------------------------------------- 1 | ! busybox false 2 | -------------------------------------------------------------------------------- /busybox-v1.29.3/testsuite/gunzip.tests: -------------------------------------------------------------------------------- 1 | #!/bin/sh 2 | 3 | . ./bunzip2.tests 4 | -------------------------------------------------------------------------------- /busybox-v1.29.3/testsuite/tar/tar-demands-at-least-one-ctx: -------------------------------------------------------------------------------- 1 | ! busybox tar v 2 | -------------------------------------------------------------------------------- /busybox-v1.29.3/testsuite/tar/tar-demands-at-most-one-ctx: -------------------------------------------------------------------------------- 1 | ! busybox tar tx 2 | -------------------------------------------------------------------------------- /busybox-v1.29.3/testsuite/true/true-is-silent: -------------------------------------------------------------------------------- 1 | busybox true 2>&1 | cmp - /dev/null 2 | -------------------------------------------------------------------------------- /busybox-v1.29.3/testsuite/true/true-returns-success: -------------------------------------------------------------------------------- 1 | busybox true 2 | -------------------------------------------------------------------------------- /busybox-v1.29.3/testsuite/uptime/uptime-works: -------------------------------------------------------------------------------- 1 | busybox uptime 2 | --------------------------------------------------------------------------------