├── .gitmodules ├── README.md ├── busybox ├── .config ├── .gitignore ├── .indent.pro ├── AUTHORS ├── Config.in ├── INSTALL ├── LICENSE ├── Makefile ├── Makefile.custom ├── Makefile.flags ├── Makefile.help ├── NOFORK_NOEXEC.lst ├── NOFORK_NOEXEC.sh ├── README ├── TODO ├── TODO_unicode ├── applets │ ├── .gitignore │ ├── Kbuild.src │ ├── applet_tables.c │ ├── applets.c │ ├── busybox.mkll │ ├── busybox.mkscripts │ ├── busybox.mksuid │ ├── individual.c │ ├── install.sh │ ├── usage.c │ ├── usage_compressed │ └── usage_pod.c ├── applets_sh │ └── nologin ├── arch │ ├── i386 │ │ └── Makefile │ ├── sparc │ │ └── Makefile │ └── sparc64 │ │ └── Makefile ├── archival │ ├── Config.src │ ├── 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.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 ├── configs │ ├── TEST_nommu_defconfig │ ├── TEST_noprintf_defconfig │ ├── TEST_rh9_defconfig │ ├── android2_defconfig │ ├── android_502_defconfig │ ├── android_defconfig │ ├── android_ndk_defconfig │ ├── cygwin_defconfig │ ├── freebsd_defconfig │ └── k210_nommu_defconfig ├── console-tools │ ├── Config.src │ ├── 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.src │ ├── 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 │ ├── head.c │ ├── hostid.c │ ├── id.c │ ├── id_test.sh │ ├── install.c │ ├── libcoreutils │ │ ├── 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.src │ ├── Kbuild.src │ ├── pipe_progress.c │ ├── run_parts.c │ ├── start_stop_daemon.c │ └── which.c ├── docs │ ├── .gitignore │ ├── Kconfig-language.txt │ ├── Serial-Programming-HOWTO.txt │ ├── 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 │ ├── embedded-scripts.txt │ ├── 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.src │ ├── Kbuild.src │ ├── README │ ├── chattr.c │ ├── e2fs_lib.c │ ├── e2fs_lib.h │ ├── fsck.c │ ├── lsattr.c │ └── tune2fs.c ├── editors │ ├── Config.src │ ├── 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 │ │ │ ├── convert2ipconf │ │ │ ├── convert2ntpconf │ │ │ ├── dhcp_handler │ │ │ ├── finish │ │ │ ├── log │ │ │ │ └── run │ │ │ └── run │ │ ├── dhcp_if_pinger │ │ │ └── run │ │ ├── dhcpd_if │ │ │ ├── log │ │ │ │ └── run │ │ │ ├── run │ │ │ ├── udhcpd.conf │ │ │ ├── w_dumpleases │ │ │ └── w_dumpleases_countdown │ │ ├── dnsmasq │ │ │ ├── README │ │ │ ├── dnsmasq.conf │ │ │ ├── log │ │ │ │ └── run │ │ │ └── run │ │ ├── ftpd │ │ │ ├── log │ │ │ │ └── run │ │ │ └── run │ │ ├── fw │ │ │ ├── conf │ │ │ │ ├── 11.22.33.44.ipconf-- │ │ │ │ ├── 192.168.0.1.ipconf │ │ │ │ └── lo.ipconf │ │ │ ├── etc │ │ │ │ ├── dnsmasq_servers.conf │ │ │ │ ├── hosts │ │ │ │ └── resolv.conf │ │ │ ├── run │ │ │ └── stat │ │ ├── getty_tty1 │ │ │ ├── alt08x16+unimap.fnt │ │ │ ├── cfg │ │ │ ├── koi8r_to_uni.trans │ │ │ ├── login.sh │ │ │ ├── run │ │ │ └── unicode_cyrillic.keymap │ │ ├── gpm │ │ │ └── run │ │ ├── httpd │ │ │ ├── log │ │ │ │ └── run │ │ │ └── run │ │ ├── ifplugd_if │ │ │ ├── ifplugd_handler │ │ │ ├── log │ │ │ │ └── run │ │ │ └── run │ │ ├── inetd │ │ │ ├── inetd.conf │ │ │ ├── log │ │ │ │ └── run │ │ │ └── run │ │ ├── nmeter │ │ │ └── run │ │ ├── ntpd │ │ │ ├── log │ │ │ │ └── run │ │ │ ├── ntp.script │ │ │ ├── p_log_important │ │ │ └── run │ │ ├── std_service_logger │ │ ├── supplicant_if │ │ │ ├── log │ │ │ │ └── run │ │ │ ├── run │ │ │ └── wpa_supplicant.conf │ │ ├── sview │ │ ├── svpage │ │ ├── tftpd │ │ │ ├── log │ │ │ │ └── run │ │ │ └── run │ │ └── zcip_if │ │ │ ├── convert2ipconf │ │ │ ├── finish │ │ │ ├── log │ │ │ └── run │ │ │ ├── run │ │ │ └── zcip_handler │ └── zcip.script ├── findutils │ ├── Config.src │ ├── Kbuild.src │ ├── find.c │ ├── grep.c │ └── xargs.c ├── include │ ├── .gitignore │ ├── applet_metadata.h │ ├── applets.h.sh │ ├── applets.src.h │ ├── ar.h │ ├── bb_archive.h │ ├── bb_e2fs_defs.h │ ├── busybox.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.src.h │ ├── volume_id.h │ ├── xatonum.h │ └── xregex.h ├── init │ ├── Config.src │ ├── Kbuild.src │ ├── bootchartd.c │ ├── halt.c │ ├── init.c │ └── reboot.h ├── klibc-utils │ ├── Config.src │ ├── Kbuild.src │ ├── ipconfig.c.txt │ ├── minips.c │ ├── nuke.c │ ├── resume.c │ └── run-init.c ├── libbb │ ├── Config.src │ ├── 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 │ ├── duration.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 │ ├── 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 ├── libpwdgrp │ ├── Kbuild.src │ ├── pwd_grp.c │ └── uidgid_get.c ├── loginutils │ ├── Config.src │ ├── 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.src │ ├── Kbuild.src │ ├── mail.c │ ├── mail.h │ ├── makemime.c │ ├── popmaildir.c │ ├── reformime.c │ └── sendmail.c ├── make_single_applets.sh ├── miscutils │ ├── Config.src │ ├── Kbuild.src │ ├── adjtimex.c │ ├── bbconfig.c │ ├── bc.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 │ ├── ts.c │ ├── ttysize.c │ ├── ubi_tools.c │ ├── ubirename.c │ ├── volname.c │ └── watchdog.c ├── modutils │ ├── Config.src │ ├── 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.src │ ├── 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.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_aesgcm.c │ ├── tls_aesgcm.h │ ├── tls_fe.c │ ├── tls_fe.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.src │ │ ├── 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.src │ ├── Kbuild.src │ ├── lpd.c │ └── lpr.c ├── procps │ ├── Config.src │ ├── 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.src │ ├── Kbuild.src │ ├── chpst.c │ ├── runit_lib.h │ ├── runsv.c │ ├── runsvdir.c │ ├── sv.c │ └── svlogd.c ├── scripts │ ├── Kbuild.include │ ├── Kbuild.src │ ├── Makefile.IMA │ ├── Makefile.build │ ├── Makefile.clean │ ├── Makefile.host │ ├── Makefile.lib │ ├── basic │ │ ├── .gitignore │ │ ├── Makefile │ │ ├── docproc.c │ │ ├── fixdep.c │ │ └── split-include.c │ ├── bb_release │ ├── bloat-o-meter │ ├── checkhelp.awk │ ├── checkstack.pl │ ├── cleanup_printf2puts │ ├── echo.c │ ├── embedded_scripts │ ├── 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 │ │ ├── .gitignore │ │ ├── Makefile │ │ ├── POTFILES.in │ │ ├── check.sh │ │ ├── conf.c │ │ ├── confdata.c │ │ ├── expr.c │ │ ├── expr.h │ │ ├── gconf.c │ │ ├── gconf.glade │ │ ├── images.c │ │ ├── kconfig_load.c │ │ ├── kxgettext.c │ │ ├── lex.zconf.c_shipped │ │ ├── lkc.h │ │ ├── lkc_proto.h │ │ ├── lxdialog │ │ │ ├── .gitignore │ │ │ ├── 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_shipped │ │ ├── zconf.l │ │ ├── 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.src │ ├── 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.src │ ├── Kbuild.src │ ├── README │ ├── README.job │ ├── ash.c │ ├── ash_doc.txt │ ├── ash_ptr_hack.c │ ├── ash_test │ │ ├── .gitignore │ │ ├── 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_altvalue1.right │ │ │ ├── glob_altvalue1.tests │ │ │ ├── glob_and_assign.right │ │ │ ├── glob_and_assign.tests │ │ │ ├── glob_bkslash_in_var.right │ │ │ ├── glob_bkslash_in_var.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 │ │ │ ├── heredocA.right │ │ │ ├── heredocA.tests │ │ │ ├── heredocB.right │ │ │ ├── heredocB.tests │ │ │ ├── heredoc_after_compound1.right │ │ │ ├── heredoc_after_compound1.tests │ │ │ ├── heredoc_backquote1.right │ │ │ ├── heredoc_backquote1.tests │ │ │ ├── heredoc_backslash1.right │ │ │ ├── heredoc_backslash1.tests │ │ │ ├── heredoc_bkslash_newline1.right │ │ │ ├── heredoc_bkslash_newline1.tests │ │ │ ├── heredoc_bkslash_newline2.right │ │ │ ├── heredoc_bkslash_newline2.tests │ │ │ ├── heredoc_empty.right │ │ │ ├── heredoc_empty.tests │ │ │ ├── heredoc_empty2.right │ │ │ ├── heredoc_empty2.tests │ │ │ ├── heredoc_empty3.right │ │ │ ├── heredoc_empty3.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_for1.right │ │ │ ├── empty_for1.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 │ │ │ ├── export1.right │ │ │ ├── export1.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_altvalue1.right │ │ │ ├── dollar_altvalue1.tests │ │ │ ├── dollar_altvalue2.right │ │ │ ├── dollar_altvalue2.tests │ │ │ ├── dollar_altvalue9.right │ │ │ ├── dollar_altvalue9.tests │ │ │ ├── dollar_repl_bash1.right │ │ │ ├── dollar_repl_bash1.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_stdin1.right │ │ │ ├── redir_stdin1.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_pattern_starting_with_slash.right │ │ │ ├── var_bash_pattern_starting_with_slash.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 │ │ │ ├── var_wordsplit_ifs5.right │ │ │ └── var_wordsplit_ifs5.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 │ │ ├── .gitignore │ │ ├── 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_altvalue1.right │ │ │ ├── glob_altvalue1.tests │ │ │ ├── glob_and_assign.right │ │ │ ├── glob_and_assign.tests │ │ │ ├── glob_bkslash_in_var.right │ │ │ ├── glob_bkslash_in_var.tests │ │ │ ├── glob_dir.right │ │ │ ├── glob_dir.tests │ │ │ ├── glob_redir.right │ │ │ └── glob_redir.tests │ │ ├── hush-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 │ │ │ ├── heredocA.right │ │ │ ├── heredocA.tests │ │ │ ├── heredocB.right │ │ │ ├── heredocB.tests │ │ │ ├── heredoc_after_compound1.right │ │ │ ├── heredoc_after_compound1.tests │ │ │ ├── heredoc_backslash1.right │ │ │ ├── heredoc_backslash1.tests │ │ │ ├── heredoc_bkslash_newline1.right │ │ │ ├── heredoc_bkslash_newline1.tests │ │ │ ├── heredoc_bkslash_newline2.right │ │ │ ├── heredoc_bkslash_newline2.tests │ │ │ ├── heredoc_empty2.right │ │ │ ├── heredoc_empty2.tests │ │ │ ├── heredoc_empty3.right │ │ │ ├── heredoc_empty3.tests │ │ │ ├── heredoc_huge.right │ │ │ ├── heredoc_huge.tests │ │ │ ├── heredoc_var_expand1.right │ │ │ └── heredoc_var_expand1.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_for1.right │ │ │ ├── empty_for1.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 │ │ │ ├── export1.right │ │ │ ├── export1.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_altvalue1.right │ │ │ ├── dollar_altvalue1.tests │ │ │ ├── dollar_altvalue2.right │ │ │ ├── dollar_altvalue2.tests │ │ │ ├── dollar_altvalue9.right │ │ │ ├── dollar_altvalue9.tests │ │ │ ├── dollar_repl_bash1.right │ │ │ ├── dollar_repl_bash1.tests │ │ │ ├── dollar_repl_slash_bash1.right │ │ │ ├── dollar_repl_slash_bash1.tests │ │ │ ├── dollar_repl_slash_bash2.right │ │ │ ├── dollar_repl_slash_bash2.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 │ │ ├── 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_stdin1.right │ │ │ ├── redir_stdin1.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_pattern_starting_with_slash.right │ │ │ ├── var_bash_pattern_starting_with_slash.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 │ │ │ ├── var_wordsplit_ifs5.right │ │ │ └── var_wordsplit_ifs5.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.src │ ├── 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 │ ├── bc.tests │ ├── bc_add.bc │ ├── bc_add_results.txt │ ├── bc_arctangent.bc │ ├── bc_arctangent_results.txt │ ├── bc_array.bc │ ├── bc_array_results.txt │ ├── bc_arrays.bc │ ├── bc_arrays_results.txt │ ├── bc_bessel.bc │ ├── bc_bessel_results.txt │ ├── bc_boolean.bc │ ├── bc_boolean_results.txt │ ├── bc_cosine.bc │ ├── bc_cosine_results.txt │ ├── bc_decimal.bc │ ├── bc_decimal_results.txt │ ├── bc_divide.bc │ ├── bc_divide_results.txt │ ├── bc_exponent.bc │ ├── bc_exponent_results.txt │ ├── bc_log.bc │ ├── bc_log_results.txt │ ├── bc_misc.bc │ ├── bc_misc1.bc │ ├── bc_misc1_results.txt │ ├── bc_misc2.bc │ ├── bc_misc2_results.txt │ ├── bc_misc_results.txt │ ├── bc_modulus.bc │ ├── bc_modulus_results.txt │ ├── bc_multiply.bc │ ├── bc_multiply_results.txt │ ├── bc_numbers1.bc │ ├── bc_numbers1_results.txt │ ├── bc_numbers2.bc │ ├── bc_numbers2_results.txt │ ├── bc_pi.bc │ ├── bc_pi_results.txt │ ├── bc_power.bc │ ├── bc_power_results.txt │ ├── bc_references.bc │ ├── bc_references_results.txt │ ├── bc_sine.bc │ ├── bc_sine_results.txt │ ├── bc_sqrt.bc │ ├── bc_sqrt_results.txt │ ├── bc_strings.bc │ ├── bc_strings_results.txt │ ├── bc_subtract.bc │ ├── bc_subtract_results.txt │ ├── bc_vars.bc │ ├── bc_vars_results.txt │ ├── 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 │ ├── dc_add.dc │ ├── dc_add_results.txt │ ├── dc_boolean.dc │ ├── dc_boolean_results.txt │ ├── dc_decimal.dc │ ├── dc_decimal_results.txt │ ├── dc_divide.dc │ ├── dc_divide_results.txt │ ├── dc_divmod.dc │ ├── dc_divmod_results.txt │ ├── dc_misc.dc │ ├── dc_misc_results.txt │ ├── dc_modexp.dc │ ├── dc_modexp_results.txt │ ├── dc_modulus.dc │ ├── dc_modulus_results.txt │ ├── dc_multiply.dc │ ├── dc_multiply_results.txt │ ├── dc_power.dc │ ├── dc_power_results.txt │ ├── dc_sqrt.dc │ ├── dc_sqrt_results.txt │ ├── dc_strings.dc │ ├── dc_strings_results.txt │ ├── dc_subtract.dc │ ├── dc_subtract_results.txt │ ├── dcx_vars.dc │ ├── dcx_vars_results.txt │ ├── 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 │ ├── 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.tests │ ├── hexdump.tests │ ├── 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 │ ├── 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.src │ ├── 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 │ ├── nologin.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.src │ ├── 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 ├── fixk210.patch ├── images └── k210_nommu_linux_run_tcc.png ├── init ├── k210_lib ├── .clang-format ├── Makefile ├── crt1.S ├── crti.S ├── crtn.S ├── dummy.S ├── entry.c ├── printf.c ├── printf.h ├── stdio.h ├── syscall.c └── syscall.h ├── prepare_buildroot.sh ├── prepare_k210_bin.sh ├── prepare_k210_cpio.sh ├── riscv64-nommu-buildroot ├── .defconfig ├── .flake8 ├── .gitignore ├── .gitlab-ci.yml ├── .gitlab-ci.yml.in ├── CHANGES ├── COPYING ├── Config.in ├── Config.in.legacy ├── DEVELOPERS ├── Makefile ├── Makefile.legacy ├── README.md ├── arch │ ├── Config.in │ ├── Config.in.arc │ ├── Config.in.arm │ ├── Config.in.csky │ ├── Config.in.m68k │ ├── Config.in.microblaze │ ├── Config.in.mips │ ├── Config.in.nds32 │ ├── Config.in.nios2 │ ├── Config.in.or1k │ ├── Config.in.powerpc │ ├── Config.in.riscv │ ├── Config.in.sh │ ├── Config.in.sparc │ ├── Config.in.x86 │ ├── Config.in.xtensa │ ├── arch.mk │ ├── arch.mk.arc │ ├── arch.mk.csky │ ├── arch.mk.riscv │ └── arch.mk.xtensa ├── board │ ├── aarch64-efi │ │ ├── genimage-efi.cfg │ │ ├── grub.cfg │ │ ├── post-image.sh │ │ └── readme.txt │ ├── acmesystems │ │ ├── aria-g25 │ │ │ ├── genimage.cfg │ │ │ └── readme.txt │ │ └── arietta-g25 │ │ │ ├── genimage.cfg │ │ │ └── readme.txt │ ├── altera │ │ └── socrates_cyclone5 │ │ │ ├── boot-env.txt │ │ │ ├── genimage.cfg │ │ │ └── readme.txt │ ├── amarula │ │ ├── a64-relic │ │ │ ├── extlinux.conf │ │ │ ├── genimage.cfg │ │ │ ├── post-build.sh │ │ │ ├── readme.txt │ │ │ └── rootfs_overlay │ │ │ │ └── lib │ │ │ │ └── firmware │ │ │ │ └── brcm │ │ │ │ └── brcmfmac4330-sdio.txt │ │ └── vyasa │ │ │ ├── extlinux.conf │ │ │ ├── genimage.cfg │ │ │ ├── linux_gmac.fragment │ │ │ ├── patches │ │ │ └── uboot │ │ │ │ └── 0001-include-configs-Increase-CONFIG_SYS_BOOTM_LEN-to-16M.patch │ │ │ ├── post-build.sh │ │ │ └── readme.txt │ ├── andes │ │ ├── ae3xx │ │ │ └── ae3xx.fragment │ │ ├── patches │ │ │ └── linux │ │ │ │ └── 0001-nds32-Fix-boot-messages-garbled.patch │ │ └── readme.txt │ ├── arcturus │ │ ├── aarch64-ucls1012a │ │ │ ├── post-image.sh │ │ │ ├── readme.txt │ │ │ └── rootfs_overlay │ │ │ │ └── etc │ │ │ │ └── init.d │ │ │ │ └── S09modload │ │ └── ppc-ucp1020 │ │ │ └── readme.txt │ ├── arm │ │ ├── foundation-v8 │ │ │ └── readme.txt │ │ └── juno │ │ │ ├── linux-juno-defconfig │ │ │ └── readme.txt │ ├── armadeus │ │ ├── apf27 │ │ │ └── linux-4.12.config │ │ ├── apf51 │ │ │ └── linux-4.4.config │ │ └── readme.txt │ ├── asus │ │ └── tinker │ │ │ ├── extlinux.conf │ │ │ ├── genimage.cfg │ │ │ ├── patches │ │ │ └── uboot │ │ │ │ └── 0001-include-configs-Increase-CONFIG_SYS_BOOTM_LEN-to-16M.patch │ │ │ ├── post-build.sh │ │ │ └── readme.txt │ ├── atmel │ │ ├── at91sam9x5ek_mmc │ │ │ ├── genimage.cfg │ │ │ └── uboot-env.txt │ │ ├── flasher.sh │ │ ├── nandflash.tcl │ │ ├── readme.txt │ │ ├── sama5d27_som1_ek_mmc │ │ │ └── genimage.cfg │ │ ├── sama5d2_xplained_mmc │ │ │ └── genimage.cfg │ │ ├── sama5d3_xplained_mmc │ │ │ └── genimage.cfg │ │ └── sama5d4_xplained_mmc │ │ │ └── genimage.cfg │ ├── avnet │ │ └── s6lx9_microboard │ │ │ ├── lx9_mmu.dts │ │ │ ├── lx9_mmu_defconfig │ │ │ └── readme.txt │ ├── bananapi │ │ ├── bananapi-m1 │ │ │ ├── boot.cmd │ │ │ ├── genimage.cfg │ │ │ └── readme.txt │ │ ├── bananapi-m2-ultra │ │ │ ├── boot.cmd │ │ │ ├── genimage.cfg │ │ │ └── readme.txt │ │ └── bananapi-m64 │ │ │ ├── boot.cmd │ │ │ ├── genimage.cfg │ │ │ └── readme.txt │ ├── beagleboardx15 │ │ ├── genimage.cfg │ │ └── readme.txt │ ├── beaglebone │ │ ├── genimage.cfg │ │ ├── genimage_linux41.cfg │ │ ├── linux-sgx.fragment │ │ ├── patches │ │ │ └── linux │ │ │ │ └── 0001-keep-jtag-clock-alive-for-debugger.patch │ │ ├── post-build.sh │ │ ├── readme.txt │ │ └── uEnv.txt │ ├── beagleboneai │ │ ├── genimage.cfg │ │ ├── patches │ │ │ └── uboot │ │ │ │ └── 0001-BeagleBone-AI-support.patch │ │ ├── post-build.sh │ │ ├── readme.txt │ │ └── uEnv.txt │ ├── beelink │ │ └── gs1 │ │ │ ├── extlinux.conf │ │ │ ├── genimage.cfg │ │ │ ├── patches │ │ │ ├── arm-trusted-firmware │ │ │ │ └── 0001-plat-allwinner-common-use-r_wdog-instead-of-wdog.patch │ │ │ └── uboot │ │ │ │ └── 0001-arm-dts-sync-dts-for-Allwinner-H6.patch │ │ │ └── post-build.sh │ ├── boundarydevices │ │ └── common │ │ │ ├── boot.cmd │ │ │ ├── genimage.cfg │ │ │ ├── post-build.sh │ │ │ ├── post-image.sh │ │ │ ├── readme.txt │ │ │ └── upgrade.cmd │ ├── chromebook │ │ └── snow │ │ │ ├── kernel.args │ │ │ ├── kernel.its │ │ │ ├── linux-4.15-dts-tpm.patch │ │ │ ├── linux-4.15.fragment │ │ │ ├── mksd.sh │ │ │ ├── readme.txt │ │ │ └── sign.sh │ ├── ci20 │ │ ├── genimage.cfg │ │ ├── patches │ │ │ └── uboot │ │ │ │ └── 0001-mips-Remove-default-endiannes.patch │ │ ├── readme.txt │ │ └── uboot-env.txt │ ├── csky │ │ ├── gx6605s │ │ │ ├── gdbinit │ │ │ └── gx6605s.dts │ │ └── readme.txt │ ├── cubietech │ │ └── cubieboard2 │ │ │ ├── boot.cmd │ │ │ ├── genimage.cfg │ │ │ └── post-image.sh │ ├── embest │ │ └── riotboard │ │ │ ├── genimage.cfg │ │ │ ├── readme.txt │ │ │ └── rootfs_overlay │ │ │ └── boot │ │ │ └── extlinux │ │ │ └── extlinux.conf │ ├── engicam │ │ ├── geam6ul │ │ │ ├── genimage.cfg │ │ │ └── readme.txt │ │ ├── icorem6 │ │ │ ├── genimage.cfg │ │ │ ├── linux_qt5.fragment │ │ │ ├── readme.txt │ │ │ └── rootfs_overlay │ │ │ │ └── root │ │ │ │ ├── imx6qdl-icore-ofcap10.json │ │ │ │ ├── imx6qdl-icore-ofcap12.json │ │ │ │ └── imx6qdl-icore.json │ │ ├── icorem6_rqs │ │ │ ├── genimage.cfg │ │ │ └── readme.txt │ │ └── isiot │ │ │ ├── genimage.cfg │ │ │ └── readme.txt │ ├── freescale │ │ ├── common │ │ │ ├── imx │ │ │ │ ├── genimage.cfg.template │ │ │ │ ├── genimage.cfg.template_imx8 │ │ │ │ ├── genimage.cfg.template_no_boot_part_spl │ │ │ │ ├── genimage.cfg.template_spl │ │ │ │ ├── imx8-bootloader-prepare.sh │ │ │ │ └── post-image.sh │ │ │ └── mxs │ │ │ │ ├── genimage.cfg.template │ │ │ │ └── post-image.sh │ │ ├── imx23evk │ │ │ └── readme.txt │ │ ├── imx25pdk │ │ │ └── readme.txt │ │ ├── imx28evk │ │ │ └── readme.txt │ │ ├── imx51evk │ │ │ └── readme.txt │ │ ├── imx6-sabresd │ │ │ ├── linux_qt5.fragment │ │ │ ├── readme.txt │ │ │ └── rootfs_overlay │ │ │ │ └── root │ │ │ │ └── sabresd.json │ │ ├── imx6sabre │ │ │ ├── patches │ │ │ │ └── uboot │ │ │ │ │ ├── 0002-imx-Create-distinct-pre-processed-mkimage-config-fil.patch │ │ │ │ │ └── uboot-0001-mx6qsabre_common-boot-Linux-to-init-in-mfgtools-mode.patch │ │ │ └── readme.txt │ │ ├── imx6slevk │ │ │ └── readme.txt │ │ ├── imx6sxsdb │ │ │ └── readme.txt │ │ ├── imx6ulevk │ │ │ └── readme.txt │ │ ├── imx7dsdb │ │ │ ├── patches │ │ │ │ └── uboot │ │ │ │ │ └── 0001-imx-Create-distinct-pre-processed-mkimage-config-fil.patch │ │ │ └── readme.txt │ │ ├── imx8mmevk │ │ │ └── readme.txt │ │ ├── imx8mqevk │ │ │ └── readme.txt │ │ ├── imx8qxpmek │ │ │ └── readme.txt │ │ ├── p1025twr │ │ │ └── readme.txt │ │ ├── t1040_t2080 │ │ │ └── readme.txt │ │ └── warpboard │ │ │ ├── README │ │ │ ├── linux.fragment │ │ │ └── rootfs_overlay │ │ │ └── lib │ │ │ └── firmware │ │ │ └── brcm │ │ │ └── brcmfmac4330-sdio.txt │ ├── friendlyarm │ │ ├── nanopi-a64 │ │ │ ├── boot.cmd │ │ │ ├── genimage.cfg │ │ │ └── readme.txt │ │ ├── nanopi-m1-plus │ │ │ ├── boot.cmd │ │ │ ├── genimage.cfg │ │ │ └── readme.txt │ │ ├── nanopi-m1 │ │ │ ├── boot.cmd │ │ │ ├── genimage.cfg │ │ │ └── readme.txt │ │ ├── nanopi-neo-plus2 │ │ │ ├── extlinux.conf │ │ │ ├── genimage.cfg │ │ │ ├── linux-extras.config │ │ │ ├── post-build.sh │ │ │ ├── readme.txt │ │ │ └── rootfs_overlay │ │ │ │ └── lib │ │ │ │ └── firmware │ │ │ │ └── brcm │ │ │ │ └── brcmfmac43430-sdio.friendlyarm,nanopi-neo-plus2.txt │ │ ├── nanopi-neo │ │ │ ├── boot.cmd │ │ │ ├── genimage.cfg │ │ │ └── readme.txt │ │ └── nanopi-neo2 │ │ │ ├── boot.cmd │ │ │ ├── genimage.cfg │ │ │ └── readme.txt │ ├── grinn │ │ ├── chiliboard │ │ │ ├── genimage.cfg │ │ │ ├── post-image.sh │ │ │ └── readme.txt │ │ └── liteboard │ │ │ ├── genimage.cfg │ │ │ ├── post-image.sh │ │ │ └── readme.txt │ ├── hardkernel │ │ ├── odroidc2 │ │ │ ├── boot.ini │ │ │ ├── genimage.cfg │ │ │ ├── post-image.sh │ │ │ └── readme.txt │ │ └── odroidxu4 │ │ │ ├── boot.ini │ │ │ ├── genimage.cfg │ │ │ ├── post-image.sh │ │ │ └── readme.txt │ ├── intel │ │ └── galileo │ │ │ ├── genimage.cfg │ │ │ ├── grub.cfg │ │ │ ├── linux-3.14.config │ │ │ ├── post-build.sh │ │ │ ├── post-image.sh │ │ │ ├── readme.txt │ │ │ └── rootfs_overlay │ │ │ └── etc │ │ │ ├── init.d │ │ │ └── S09modload │ │ │ └── modules-load.galileo │ │ │ ├── galileo.conf │ │ │ └── galileo_gen2.conf │ ├── lego │ │ └── ev3 │ │ │ ├── busybox.fragment │ │ │ ├── genimage.cfg │ │ │ ├── linux.fragment │ │ │ ├── post-image.sh │ │ │ └── readme.txt │ ├── lemaker │ │ └── bananapro │ │ │ ├── boot.cmd │ │ │ ├── genimage.cfg │ │ │ ├── linux-wifi.fragment │ │ │ ├── patches │ │ │ └── linux │ │ │ │ └── 0001-arch-arm-boot-dts-sun7i-a20-bananapro.dts-disable-00.patch │ │ │ ├── post-build.sh │ │ │ ├── post-image.sh │ │ │ ├── readme.txt │ │ │ └── rootfs_overlay │ │ │ └── lib │ │ │ └── firmware │ │ │ └── brcm │ │ │ ├── brcmfmac43362-sdio.lemaker,bananapro.txt │ │ │ └── brcmfmac43362-sdio.txt │ ├── librecomputer │ │ └── lafrite │ │ │ ├── genimage.cfg │ │ │ ├── overlay │ │ │ └── extlinux │ │ │ │ └── extlinux.conf │ │ │ └── readme.txt │ ├── licheepi │ │ ├── boot.cmd │ │ ├── genimage.cfg │ │ └── readme.txt │ ├── linksprite │ │ └── pcduino │ │ │ ├── boot.cmd │ │ │ ├── genimage.cfg │ │ │ ├── linux-extras.config │ │ │ ├── post-build.sh │ │ │ ├── post-image.sh │ │ │ └── readme.txt │ ├── minnowboard │ │ ├── fs-overlay-graphical │ │ │ └── etc │ │ │ │ ├── X11 │ │ │ │ └── Xsession │ │ │ │ └── asound.conf │ │ ├── genimage.cfg │ │ ├── grub.cfg │ │ ├── linux.config │ │ ├── post-build.sh │ │ └── readme.txt │ ├── nexbox │ │ └── a95x │ │ │ ├── boot.txt │ │ │ ├── genimage.cfg │ │ │ ├── post-build.sh │ │ │ ├── post-image.sh │ │ │ └── readme.txt │ ├── olimex │ │ ├── a10_olinuxino │ │ │ ├── boot.cmd │ │ │ ├── genimage.cfg │ │ │ ├── post-build.sh │ │ │ └── readme.txt │ │ ├── a13_olinuxino │ │ │ ├── boot.cmd │ │ │ ├── genimage.cfg │ │ │ ├── post-build.sh │ │ │ └── readme.txt │ │ ├── a20_olinuxino │ │ │ ├── boot.cmd │ │ │ ├── genimage.cfg │ │ │ ├── post-build.sh │ │ │ └── readme.txt │ │ ├── a33_olinuxino │ │ │ ├── boot.cmd │ │ │ ├── genimage.cfg │ │ │ ├── post-build.sh │ │ │ └── readme.txt │ │ ├── a64-olinuxino │ │ │ ├── boot.cmd │ │ │ ├── genimage.cfg │ │ │ └── readme.txt │ │ └── imx233_olinuxino │ │ │ ├── linux-wifi.fragment │ │ │ └── readme.txt │ ├── openblocks │ │ └── a6 │ │ │ └── readme.txt │ ├── orangepi │ │ ├── orangepi-lite │ │ │ ├── boot.cmd │ │ │ ├── genimage.cfg │ │ │ ├── linux-extras.config │ │ │ └── readme.txt │ │ ├── orangepi-lite2 │ │ │ ├── extlinux.conf │ │ │ ├── genimage.cfg │ │ │ ├── post-build.sh │ │ │ ├── readme.txt │ │ │ └── rootfs_overlay │ │ │ │ └── lib │ │ │ │ └── firmware │ │ │ │ └── brcm │ │ │ │ └── brcmfmac43455-sdio.txt │ │ ├── orangepi-one-plus │ │ │ ├── extlinux.conf │ │ │ ├── genimage.cfg │ │ │ ├── post-build.sh │ │ │ └── readme.txt │ │ ├── orangepi-one │ │ │ ├── boot.cmd │ │ │ ├── genimage.cfg │ │ │ └── readme.txt │ │ ├── orangepi-pc-plus │ │ │ ├── boot.cmd │ │ │ ├── genimage.cfg │ │ │ ├── linux-extras.config │ │ │ └── readme.txt │ │ ├── orangepi-pc │ │ │ ├── boot.cmd │ │ │ ├── genimage.cfg │ │ │ ├── linux.fragment │ │ │ └── readme.txt │ │ ├── orangepi-pc2 │ │ │ ├── boot.cmd │ │ │ ├── genimage.cfg │ │ │ └── readme.txt │ │ ├── orangepi-plus │ │ │ ├── boot.cmd │ │ │ ├── genimage.cfg │ │ │ └── readme.txt │ │ ├── orangepi-prime │ │ │ ├── boot.cmd │ │ │ ├── genimage.cfg │ │ │ └── readme.txt │ │ ├── orangepi-r1 │ │ │ ├── boot.cmd │ │ │ ├── genimage.cfg │ │ │ ├── linux-extras.config │ │ │ └── readme.txt │ │ ├── orangepi-win │ │ │ ├── boot.cmd │ │ │ ├── genimage.cfg │ │ │ └── readme.txt │ │ ├── orangepi-zero-plus2 │ │ │ ├── boot.cmd │ │ │ ├── genimage.cfg │ │ │ ├── linux-extras.config │ │ │ ├── readme.txt │ │ │ └── rootfs_overlay │ │ │ │ └── lib │ │ │ │ └── firmware │ │ │ │ └── brcm │ │ │ │ └── brcmfmac43430-sdio.txt │ │ └── orangepi-zero │ │ │ ├── boot.cmd │ │ │ ├── genimage.cfg │ │ │ ├── linux-extras.config │ │ │ ├── patches │ │ │ └── linux │ │ │ │ ├── 0001-ARM-dts-orange-pi-zero-interrupt-triggering-xr819.patch │ │ │ │ ├── 0002-ARM-dts-orange-pi-zero-enable-spi-nor.patch │ │ │ │ └── 0003-ARM-dts-orange-pi-zero-enable-spidev.patch │ │ │ └── readme.txt │ ├── pandaboard │ │ ├── genimage.cfg │ │ └── readme.txt │ ├── pc │ │ ├── genimage-bios.cfg │ │ ├── genimage-efi.cfg │ │ ├── grub-bios.cfg │ │ ├── grub-efi.cfg │ │ ├── linux.config │ │ ├── post-build.sh │ │ ├── post-image-efi.sh │ │ └── readme.txt │ ├── pine64 │ │ ├── pine64 │ │ │ ├── boot.cmd │ │ │ ├── genimage.cfg │ │ │ └── readme.txt │ │ ├── rock64 │ │ │ ├── extlinux.conf │ │ │ ├── genimage.cfg │ │ │ ├── patches │ │ │ │ └── uboot │ │ │ │ │ └── 0001-Makefile-rk3328-needs-itb-image-to-boot-properly.patch │ │ │ ├── post-build.sh │ │ │ └── readme.txt │ │ └── sopine │ │ │ ├── boot.cmd │ │ │ ├── genimage.cfg │ │ │ └── readme.txt │ ├── qemu │ │ ├── aarch64-virt │ │ │ ├── linux.config │ │ │ └── readme.txt │ │ ├── arm-versatile │ │ │ ├── linux-nommu.config │ │ │ ├── linux.config │ │ │ ├── patches │ │ │ │ └── linux │ │ │ │ │ └── versatile-nommu.patch │ │ │ └── readme.txt │ │ ├── arm-vexpress-tz │ │ │ ├── linux.fragment │ │ │ ├── post-build.sh │ │ │ ├── readme.txt │ │ │ └── u-boot.config │ │ ├── arm-vexpress │ │ │ └── readme.txt │ │ ├── csky │ │ │ ├── linux-ck610.config.fragment │ │ │ ├── linux-ck807.config.fragment │ │ │ ├── linux-ck810.config.fragment │ │ │ ├── linux-ck860.config.fragment │ │ │ └── readme.txt │ │ ├── m68k-mcf5208 │ │ │ ├── linux.config │ │ │ └── readme.txt │ │ ├── m68k-q800 │ │ │ ├── linux.config │ │ │ └── readme.txt │ │ ├── microblazebe-mmu │ │ │ ├── linux.config │ │ │ ├── readme.txt │ │ │ └── xilinx-xemaclite.patch │ │ ├── microblazeel-mmu │ │ │ ├── linux.config │ │ │ ├── readme.txt │ │ │ └── xilinx-xemaclite.patch │ │ ├── mips32r2-malta │ │ │ ├── linux.config │ │ │ └── readme.txt │ │ ├── mips32r2el-malta │ │ │ ├── linux.config │ │ │ └── readme.txt │ │ ├── mips32r6-malta │ │ │ ├── linux.config │ │ │ └── readme.txt │ │ ├── mips32r6el-malta │ │ │ ├── linux.config │ │ │ └── readme.txt │ │ ├── mips64-malta │ │ │ ├── linux.config │ │ │ └── readme.txt │ │ ├── mips64el-malta │ │ │ ├── linux.config │ │ │ └── readme.txt │ │ ├── mips64r6-malta │ │ │ ├── linux.config │ │ │ └── readme.txt │ │ ├── mips64r6el-malta │ │ │ ├── linux.config │ │ │ └── readme.txt │ │ ├── nios2-10m50 │ │ │ ├── linux.fragment │ │ │ └── readme.txt │ │ ├── or1k │ │ │ ├── linux.config │ │ │ └── readme.txt │ │ ├── ppc-g3beige │ │ │ ├── linux.config │ │ │ └── readme.txt │ │ ├── ppc-mac99 │ │ │ ├── linux.fragment │ │ │ └── readme.txt │ │ ├── ppc-mpc8544ds │ │ │ ├── linux.config │ │ │ └── readme.txt │ │ ├── ppc-virtex-ml507 │ │ │ ├── linux.config │ │ │ └── readme.txt │ │ ├── ppc64-e5500 │ │ │ ├── linux.fragment │ │ │ └── readme.txt │ │ ├── ppc64-pseries │ │ │ └── readme.txt │ │ ├── ppc64le-pseries │ │ │ └── readme.txt │ │ ├── riscv32-virt │ │ │ ├── patches │ │ │ │ └── linux │ │ │ │ │ └── 0001-Revert-riscv-Use-latest-system-call-ABI.patch │ │ │ └── readme.txt │ │ ├── riscv64-virt │ │ │ └── readme.txt │ │ ├── sh4-r2d │ │ │ ├── linux.config │ │ │ ├── patches │ │ │ │ └── linux │ │ │ │ │ └── 0001-Revert-serial-sh-sci-increase-RX-FIFO-trigger-defaul.patch │ │ │ └── readme.txt │ │ ├── sh4eb-r2d │ │ │ ├── linux.config │ │ │ ├── patches │ │ │ │ └── linux │ │ │ │ │ └── 0001-Revert-serial-sh-sci-increase-RX-FIFO-trigger-defaul.patch │ │ │ └── readme.txt │ │ ├── sparc-ss10 │ │ │ ├── linux.config │ │ │ └── readme.txt │ │ ├── sparc64-sun4u │ │ │ ├── linux.config │ │ │ └── readme.txt │ │ ├── x86 │ │ │ ├── linux.config │ │ │ └── readme.txt │ │ ├── x86_64 │ │ │ ├── linux.config │ │ │ └── readme.txt │ │ └── xtensa-lx60 │ │ │ ├── linux-nommu.config │ │ │ ├── linux.config │ │ │ └── readme.txt │ ├── raspberrypi │ │ ├── genimage-raspberrypi.cfg │ │ ├── genimage-raspberrypi0.cfg │ │ ├── genimage-raspberrypi0w.cfg │ │ ├── genimage-raspberrypi2.cfg │ │ ├── genimage-raspberrypi3-64.cfg │ │ ├── genimage-raspberrypi3.cfg │ │ ├── genimage-raspberrypi4-64.cfg │ │ ├── genimage-raspberrypi4.cfg │ │ ├── post-build.sh │ │ ├── post-image.sh │ │ └── readme.txt │ ├── raspberrypi0 │ ├── raspberrypi0w │ ├── raspberrypi2 │ ├── raspberrypi3 │ ├── raspberrypi3-64 │ ├── raspberrypi4 │ ├── raspberrypi4-64 │ ├── roseapplepi │ │ ├── genimage.cfg │ │ ├── patches │ │ │ ├── linux │ │ │ │ ├── 0001-unbreak-xhci-trace.patch │ │ │ │ ├── 0002-kernel-add-support-for-gcc-5.patch │ │ │ │ ├── 0003-ARM-8158-1-LLVMLinux-use-static-inline-in-ARM-ftrace.patch │ │ │ │ ├── 0004-Fix-compile-errors-with-gcc5.patch │ │ │ │ └── 0005-compiler-gcc-integrate-the-various-compiler-gcc-345-.patch │ │ │ └── uboot │ │ │ │ └── 0001-compiler-.h-sync-include-linux-compiler-.h-with-Linu.patch │ │ ├── post-build.sh │ │ └── uEnv.txt │ ├── sheevaplug │ │ └── readme.txt │ ├── sifive │ │ └── hifive-unleashed │ │ │ ├── genimage.cfg │ │ │ ├── linux.config.fragment │ │ │ └── readme.txt │ ├── sinovoip │ │ └── m2-plus │ │ │ ├── boot.cmd │ │ │ └── genimage.cfg │ ├── solidrun │ │ ├── clearfog │ │ │ ├── extlinux.conf │ │ │ ├── genimage.cfg │ │ │ ├── linux.fragment │ │ │ ├── post-build.sh │ │ │ └── readme.txt │ │ ├── clearfog_gt_8k │ │ │ ├── extlinux.conf │ │ │ ├── genimage.cfg │ │ │ ├── linux-extras.config │ │ │ ├── post-build-mainline.sh │ │ │ ├── readme.txt │ │ │ └── uboot-fragment.config │ │ ├── macchiatobin │ │ │ ├── extlinux.conf │ │ │ ├── genimage.cfg │ │ │ ├── linux-extras.config │ │ │ ├── post-build-mainline.sh │ │ │ ├── post-build.sh │ │ │ ├── readme.txt │ │ │ ├── uEnv-example.txt │ │ │ └── uboot-fragment.config │ │ └── mx6cubox │ │ │ ├── boot.scr.txt │ │ │ ├── genimage.cfg │ │ │ ├── post-build.sh │ │ │ ├── post-image.sh │ │ │ └── readme.txt │ ├── stmicroelectronics │ │ ├── stm32-post-build.sh │ │ ├── stm32f429-disco │ │ │ ├── flash.sh │ │ │ ├── patches │ │ │ │ └── linux │ │ │ │ │ └── 0001-ARM-stm32f249-disco-don-t-force-init-in-chosen-boota.patch │ │ │ └── readme.txt │ │ ├── stm32f469-disco │ │ │ ├── flash.sh │ │ │ ├── patches │ │ │ │ └── linux │ │ │ │ │ └── 0001-ARM-stm32f249-disco-don-t-force-init-in-chosen-boota.patch │ │ │ └── readme.txt │ │ └── stm32mp157c-dk2 │ │ │ ├── genimage.cfg │ │ │ ├── linux.config │ │ │ ├── overlay │ │ │ └── boot │ │ │ │ └── extlinux │ │ │ │ └── extlinux.conf │ │ │ ├── readme.txt │ │ │ └── uboot-fragment.config │ ├── synopsys │ │ ├── axs10x │ │ │ └── post-build.sh │ │ ├── hsdk │ │ │ ├── genimage.cfg │ │ │ ├── linux.fragment │ │ │ ├── readme.txt │ │ │ └── uboot.env.txt │ │ └── vdk │ │ │ ├── linux-vdk-aarch64-defconfig │ │ │ └── readme.txt │ ├── technexion │ │ ├── imx6ulpico │ │ │ ├── readme.txt │ │ │ └── rootfs_overlay │ │ │ │ └── lib │ │ │ │ └── firmware │ │ │ │ └── brcm │ │ │ │ └── brcmfmac4339-sdio.txt │ │ ├── imx7dpico │ │ │ ├── readme.txt │ │ │ └── rootfs_overlay │ │ │ │ ├── boot │ │ │ │ └── extlinux │ │ │ │ │ └── extlinux.conf │ │ │ │ └── lib │ │ │ │ └── firmware │ │ │ │ └── brcm │ │ │ │ └── brcmfmac4339-sdio.txt │ │ ├── imx8mmpico │ │ │ └── readme.txt │ │ └── imx8mpico │ │ │ └── readme.txt │ ├── technologic │ │ ├── ts4900 │ │ │ ├── genimage.cfg │ │ │ ├── post-image.sh │ │ │ └── readme.txt │ │ ├── ts5500 │ │ │ ├── fs-overlay │ │ │ │ └── boot │ │ │ │ │ └── syslinux │ │ │ │ │ └── syslinux.cfg │ │ │ ├── linux-4.14.config │ │ │ └── readme.txt │ │ └── ts7680 │ │ │ ├── genimage.cfg │ │ │ └── readme.txt │ ├── toradex │ │ └── apalis-imx6 │ │ │ ├── genimage.cfg │ │ │ ├── post-image.sh │ │ │ ├── readme.txt │ │ │ └── uEnv.txt │ ├── udoo │ │ ├── mx6qdl │ │ │ ├── linux.fragment │ │ │ └── readme.txt │ │ └── neo │ │ │ ├── boot.scr.txt │ │ │ ├── genimage.cfg │ │ │ ├── post-build.sh │ │ │ ├── post-image.sh │ │ │ └── readme.txt │ ├── wandboard │ │ ├── boot.scr.txt │ │ ├── genimage.cfg │ │ ├── post-build.sh │ │ └── readme.txt │ ├── warp7 │ │ ├── readme.txt │ │ └── rootfs_overlay │ │ │ └── lib │ │ │ └── firmware │ │ │ └── brcm │ │ │ └── brcmfmac43430-sdio.txt │ ├── zynq │ │ ├── genimage.cfg │ │ ├── post-image.sh │ │ └── readme.txt │ └── zynqmp │ │ ├── genimage.cfg │ │ ├── patches │ │ └── uboot │ │ │ ├── 0001-arm64-zynqmp-zcu106-fix-SPL-MMC-booting.patch │ │ │ ├── 0002-arm64-zynqmp-Enable-booting-to-ATF.patch │ │ │ ├── 0003-arm64-zynqmp-accept-an-absolute-path-for-PMUFW_INIT_.patch │ │ │ └── 0004-arm-arm64-zynq-zynqmp-pass-the-PS-init-file-as-a-kco.patch │ │ ├── post-image.sh │ │ └── readme.txt ├── boot │ ├── Config.in │ ├── afboot-stm32 │ │ ├── Config.in │ │ ├── afboot-stm32.hash │ │ └── afboot-stm32.mk │ ├── arm-trusted-firmware │ │ ├── Config.in │ │ ├── arm-trusted-firmware.hash │ │ └── arm-trusted-firmware.mk │ ├── at91bootstrap │ │ ├── Config.in │ │ ├── at91bootstrap-1.16-eabi-fix.patch │ │ ├── at91bootstrap-1.16-gcc-4.6.x-ldscript-fix.patch │ │ ├── at91bootstrap-1.16-u-boot-relocation-fix.patch │ │ ├── at91bootstrap.hash │ │ └── at91bootstrap.mk │ ├── at91bootstrap3 │ │ ├── Config.in │ │ ├── at91bootstrap3.hash │ │ └── at91bootstrap3.mk │ ├── at91dataflashboot │ │ ├── Config.in │ │ ├── at91dataflashboot-1.05-do-not-install.patch │ │ ├── at91dataflashboot-1.05-eabi-fixes.patch │ │ ├── at91dataflashboot.hash │ │ └── at91dataflashboot.mk │ ├── barebox │ │ ├── Config.in │ │ ├── barebox-aux │ │ │ ├── Config.in │ │ │ ├── barebox-aux.hash │ │ │ └── barebox-aux.mk │ │ ├── barebox.hash │ │ ├── barebox.mk │ │ └── barebox │ │ │ ├── Config.in │ │ │ ├── barebox.hash │ │ │ └── barebox.mk │ ├── binaries-marvell │ │ ├── Config.in │ │ ├── binaries-marvell.hash │ │ └── binaries-marvell.mk │ ├── boot-wrapper-aarch64 │ │ ├── Config.in │ │ └── boot-wrapper-aarch64.mk │ ├── common.mk │ ├── grub2 │ │ ├── Config.in │ │ ├── grub.cfg │ │ ├── grub2.hash │ │ ├── grub2.mk │ │ └── readme.txt │ ├── gummiboot │ │ ├── 0001-Allow-building-with-newer-glibc-versions.patch │ │ ├── 0002-Fix-linking-for-non-host-compatible-targets.patch │ │ ├── Config.in │ │ ├── buildroot.conf │ │ ├── gummiboot.mk │ │ └── loader.conf │ ├── lpc32xxcdl │ │ ├── Config.in │ │ ├── lpc32xxcdl-2.11-compiler_name.patch │ │ ├── lpc32xxcdl-2.11-delete_redundant_files.patch │ │ ├── lpc32xxcdl-2.11-libnosys_gnu.patch │ │ ├── lpc32xxcdl-2.11-slashes.patch │ │ └── lpc32xxcdl.mk │ ├── mv-ddr-marvell │ │ ├── 0001-mv_ddr-mv_ddr4_training_leveling.c-uninitialized-var.patch │ │ ├── Config.in │ │ ├── mv-ddr-marvell.hash │ │ └── mv-ddr-marvell.mk │ ├── mxs-bootlets │ │ ├── Config.in │ │ ├── barebox_ivt.bd │ │ ├── mxs-bootlets.hash │ │ └── mxs-bootlets.mk │ ├── opensbi │ │ ├── 0001-Makefile-Don-t-specify-mabi-or-march.patch │ │ ├── Config.in │ │ ├── opensbi.hash │ │ └── opensbi.mk │ ├── optee-os │ │ ├── Config.in │ │ ├── optee-os.hash │ │ └── optee-os.mk │ ├── s500-bootloader │ │ ├── Config.in │ │ ├── s500-bootloader.hash │ │ └── s500-bootloader.mk │ ├── shim │ │ ├── Config.in │ │ ├── shim.hash │ │ └── shim.mk │ ├── syslinux │ │ ├── 0001-bios-Fix-alignment-change-with-gcc-5.patch │ │ ├── 0002-Disable-PIE-to-avoid-FTBFS-on-amd64.patch │ │ ├── 0003-memdisk-Force-ld-output-format-to-32-bits.patch │ │ ├── 0004-utils-Use-the-host-toolchain-to-build.patch │ │ ├── 0005-lzo-Use-the-host-toolchain-for-prepcore.patch │ │ ├── 0006-The-VPrint-definition-is-now-part-of-the-exports-of-.patch │ │ ├── 0007-Update-the-longjump-calls-to-fit-the-new-declaration.patch │ │ ├── 0008-efi-wrapper-build-it-with-the-host-toolchain.patch │ │ ├── 0009-bios-Don-t-try-to-guess-the-sections-alignment.patch │ │ ├── 0010-core-Clean-up-the-i386-bios-build.patch │ │ ├── 0011-extlinux-Use-the-host-toolchain-to-build.patch │ │ ├── 0012-pull-in-sys-sysmacros-h-for-major-minor-makedev.patch │ │ ├── 0013-Fix-build-with-gnu-efi-version-3.0.9.patch │ │ ├── 0014-Fix-build-with-binutils-note-gnu-property-section.patch │ │ ├── Config.in │ │ ├── syslinux.hash │ │ └── syslinux.mk │ ├── uboot │ │ ├── 2015.07 │ │ │ └── 0001-Revert-arch-Make-board-selection-choices-optional.patch │ │ ├── 2016.07 │ │ │ └── 0001-arc-Use-mcpu-XXX-instead-of-obsolete-marcXXX.patch │ │ ├── 2016.09.01 │ │ │ └── 0001-arc-Use-mcpu-XXX-instead-of-obsolete-marcXXX.patch │ │ ├── Config.in │ │ ├── uboot.hash │ │ └── uboot.mk │ └── vexpress-firmware │ │ ├── Config.in │ │ ├── vexpress-firmware.hash │ │ └── vexpress-firmware.mk ├── configs │ ├── aarch64_efi_defconfig │ ├── acmesystems_aria_g25_128mb_defconfig │ ├── acmesystems_aria_g25_256mb_defconfig │ ├── acmesystems_arietta_g25_128mb_defconfig │ ├── acmesystems_arietta_g25_256mb_defconfig │ ├── amarula_a64_relic_defconfig │ ├── amarula_vyasa_rk3288_defconfig │ ├── andes_ae3xx_defconfig │ ├── arcturus_ucls1012a_defconfig │ ├── arcturus_ucp1020_defconfig │ ├── arm_foundationv8_defconfig │ ├── arm_juno_defconfig │ ├── armadeus_apf27_defconfig │ ├── armadeus_apf28_defconfig │ ├── armadeus_apf51_defconfig │ ├── asus_tinker_rk3288_defconfig │ ├── at91sam9260eknf_defconfig │ ├── at91sam9g20dfc_defconfig │ ├── at91sam9g45m10ek_defconfig │ ├── at91sam9rlek_defconfig │ ├── at91sam9x5ek_defconfig │ ├── at91sam9x5ek_dev_defconfig │ ├── at91sam9x5ek_mmc_defconfig │ ├── at91sam9x5ek_mmc_dev_defconfig │ ├── atmel_sama5d27_som1_ek_mmc_dev_defconfig │ ├── atmel_sama5d2_xplained_mmc_defconfig │ ├── atmel_sama5d2_xplained_mmc_dev_defconfig │ ├── atmel_sama5d3_xplained_defconfig │ ├── atmel_sama5d3_xplained_dev_defconfig │ ├── atmel_sama5d3_xplained_mmc_defconfig │ ├── atmel_sama5d3_xplained_mmc_dev_defconfig │ ├── atmel_sama5d3xek_defconfig │ ├── atmel_sama5d4_xplained_defconfig │ ├── atmel_sama5d4_xplained_dev_defconfig │ ├── atmel_sama5d4_xplained_mmc_defconfig │ ├── atmel_sama5d4_xplained_mmc_dev_defconfig │ ├── bananapi_m1_defconfig │ ├── bananapi_m2_plus_defconfig │ ├── bananapi_m2_ultra_defconfig │ ├── bananapi_m64_defconfig │ ├── bananapro_defconfig │ ├── beagleboardx15_defconfig │ ├── beaglebone_defconfig │ ├── beaglebone_qt5_defconfig │ ├── beagleboneai_defconfig │ ├── beelink_gs1_defconfig │ ├── chromebook_snow_defconfig │ ├── ci20_defconfig │ ├── csky_gx6605s_defconfig │ ├── cubieboard2_defconfig │ ├── engicam_imx6qdl_icore_defconfig │ ├── engicam_imx6qdl_icore_qt5_defconfig │ ├── engicam_imx6qdl_icore_rqs_defconfig │ ├── engicam_imx6ul_geam_defconfig │ ├── engicam_imx6ul_isiot_defconfig │ ├── freescale_imx28evk_defconfig │ ├── freescale_imx6dlsabreauto_defconfig │ ├── freescale_imx6dlsabresd_defconfig │ ├── freescale_imx6qsabreauto_defconfig │ ├── freescale_imx6qsabresd_defconfig │ ├── freescale_imx6sxsabresd_defconfig │ ├── freescale_imx7dsabresd_defconfig │ ├── freescale_imx8mmevk_defconfig │ ├── freescale_imx8mqevk_defconfig │ ├── freescale_imx8qxpmek_defconfig │ ├── freescale_p1025twr_defconfig │ ├── freescale_t1040d4rdb_defconfig │ ├── freescale_t2080_qds_rdb_defconfig │ ├── friendlyarm_nanopi_a64_defconfig │ ├── friendlyarm_nanopi_neo2_defconfig │ ├── friendlyarm_nanopi_neo_plus2_defconfig │ ├── galileo_defconfig │ ├── grinn_chiliboard_defconfig │ ├── grinn_liteboard_defconfig │ ├── hifive_unleashed_defconfig │ ├── imx23evk_defconfig │ ├── imx6-sabreauto_defconfig │ ├── imx6-sabresd_defconfig │ ├── imx6-sabresd_qt5_defconfig │ ├── imx6slevk_defconfig │ ├── imx6sx-sdb_defconfig │ ├── imx6ulevk_defconfig │ ├── imx6ulpico_defconfig │ ├── imx7d-sdb_defconfig │ ├── imx7dpico_defconfig │ ├── imx8mmpico_defconfig │ ├── imx8mpico_defconfig │ ├── lafrite_defconfig │ ├── lego_ev3_defconfig │ ├── licheepi_zero_defconfig │ ├── linksprite_pcduino_defconfig │ ├── minnowboard_max-graphical_defconfig │ ├── minnowboard_max_defconfig │ ├── mx25pdk_defconfig │ ├── mx51evk_defconfig │ ├── mx53loco_defconfig │ ├── mx6cubox_defconfig │ ├── mx6sx_udoo_neo_defconfig │ ├── mx6udoo_defconfig │ ├── nanopi_m1_defconfig │ ├── nanopi_m1_plus_defconfig │ ├── nanopi_neo_defconfig │ ├── nexbox_a95x_defconfig │ ├── nitrogen6sx_defconfig │ ├── nitrogen6x_defconfig │ ├── nitrogen7_defconfig │ ├── nitrogen8m_defconfig │ ├── odroidxu4_defconfig │ ├── olimex_a10_olinuxino_lime_defconfig │ ├── olimex_a13_olinuxino_defconfig │ ├── olimex_a20_olinuxino_lime2_defconfig │ ├── olimex_a20_olinuxino_lime_defconfig │ ├── olimex_a20_olinuxino_micro_defconfig │ ├── olimex_a33_olinuxino_defconfig │ ├── olimex_a64_olinuxino_defconfig │ ├── olimex_imx233_olinuxino_defconfig │ ├── openblocks_a6_defconfig │ ├── orangepi_lite2_defconfig │ ├── orangepi_lite_defconfig │ ├── orangepi_one_defconfig │ ├── orangepi_one_plus_defconfig │ ├── orangepi_pc2_defconfig │ ├── orangepi_pc_defconfig │ ├── orangepi_pc_plus_defconfig │ ├── orangepi_plus_defconfig │ ├── orangepi_prime_defconfig │ ├── orangepi_r1_defconfig │ ├── orangepi_win_defconfig │ ├── orangepi_zero_defconfig │ ├── orangepi_zero_plus2_defconfig │ ├── pandaboard_defconfig │ ├── pc_x86_64_bios_defconfig │ ├── pc_x86_64_efi_defconfig │ ├── pine64_defconfig │ ├── pine64_sopine_defconfig │ ├── qemu_aarch64_virt_defconfig │ ├── qemu_arm_versatile_defconfig │ ├── qemu_arm_versatile_nommu_defconfig │ ├── qemu_arm_vexpress_defconfig │ ├── qemu_arm_vexpress_tz_defconfig │ ├── qemu_csky610_virt_defconfig │ ├── qemu_csky807_virt_defconfig │ ├── qemu_csky810_virt_defconfig │ ├── qemu_csky860_virt_defconfig │ ├── qemu_m68k_mcf5208_defconfig │ ├── qemu_m68k_q800_defconfig │ ├── qemu_microblazebe_mmu_defconfig │ ├── qemu_microblazeel_mmu_defconfig │ ├── qemu_mips32r2_malta_defconfig │ ├── qemu_mips32r2el_malta_defconfig │ ├── qemu_mips32r6_malta_defconfig │ ├── qemu_mips32r6el_malta_defconfig │ ├── qemu_mips64_malta_defconfig │ ├── qemu_mips64el_malta_defconfig │ ├── qemu_mips64r6_malta_defconfig │ ├── qemu_mips64r6el_malta_defconfig │ ├── qemu_nios2_10m50_defconfig │ ├── qemu_or1k_defconfig │ ├── qemu_ppc64_e5500_defconfig │ ├── qemu_ppc64_pseries_defconfig │ ├── qemu_ppc64le_pseries_defconfig │ ├── qemu_ppc_g3beige_defconfig │ ├── qemu_ppc_mac99_defconfig │ ├── qemu_ppc_mpc8544ds_defconfig │ ├── qemu_ppc_virtex_ml507_defconfig │ ├── qemu_riscv32_virt_defconfig │ ├── qemu_riscv64_nommu_defconfig │ ├── qemu_riscv64_virt_defconfig │ ├── qemu_sh4_r2d_defconfig │ ├── qemu_sh4eb_r2d_defconfig │ ├── qemu_sparc64_sun4u_defconfig │ ├── qemu_sparc_ss10_defconfig │ ├── qemu_x86_64_defconfig │ ├── qemu_x86_defconfig │ ├── qemu_xtensa_lx60_defconfig │ ├── qemu_xtensa_lx60_nommu_defconfig │ ├── raspberrypi0_defconfig │ ├── raspberrypi0w_defconfig │ ├── raspberrypi2_defconfig │ ├── raspberrypi3_64_defconfig │ ├── raspberrypi3_defconfig │ ├── raspberrypi3_qt5we_defconfig │ ├── raspberrypi4_64_defconfig │ ├── raspberrypi4_defconfig │ ├── raspberrypi_defconfig │ ├── riotboard_defconfig │ ├── riscv64_nommu_defconfig │ ├── rock64_defconfig │ ├── roseapplepi_defconfig │ ├── s6lx9_microboard_defconfig │ ├── sheevaplug_defconfig │ ├── snps_aarch64_vdk_defconfig │ ├── snps_arc700_axs101_defconfig │ ├── snps_archs38_axs103_defconfig │ ├── snps_archs38_haps_defconfig │ ├── snps_archs38_hsdk_defconfig │ ├── snps_archs38_vdk_defconfig │ ├── socrates_cyclone5_defconfig │ ├── solidrun_clearfog_defconfig │ ├── solidrun_clearfog_gt_8k_defconfig │ ├── solidrun_macchiatobin_mainline_defconfig │ ├── solidrun_macchiatobin_marvell_defconfig │ ├── stm32f429_disco_defconfig │ ├── stm32f469_disco_defconfig │ ├── stm32mp157c_dk2_defconfig │ ├── toradex_apalis_imx6_defconfig │ ├── ts4900_defconfig │ ├── ts5500_defconfig │ ├── ts7680_defconfig │ ├── wandboard_defconfig │ ├── warp7_defconfig │ ├── warpboard_defconfig │ ├── zynq_microzed_defconfig │ ├── zynq_zc706_defconfig │ ├── zynq_zed_defconfig │ └── zynqmp_zcu106_defconfig ├── docs │ ├── conf │ │ └── asciidoc-text.conf │ ├── images │ ├── manual │ │ ├── adding-board-support.txt │ │ ├── adding-packages-asciidoc.txt │ │ ├── adding-packages-autotools.txt │ │ ├── adding-packages-cargo.txt │ │ ├── adding-packages-cmake.txt │ │ ├── adding-packages-conclusion.txt │ │ ├── adding-packages-directory.txt │ │ ├── adding-packages-generic.txt │ │ ├── adding-packages-gettext.txt │ │ ├── adding-packages-golang.txt │ │ ├── adding-packages-hooks.txt │ │ ├── adding-packages-kconfig.txt │ │ ├── adding-packages-kernel-module.txt │ │ ├── adding-packages-linux-kernel-spec-infra.txt │ │ ├── adding-packages-luarocks.txt │ │ ├── adding-packages-meson.txt │ │ ├── adding-packages-perl.txt │ │ ├── adding-packages-python.txt │ │ ├── adding-packages-rebar.txt │ │ ├── adding-packages-tips.txt │ │ ├── adding-packages-virtual.txt │ │ ├── adding-packages-waf.txt │ │ ├── adding-packages.txt │ │ ├── advanced.txt │ │ ├── appendix.txt │ │ ├── beyond-buildroot.txt │ │ ├── ccache-support.txt │ │ ├── common-usage.txt │ │ ├── configure-other-components.txt │ │ ├── configure.txt │ │ ├── contribute.txt │ │ ├── customize-configuration.txt │ │ ├── customize-device-permission-tables.txt │ │ ├── customize-directory-structure.txt │ │ ├── customize-outside-br.txt │ │ ├── customize-packages.txt │ │ ├── customize-patches.txt │ │ ├── customize-post-image.txt │ │ ├── customize-quick-guide.txt │ │ ├── customize-rootfs.txt │ │ ├── customize-users-tables.txt │ │ ├── customize.txt │ │ ├── debugging-buildroot.txt │ │ ├── developers.txt │ │ ├── download-infra.txt │ │ ├── download-location.txt │ │ ├── eclipse-integration.txt │ │ ├── faq-troubleshooting.txt │ │ ├── getting.txt │ │ ├── how-buildroot-works.txt │ │ ├── introduction.txt │ │ ├── known-issues.txt │ │ ├── legal-notice.txt │ │ ├── make-tips.txt │ │ ├── makedev-syntax.txt │ │ ├── makeusers-syntax.txt │ │ ├── manual.mk │ │ ├── manual.txt │ │ ├── migrating.txt │ │ ├── package-make-target.txt │ │ ├── patch-policy.txt │ │ ├── prerequisite.txt │ │ ├── quickstart.txt │ │ ├── rebuilding-packages.txt │ │ ├── resources.txt │ │ ├── using-buildroot-debugger.txt │ │ ├── using-buildroot-development.txt │ │ ├── using-buildroot-toolchain.txt │ │ └── writing-rules.txt │ └── website │ │ ├── .htaccess │ │ ├── association.html │ │ ├── contribute.html │ │ ├── copyright.txt │ │ ├── css │ │ ├── main.css │ │ └── timeline.css │ │ ├── docs.html │ │ ├── download.html │ │ ├── favicon.ico │ │ ├── favicon.png │ │ ├── fonts │ │ └── glyphicons-halflings-regular.woff │ │ ├── footer.html │ │ ├── header.html │ │ ├── images │ │ ├── amarula-solutions-logo.png │ │ ├── bootlin-logo.png │ │ ├── boundary-devices-logo.png │ │ ├── browser.png │ │ ├── bug-buddy.png │ │ ├── buildroot-slides.png │ │ ├── calao-logo.png │ │ ├── circuitco-logo.png │ │ ├── clippy.svg │ │ ├── email.png │ │ ├── fluendo-logo.png │ │ ├── free-electrons-logo.png │ │ ├── gift.png │ │ ├── github_hash_mongrel2.png │ │ ├── google-logo.png │ │ ├── hammer.png │ │ ├── imgtec-logo.png │ │ ├── irc.png │ │ ├── logilin-logo.png │ │ ├── logo.png │ │ ├── logo.xcf │ │ ├── logo_small.png │ │ ├── menuconfig.png │ │ ├── mind-logo.png │ │ ├── nconfig.png │ │ ├── package.png │ │ ├── pdf-icon.png │ │ ├── rockwell-collins-logo.png │ │ ├── scaleway-logo.png │ │ ├── smile-logo.png │ │ ├── synopsys-logo.png │ │ ├── text.png │ │ ├── tkos-logo.png │ │ ├── tux-flat.png │ │ ├── xconfig.png │ │ ├── zillabit-logo.png │ │ └── zip.png │ │ ├── index.html │ │ ├── js │ │ └── buildroot.js │ │ ├── news.html │ │ ├── robots.txt │ │ ├── sponsors.html │ │ └── support.html ├── fs │ ├── Config.in │ ├── axfs │ │ ├── Config.in │ │ └── axfs.mk │ ├── btrfs │ │ ├── Config.in │ │ └── btrfs.mk │ ├── cloop │ │ ├── Config.in │ │ └── cloop.mk │ ├── common.mk │ ├── cpio │ │ ├── Config.in │ │ ├── cpio.mk │ │ └── init │ ├── cramfs │ │ ├── Config.in │ │ └── cramfs.mk │ ├── ext2 │ │ ├── Config.in │ │ └── ext2.mk │ ├── f2fs │ │ ├── Config.in │ │ └── f2fs.mk │ ├── initramfs │ │ ├── Config.in │ │ └── initramfs.mk │ ├── iso9660 │ │ ├── Config.in │ │ ├── grub.cfg │ │ ├── iso9660.mk │ │ └── isolinux.cfg │ ├── jffs2 │ │ ├── Config.in │ │ └── jffs2.mk │ ├── romfs │ │ ├── Config.in │ │ └── romfs.mk │ ├── squashfs │ │ ├── Config.in │ │ └── squashfs.mk │ ├── tar │ │ ├── Config.in │ │ └── tar.mk │ ├── ubi │ │ ├── Config.in │ │ ├── ubi.mk │ │ └── ubinize.cfg │ ├── ubifs │ │ ├── Config.in │ │ └── ubifs.mk │ └── yaffs2 │ │ ├── Config.in │ │ └── yaffs2.mk ├── linux │ ├── 0001-timeconst.pl-Eliminate-Perl-warning.patch.conditional │ ├── Config.ext.in │ ├── Config.in │ ├── linux-ext-aufs.mk │ ├── linux-ext-ev3dev-linux-drivers.mk │ ├── linux-ext-fbtft.mk │ ├── linux-ext-rtai.mk │ ├── linux-ext-xenomai.mk │ ├── linux.hash │ └── linux.mk ├── package │ ├── 18xx-ti-utils │ │ ├── 18xx-ti-utils.hash │ │ ├── 18xx-ti-utils.mk │ │ └── Config.in │ ├── 4th │ │ ├── 0001-avoid-regen-during-install.patch │ │ ├── 4th.hash │ │ ├── 4th.mk │ │ └── Config.in │ ├── Config.in │ ├── Config.in.host │ ├── Makefile.in │ ├── a10disp │ │ ├── Config.in │ │ ├── a10disp.hash │ │ └── a10disp.mk │ ├── abootimg │ │ ├── Config.in │ │ ├── abootimg.hash │ │ └── abootimg.mk │ ├── acl │ │ ├── 0001-Build-with-old-GCC-versions.patch │ │ ├── Config.in │ │ ├── acl.hash │ │ └── acl.mk │ ├── acpica │ │ ├── 0001-build-do-not-use-Werror.patch │ │ ├── Config.in │ │ ├── acpica.hash │ │ └── acpica.mk │ ├── acpid │ │ ├── 0001-dont-use-isfdtype.patch │ │ ├── 0002-add-missing-defines.patch │ │ ├── Config.in │ │ ├── S02acpid │ │ ├── acpid.hash │ │ ├── acpid.mk │ │ └── acpid.service │ ├── acpitool │ │ ├── Config.in │ │ ├── acpitool.hash │ │ └── acpitool.mk │ ├── acsccid │ │ ├── Config.in │ │ ├── acsccid.hash │ │ └── acsccid.mk │ ├── adwaita-icon-theme │ │ ├── Config.in │ │ ├── adwaita-icon-theme.hash │ │ └── adwaita-icon-theme.mk │ ├── aer-inject │ │ ├── Config.in │ │ ├── aer-inject.hash │ │ └── aer-inject.mk │ ├── aespipe │ │ ├── Config.in │ │ ├── Config.in.host │ │ ├── aespipe.hash │ │ └── aespipe.mk │ ├── agentpp │ │ ├── Config.in │ │ ├── agentpp.hash │ │ └── agentpp.mk │ ├── aircrack-ng │ │ ├── Config.in │ │ ├── aircrack-ng.hash │ │ └── aircrack-ng.mk │ ├── alsa-lib │ │ ├── 0001-Don-t-use-fork-on-noMMU-platforms.patch │ │ ├── 0002-src-ucm-main.c-fix-build-without-mixer.patch │ │ ├── Config.in │ │ ├── alsa-lib.hash │ │ └── alsa-lib.mk │ ├── alsa-utils │ │ ├── Config.in │ │ ├── alsa-utils.hash │ │ └── alsa-utils.mk │ ├── alsamixergui │ │ ├── 0001-misc-fixes.patch │ │ ├── 0002-configure-fix-detection-of-fltk-libs.patch │ │ ├── Config.in │ │ ├── alsamixergui.hash │ │ └── alsamixergui.mk │ ├── alure │ │ ├── Config.in │ │ ├── alure.hash │ │ └── alure.mk │ ├── am335x-pru-package │ │ ├── 0001-install-does-not-build.patch │ │ ├── Config.in │ │ ├── am335x-pru-package.hash │ │ └── am335x-pru-package.mk │ ├── am33x-cm3 │ │ ├── 0001-fix-makefile.patch │ │ ├── 0002-Makefile-unconditionally-disable-SSP.patch │ │ ├── 0003-Makefile-unconditionally-disable-PIE.patch │ │ ├── Config.in │ │ ├── S93-am335x-pm-firmware-load │ │ ├── am33x-cm3.hash │ │ └── am33x-cm3.mk │ ├── amd-catalyst │ │ ├── 0001-Add-support-for-Linux-4.0.patch │ │ ├── 0002-Add-support-for-Linux-4.1.patch │ │ ├── 0003-Add-support-for-Linux-4.2.patch │ │ ├── 0004-Use-fpregs_active-instead-of-has_fpu.patch │ │ ├── 0005-Use-a-local-copy-of-copy_xregs_to_kernel.patch │ │ ├── 0006-Add-support-for-Linux-4.4.patch │ │ ├── 0007-remove-gpl-symbols.patch │ │ ├── 20-fglrx.conf │ │ ├── Config.in │ │ ├── amd-catalyst.hash │ │ ├── amd-catalyst.mk │ │ └── gl.pc │ ├── android-tools │ │ ├── 0001-Fix-makefiles-for-out-of-tree-build.patch │ │ ├── 0002-Fix-adbd-for-non-Ubuntu-systems.patch │ │ ├── 0003-Fix-build-issue-with-uclibc.patch │ │ ├── 0004-Fix-build-issue-with-musl.patch │ │ ├── 0005-Use-pkgconf-to-get-libs-deps.patch │ │ ├── 0006-fix-big-endian-build.patch │ │ ├── 0007-include-cdefs-h-when-needed.patch │ │ ├── 0008-Include-sysmacros.h-to-compile-with-glibc-2.28.patch │ │ ├── 0009-Fix-makefiles-for-out-of-tree-ext4_utils-build.patch │ │ ├── 0010-adb-added-patch-for-openssl-1.1.0-compatibility.patch │ │ ├── Config.in │ │ ├── Config.in.host │ │ ├── android-tools.hash │ │ └── android-tools.mk │ ├── angular-websocket │ │ ├── Config.in │ │ ├── angular-websocket.hash │ │ └── angular-websocket.mk │ ├── angularjs │ │ ├── Config.in │ │ ├── angularjs.hash │ │ └── angularjs.mk │ ├── aoetools │ │ ├── 0001-Change-shell-script-interpreter-from-bin-bash-to-bin.patch │ │ ├── Config.in │ │ ├── aoetools.hash │ │ └── aoetools.mk │ ├── apache │ │ ├── 0001-cross-compile.patch │ │ ├── 0002-nios2_is_not_os2.patch │ │ ├── Config.in │ │ ├── S50apache │ │ ├── apache.hash │ │ ├── apache.mk │ │ └── apache.service │ ├── apitrace │ │ ├── 0001-dlsym-Fix-build-under-uClibc.patch │ │ ├── 0002-Support-libc-that-don-t-have-RTLD_DEEPBIND.patch │ │ ├── Config.in │ │ ├── apitrace.hash │ │ └── apitrace.mk │ ├── apr-util │ │ ├── 0001-remove-checkapr.patch │ │ ├── Config.in │ │ ├── apr-util.hash │ │ └── apr-util.mk │ ├── apr │ │ ├── 0001-cross-compile.patch │ │ ├── 0002-sys-param-h.patch │ │ ├── Config.in │ │ ├── apr.hash │ │ └── apr.mk │ ├── argp-standalone │ │ ├── 0001-throw-in-funcdef.patch │ │ ├── 0002-isprint.patch │ │ ├── 0003-fix_build_with_c99_compilers.patch │ │ ├── Config.in │ │ ├── argp-standalone.hash │ │ └── argp-standalone.mk │ ├── argparse │ │ ├── Config.in │ │ ├── argparse.hash │ │ └── argparse.mk │ ├── argus │ │ ├── Config.in │ │ ├── argus.hash │ │ └── argus.mk │ ├── armadillo │ │ ├── Config.in │ │ ├── armadillo.hash │ │ └── armadillo.mk │ ├── armbian-firmware │ │ ├── Config.in │ │ ├── armbian-firmware.hash │ │ └── armbian-firmware.mk │ ├── arp-scan │ │ ├── Config.in │ │ ├── arp-scan.hash │ │ └── arp-scan.mk │ ├── arptables │ │ ├── 0001-Fix-musl-build-issue.patch │ │ ├── Config.in │ │ ├── arptables.hash │ │ └── arptables.mk │ ├── ascii-invaders │ │ ├── Config.in │ │ ├── ascii-invaders.hash │ │ └── ascii-invaders.mk │ ├── assimp │ │ ├── 0001-Fix-FBXConverter-use-proper-64-bit-constant.patch │ │ ├── Config.in │ │ ├── assimp.hash │ │ └── assimp.mk │ ├── asterisk │ │ ├── 0001-sounds-do-not-download-and-check-sha1s.patch │ │ ├── 0002-configure-fix-detection-of-libcrypt.patch │ │ ├── 0003-build-ensure-target-directory-for-modules-exists.patch │ │ ├── 0004-install-samples-need-the-data-files.patch │ │ ├── 0005-configure-fix-detection-of-re-entrant-resolver-funct.patch │ │ ├── Config.in │ │ ├── asterisk.hash │ │ └── asterisk.mk │ ├── at-spi2-atk │ │ ├── Config.in │ │ ├── at-spi2-atk.hash │ │ └── at-spi2-atk.mk │ ├── at-spi2-core │ │ ├── 0001-Fix-meson.build-for-meson-0.50.0.patch │ │ ├── Config.in │ │ ├── at-spi2-core.hash │ │ └── at-spi2-core.mk │ ├── at │ │ ├── 0001-Makefile.in-replace-IROOT-by-DESTDIR.patch │ │ ├── 0002-Makefile.in-make-install-fix.patch │ │ ├── 0003-getloadavg.c-fix.patch │ │ ├── Config.in │ │ ├── S99at │ │ ├── at.hash │ │ └── at.mk │ ├── atest │ │ ├── Config.in │ │ ├── atest.hash │ │ └── atest.mk │ ├── atf │ │ ├── Config.in │ │ ├── atf.hash │ │ └── atf.mk │ ├── atftp │ │ ├── 0001-Makefile.am-link-against-libpthread-for-atftp.patch │ │ ├── 0002-argz.h-fix-musl-compile-add-missing-defines.patch │ │ ├── 0003-tftp.h-tftpd.h-fix-musl-compile-missing-include.patch │ │ ├── Config.in │ │ ├── atftp.hash │ │ └── atftp.mk │ ├── atk │ │ ├── Config.in │ │ ├── atk.hash │ │ └── atk.mk │ ├── atkmm │ │ ├── Config.in │ │ ├── atkmm.hash │ │ └── atkmm.mk │ ├── atop │ │ ├── Config.in │ │ ├── atop.hash │ │ └── atop.mk │ ├── attr │ │ ├── 0001-build-with-older-GCCs.patch │ │ ├── 0002-Switch-back-to-syscall.patch │ │ ├── Config.in │ │ ├── attr.hash │ │ └── attr.mk │ ├── aubio │ │ ├── Config.in │ │ ├── aubio.hash │ │ └── aubio.mk │ ├── audiofile │ │ ├── 0001-Fix-pkg-config-for-static-linking.patch │ │ ├── 0002-cast-to-unsigned-gcc6.patch │ │ ├── 0003-Always-check-the-number-of-coefficients.patch │ │ ├── 0004-clamp-index-values-to-fix-index-overflow-in-IMA.cpp.patch │ │ ├── 0005-Check-for-multiplication-overflow-in-sfconvert.patch │ │ ├── 0006-Actually-fail-when-error-occurs-in-parseFormat.patch │ │ ├── 0007-Check-for-multiplication-overflow-in-MSADPCM-decodeS.patch │ │ ├── 0008-CVE-2015-7747.patch │ │ ├── 0009-Fix-static-linking-with-libsndfile.patch │ │ ├── Config.in │ │ ├── audiofile.hash │ │ └── audiofile.mk │ ├── audit │ │ ├── 0001-Fix-audispd-path-in-auditd.conf.patch │ │ ├── 0002-Add-substitue-functions-for-strndupa-rawmemchr.patch │ │ ├── Config.in │ │ ├── S02auditd │ │ ├── audit.hash │ │ ├── audit.mk │ │ └── audit_tmpfiles.conf │ ├── aufs-util │ │ ├── 0001-remove-user-settings.patch │ │ ├── 0002-no-check-ver.patch │ │ ├── 0003-no-strip-lib.patch │ │ ├── Config.in │ │ └── aufs-util.mk │ ├── aufs │ │ ├── Config.in │ │ └── aufs.mk │ ├── augeas │ │ ├── Config.in │ │ ├── augeas.hash │ │ └── augeas.mk │ ├── aumix │ │ ├── 0001-fix-incorrect-makefile-am.patch │ │ ├── Config.in │ │ ├── aumix.hash │ │ └── aumix.mk │ ├── autoconf-archive │ │ ├── autoconf-archive.hash │ │ └── autoconf-archive.mk │ ├── autoconf │ │ ├── 0001-dont-add-dirty-to-version.patch │ │ ├── autoconf.hash │ │ └── autoconf.mk │ ├── autofs │ │ ├── 0001-include-linux-nfs.h-directly-in-rpc_sub.patch │ │ ├── Config.in │ │ ├── autofs.hash │ │ └── autofs.mk │ ├── automake │ │ ├── 0001-noman.patch │ │ ├── automake.hash │ │ ├── automake.mk │ │ └── gtk-doc.m4 │ ├── autossh │ │ ├── Config.in │ │ ├── autossh.hash │ │ └── autossh.mk │ ├── avahi │ │ ├── 0001-Drop-legacy-unicast-queries-from-address-not-on-loca.patch │ │ ├── Config.in │ │ ├── S05avahi-setup.sh │ │ ├── S50avahi-daemon │ │ ├── avahi.hash │ │ ├── avahi.mk │ │ ├── avahi_sysusers.conf │ │ └── avahi_tmpfiles.conf │ ├── avrdude │ │ ├── Config.in │ │ ├── avrdude.hash │ │ └── avrdude.mk │ ├── avro-c │ │ ├── 0001-Allow-avro-C-to-be-built-on-musl-based-systems.patch │ │ ├── 0002-CMakeLists.txt-fix-build-without-C.patch │ │ ├── Config.in │ │ ├── avro-c.hash │ │ └── avro-c.mk │ ├── axel │ │ ├── Config.in │ │ ├── axel.hash │ │ └── axel.mk │ ├── axfsutils │ │ ├── axfsutils.hash │ │ └── axfsutils.mk │ ├── azmq │ │ ├── 0001-Conditionally-disable-test-and-doc-builds.patch │ │ ├── Config.in │ │ ├── azmq.hash │ │ └── azmq.mk │ ├── azure-iot-sdk-c │ │ ├── Config.in │ │ └── azure-iot-sdk-c.mk │ ├── b43-firmware │ │ ├── Config.in │ │ ├── b43-firmware.hash │ │ └── b43-firmware.mk │ ├── b43-fwcutter │ │ ├── b43-fwcutter.hash │ │ └── b43-fwcutter.mk │ ├── babeld │ │ ├── Config.in │ │ ├── S50babeld │ │ ├── babeld.hash │ │ ├── babeld.mk │ │ └── babeld.service │ ├── bandwidthd │ │ ├── Config.in │ │ ├── bandwidthd.hash │ │ ├── bandwidthd.mk │ │ └── bandwidthd.service │ ├── bash-completion │ │ ├── Config.in │ │ ├── bash-completion.hash │ │ └── bash-completion.mk │ ├── bash │ │ ├── 0001-bash50-001.patch │ │ ├── 0002-bash50-002.patch │ │ ├── 0003-bash50-003.patch │ │ ├── 0004-bash50-004.patch │ │ ├── 0005-bash50-005.patch │ │ ├── 0006-bash50-006.patch │ │ ├── 0007-bash50-007.patch │ │ ├── 0008-bash50-008.patch │ │ ├── 0009-bash50-009.patch │ │ ├── 0010-bash50-010.patch │ │ ├── 0011-bash50-011.patch │ │ ├── Config.in │ │ ├── bash.hash │ │ └── bash.mk │ ├── batctl │ │ ├── Config.in │ │ ├── batctl.hash │ │ └── batctl.mk │ ├── batman-adv │ │ ├── Config.in │ │ ├── batman-adv.hash │ │ └── batman-adv.mk │ ├── bats-core │ │ ├── Config.in │ │ ├── bats-core.hash │ │ └── bats-core.mk │ ├── bayer2rgb-neon │ │ ├── Config.in │ │ ├── bayer2rgb-neon.hash │ │ └── bayer2rgb-neon.mk │ ├── bc │ │ ├── 0001-bc-use-MAKEINFO-variable-for-docs.patch │ │ ├── 0002-notice-read-and-write-errors-on-input-and-output.patch │ │ ├── 0003-dc-fix-exit-code-of-q-command.patch │ │ ├── 0004-no-gen-libmath.patch │ │ ├── Config.in │ │ ├── bc.hash │ │ └── bc.mk │ ├── bcache-tools │ │ ├── 0001-Don-t-inline-crc64-for-gcc-5-compatability.patch │ │ ├── Config.in │ │ ├── bcache-tools.hash │ │ └── bcache-tools.mk │ ├── bcg729 │ │ ├── Config.in │ │ ├── bcg729.hash │ │ └── bcg729.mk │ ├── bcm2835 │ │ ├── Config.in │ │ ├── bcm2835.hash │ │ └── bcm2835.mk │ ├── bctoolbox │ │ ├── 0001-Fix-Libs.private-flags-for-mbedtls.patch │ │ ├── Config.in │ │ ├── bctoolbox.hash │ │ └── bctoolbox.mk │ ├── bcusdk │ │ ├── 0001-fd_set-requires-inclusion-of-sys-select.h.patch │ │ ├── 0002-eibd-fix-endless-recursion-when-using-USB-backends.patch │ │ ├── Config.in │ │ ├── bcusdk.hash │ │ └── bcusdk.mk │ ├── bdwgc │ │ ├── Config.in │ │ ├── bdwgc.hash │ │ └── bdwgc.mk │ ├── beecrypt │ │ ├── 0001-cppglue.cxx-cplusplus-only.patch │ │ ├── 0002-build-system.patch │ │ ├── 0003-don-t-check-for-cplusplus-compiler.patch │ │ ├── Config.in │ │ ├── beecrypt.hash │ │ └── beecrypt.mk │ ├── bellagio │ │ ├── 0001-drop-werror.patch │ │ ├── 0002-dynamicloader-linking.patch │ │ ├── 0003-parallel-build.patch │ │ ├── 0004-segfault-on-removeFromWaitResource.patch │ │ ├── 0005-fix-doc-installation-path.patch │ │ ├── Config.in │ │ ├── bellagio.hash │ │ └── bellagio.mk │ ├── benejson │ │ ├── 0001-c-std.patch │ │ ├── 0002-Use-print-as-a-function-for-Py3-compatibility.patch │ │ ├── Config.in │ │ ├── benejson.hash │ │ └── benejson.mk │ ├── berkeleydb │ │ ├── 0001-cwd-db_config.patch │ │ ├── 0002-atomic_compare_exchange.patch │ │ ├── Config.in │ │ ├── berkeleydb.hash │ │ └── berkeleydb.mk │ ├── bind │ │ ├── 0001-cross.patch │ │ ├── Config.in │ │ ├── S81named │ │ ├── bind.hash │ │ ├── bind.mk │ │ └── named.service │ ├── binutils │ │ ├── 2.31.1 │ │ │ ├── 0001-sh-conf.patch │ │ │ ├── 0005-poison-system-directories.patch │ │ │ ├── 0006-Refactored-location-where-GOT-information-is-collect.patch │ │ │ ├── 0007-Improved-robustness.-Return-FALSE-in-case-of-NULL-po.patch │ │ │ ├── 0008-Make-sure-global-symbol-is-not-an-indirect-or-warnin.patch │ │ │ ├── 0009-PLT-information-was-still-being-generated-when-symbo.patch │ │ │ ├── 0010-xtensa-fix-relaxation-of-undefined-weak-references-i.patch │ │ │ ├── 0011-xtensa-move-dynamic-relocations-sections-consistency.patch │ │ │ ├── 0012-x86-Add-a-GNU_PROPERTY_X86_ISA_1_USED-note-if-needed.patch │ │ │ ├── 0013-x86-Properly-merge-GNU_PROPERTY_X86_ISA_1_USED.patch │ │ │ ├── 0014-x86-Properly-add-X86_ISA_1_NEEDED-property.patch │ │ │ ├── 0015-bfd-xtensa-fix-shrink_dynamic_reloc_sections-for-exp.patch │ │ │ ├── 0016-gas-use-literals-const16-for-xtensa-loop-relaxation.patch │ │ │ └── 0017-xtensa-gas-put-.literal_position-at-section-start.patch │ │ ├── 2.32 │ │ │ ├── 0001-sh-conf.patch │ │ │ ├── 0002-poison-system-directories.patch │ │ │ ├── 0003-bfd-xtensa-fix-shrink_dynamic_reloc_sections-for-exp.patch │ │ │ ├── 0004-gas-use-literals-const16-for-xtensa-loop-relaxation.patch │ │ │ ├── 0005-xtensa-gas-put-.literal_position-at-section-start.patch │ │ │ └── 0006-or1k-Fix-incorrect-value-in-PLT-GOT-entries-causing-.patch │ │ ├── 2.33.1 │ │ │ ├── 0001-sh-conf.patch │ │ │ ├── 0002-poison-system-directories.patch │ │ │ └── 0003-Revert-PR24311-FAIL-S-records-with-constructors.patch │ │ ├── Config.in │ │ ├── Config.in.host │ │ ├── arc-2019.09-release │ │ │ └── 0001-poison-system-directories.patch │ │ ├── binutils.hash │ │ └── binutils.mk │ ├── biosdevname │ │ ├── Config.in │ │ ├── biosdevname.hash │ │ └── biosdevname.mk │ ├── bird │ │ ├── 0001-Nest-Fix-build-without-protocols.patch │ │ ├── Config.in │ │ ├── bird.hash │ │ └── bird.mk │ ├── bison │ │ ├── bison.hash │ │ └── bison.mk │ ├── bitcoin │ │ ├── Config.in │ │ ├── bitcoin.hash │ │ └── bitcoin.mk │ ├── bitstream-vera │ │ ├── Config.in │ │ ├── bitstream-vera.hash │ │ └── bitstream-vera.mk │ ├── bitstream │ │ ├── Config.in │ │ ├── bitstream.hash │ │ └── bitstream.mk │ ├── blktrace │ │ ├── Config.in │ │ ├── blktrace.hash │ │ └── blktrace.mk │ ├── bluez-alsa │ │ ├── Config.in │ │ ├── bluez-alsa.hash │ │ └── bluez-alsa.mk │ ├── bluez-tools │ │ ├── Config.in │ │ ├── bluez-tools.hash │ │ └── bluez-tools.mk │ ├── bluez5_utils-headers │ │ ├── Config.in │ │ ├── bluez5_utils-headers.hash │ │ └── bluez5_utils-headers.mk │ ├── bluez5_utils │ │ ├── Config.in │ │ ├── bluez5_utils.hash │ │ └── bluez5_utils.mk │ ├── bmon │ │ ├── Config.in │ │ ├── bmon.hash │ │ └── bmon.mk │ ├── boa │ │ ├── 0001-use-name-max.patch │ │ ├── Config.in │ │ ├── boa.conf │ │ ├── boa.hash │ │ ├── boa.mk │ │ └── mime.types │ ├── boinc │ │ ├── Config.in │ │ ├── S99boinc-client │ │ ├── boinc.hash │ │ └── boinc.mk │ ├── bonnie │ │ ├── Config.in │ │ ├── bonnie.hash │ │ └── bonnie.mk │ ├── boost │ │ ├── 0001-fix-ambiguous-format-call-on-64bit-builds.patch │ │ ├── 0002-fix-uclibc-eventfd.patch │ │ ├── 0003-fenv.patch │ │ ├── 0004-add-riscv-endian-detection.patch │ │ ├── Config.in │ │ ├── boost.hash │ │ └── boost.mk │ ├── bootstrap │ │ ├── Config.in │ │ ├── bootstrap.hash │ │ └── bootstrap.mk │ ├── botan │ │ ├── Config.in │ │ ├── botan.hash │ │ └── botan.mk │ ├── brcm-patchram-plus │ │ ├── Config.in │ │ ├── brcm-patchram-plus.hash │ │ └── brcm-patchram-plus.mk │ ├── brickd │ │ ├── Config.in │ │ ├── S70brickd │ │ ├── brickd.hash │ │ └── brickd.mk │ ├── bridge-utils │ │ ├── 0001-build-system.patch │ │ ├── Config.in │ │ ├── bridge-utils.hash │ │ └── bridge-utils.mk │ ├── brltty │ │ ├── 0001-Fix-linking-error-on-mips64el.patch │ │ ├── 0002-mk4build-change-how-the-_FOR_BUILD-variables-are-pas.patch │ │ ├── Config.in │ │ ├── S10brltty │ │ ├── brltty.hash │ │ ├── brltty.mk │ │ └── brltty.service │ ├── brotli │ │ ├── 0001-CMake-Allow-using-BUILD_SHARED_LIBS-to-choose-static.patch │ │ ├── Config.in │ │ ├── brotli.hash │ │ └── brotli.mk │ ├── bsdiff │ │ ├── 0001-Add-missing-header-for-u_char.patch │ │ ├── Config.in │ │ ├── bsdiff.hash │ │ └── bsdiff.mk │ ├── btrfs-progs │ │ ├── 0001-Makefile-install-static-library-and-headers-in-insta.patch │ │ ├── 0002-kerncompat.h-define-BTRFS_DISABLE_BACKTRACE-when-bui.patch │ │ ├── Config.in │ │ ├── Config.in.host │ │ ├── btrfs-progs.hash │ │ └── btrfs-progs.mk │ ├── bubblewrap │ │ ├── Config.in │ │ ├── bubblewrap.hash │ │ └── bubblewrap.mk │ ├── bullet │ │ ├── Config.in │ │ ├── bullet.hash │ │ └── bullet.mk │ ├── bustle │ │ ├── Config.in │ │ ├── bustle.hash │ │ └── bustle.mk │ ├── busybox │ │ ├── 0001-networking-libiproute-use-linux-if_packet.h-instead-.patch │ │ ├── 0002-Makefile.flags-strip-non-l-arguments-returned-by-pkg.patch │ │ ├── Config.in │ │ ├── S01syslogd │ │ ├── S02klogd │ │ ├── S02sysctl │ │ ├── S10mdev │ │ ├── S15watchdog │ │ ├── S50telnet │ │ ├── busybox-minimal.config │ │ ├── busybox.config │ │ ├── busybox.hash │ │ ├── busybox.mk │ │ ├── inittab │ │ ├── mdev.conf │ │ └── udhcpc.script │ ├── bwm-ng │ │ ├── Config.in │ │ ├── bwm-ng.hash │ │ └── bwm-ng.mk │ ├── bzip2 │ │ ├── 0001-build-objects-twice.patch │ │ ├── 0002-improve-build-system.patch │ │ ├── Config.in │ │ ├── bzip2.hash │ │ └── bzip2.mk │ ├── c-ares │ │ ├── 0001-use_check_build_instead_of_check_user.patch │ │ ├── Config.in │ │ ├── c-ares.hash │ │ └── c-ares.mk │ ├── c-capnproto │ │ ├── Config.in │ │ ├── c-capnproto.hash │ │ └── c-capnproto.mk │ ├── c-icap-modules │ │ ├── Config.in │ │ ├── c-icap-modules.hash │ │ └── c-icap-modules.mk │ ├── c-icap │ │ ├── 0001-Required-fixes-to-compile-and-run-under-cygwin.patch │ │ ├── Config.in │ │ ├── S96cicap │ │ ├── c-icap.hash │ │ └── c-icap.mk │ ├── c-periphery │ │ ├── Config.in │ │ ├── c-periphery.hash │ │ └── c-periphery.mk │ ├── ca-certificates │ │ ├── Config.in │ │ ├── ca-certificates.hash │ │ └── ca-certificates.mk │ ├── cache-calibrator │ │ ├── 0001-Fix-conflicting-round-function.patch │ │ ├── Config.in │ │ ├── cache-calibrator.hash │ │ └── cache-calibrator.mk │ ├── cairo │ │ ├── 0001-fix-nofork-build.patch │ │ ├── Config.in │ │ ├── cairo.hash │ │ └── cairo.mk │ ├── cairomm │ │ ├── Config.in │ │ ├── cairomm.hash │ │ └── cairomm.mk │ ├── can-utils │ │ ├── Config.in │ │ ├── can-utils.hash │ │ └── can-utils.mk │ ├── canfestival │ │ ├── 0001-install-pkgconfig-module-for-canfestival.patch │ │ ├── 0002-allow-to-set-python-interpreter.patch │ │ ├── Config.in │ │ ├── canfestival.hash │ │ └── canfestival.mk │ ├── cannelloni │ │ ├── 0001-Add-missing-cstdio-include.patch │ │ ├── Config.in │ │ ├── cannelloni.hash │ │ └── cannelloni.mk │ ├── cantarell │ │ ├── Config.in │ │ ├── cantarell.hash │ │ └── cantarell.mk │ ├── capnproto │ │ ├── Config.in │ │ ├── capnproto.hash │ │ └── capnproto.mk │ ├── caps │ │ ├── 0001-Fix-stdint-types-with-musl.patch │ │ ├── Config.in │ │ ├── caps.hash │ │ └── caps.mk │ ├── cargo-bin │ │ ├── cargo-bin.hash │ │ └── cargo-bin.mk │ ├── cargo │ │ ├── Config.in.host │ │ ├── cargo.hash │ │ ├── cargo.mk │ │ └── config.in │ ├── cbootimage │ │ ├── Config.in │ │ ├── Config.in.host │ │ ├── cbootimage.hash │ │ └── cbootimage.mk │ ├── cc-tool │ │ ├── 0001-add-missing-stdarg-include.patch │ │ ├── 0002-boost-m4.patch │ │ ├── 0003-Makefile.am-do-not-overwrite-LIBS.patch │ │ ├── 0004-m4-boost.m4-fix-rpath-option-check-for-static-linkin.patch │ │ ├── Config.in │ │ ├── cc-tool.hash │ │ └── cc-tool.mk │ ├── ccache │ │ ├── ccache.hash │ │ └── ccache.mk │ ├── ccid │ │ ├── Config.in │ │ ├── ccid.hash │ │ └── ccid.mk │ ├── ccrypt │ │ ├── Config.in │ │ ├── ccrypt.hash │ │ └── ccrypt.mk │ ├── cctz │ │ ├── Config.in │ │ ├── cctz.hash │ │ └── cctz.mk │ ├── cdrkit │ │ ├── 0001-no-rcmd.patch │ │ ├── 0002-define-__THROW-to-avoid-build-issue-with-musl.patch │ │ ├── Config.in │ │ ├── cdrkit.hash │ │ └── cdrkit.mk │ ├── cegui06 │ │ ├── 0001-stddef.h.patch │ │ ├── Config.in │ │ ├── cegui06.hash │ │ └── cegui06.mk │ ├── cereal │ │ ├── Config.in │ │ ├── cereal.hash │ │ └── cereal.mk │ ├── cgic │ │ ├── 0001-prepare_makefile.patch │ │ ├── 0002-file_enhancements.patch │ │ ├── 0003-restore-cgiFormFileGetTempfileName.patch │ │ ├── Config.in │ │ ├── cgic.hash │ │ └── cgic.mk │ ├── cgilua │ │ ├── Config.in │ │ ├── cgilua.hash │ │ └── cgilua.mk │ ├── cgroupfs-mount │ │ ├── Config.in │ │ ├── S30cgroupfs │ │ ├── cgroupfs-mount.hash │ │ └── cgroupfs-mount.mk │ ├── check │ │ ├── Config.in │ │ ├── check.hash │ │ └── check.mk │ ├── checkpolicy │ │ ├── Config.in │ │ ├── Config.in.host │ │ ├── checkpolicy.hash │ │ └── checkpolicy.mk │ ├── checksec │ │ ├── Config.in.host │ │ ├── checksec.hash │ │ └── checksec.mk │ ├── chipmunk │ │ ├── 0001-Fix-build-failure-on-musl.patch │ │ ├── Config.in │ │ ├── chipmunk.hash │ │ └── chipmunk.mk │ ├── chocolate-doom │ │ ├── Config.in │ │ ├── chocolate-doom.hash │ │ └── chocolate-doom.mk │ ├── chrony │ │ ├── Config.in │ │ ├── S49chrony │ │ ├── chrony.hash │ │ ├── chrony.mk │ │ └── chrony.service │ ├── cifs-utils │ │ ├── Config.in │ │ ├── cifs-utils.hash │ │ └── cifs-utils.mk │ ├── circus │ │ ├── 0001-circus-tests-rename-async-argument-of-_create_circus.patch │ │ ├── Config.in │ │ ├── circus.hash │ │ └── circus.mk │ ├── civetweb │ │ ├── 0001-modlua.ini-include-dlfcn.h.patch │ │ ├── Config.in │ │ ├── civetweb.hash │ │ └── civetweb.mk │ ├── cjson │ │ ├── Config.in │ │ ├── cjson.hash │ │ └── cjson.mk │ ├── clamav │ │ ├── 0001-clamdscan-proto.c-fix-build-error-due-to-missing-soc.patch │ │ ├── 0002-mbox-do-not-use-backtrace-if-using-uClibc-without-ba.patch │ │ ├── Config.in │ │ ├── clamav.hash │ │ └── clamav.mk │ ├── clang │ │ ├── Config.in │ │ ├── clang.hash │ │ └── clang.mk │ ├── clapack │ │ ├── 0001-cmake-force-libf2c-to-be-built-as-a-static-library.patch │ │ ├── 0002-cmake-make-test-build-sensitive-to-BUILD_TESTING.patch │ │ ├── 0003-cmake-do-not-try-to-run-arithchk-when-cross-compilin.patch │ │ ├── 0004-cmake-blas-add-library-and-header-install-rules.patch │ │ ├── 0005-cmake-lapack-add-library-and-header-install-rules.patch │ │ ├── 0006-remove-uninit-f2c.patch │ │ ├── 0007-off64-t.patch │ │ ├── Config.in │ │ ├── clapack.hash │ │ └── clapack.mk │ ├── classpath │ │ ├── Config.in │ │ ├── classpath.hash │ │ └── classpath.mk │ ├── clinfo │ │ ├── Config.in │ │ ├── clinfo.hash │ │ └── clinfo.mk │ ├── cloop │ │ ├── cloop.hash │ │ └── cloop.mk │ ├── cmake │ │ ├── 0001-rename-cmake-rootfile.patch │ │ ├── Config.in │ │ ├── Config.in.host │ │ ├── cmake.hash │ │ └── cmake.mk │ ├── cmocka │ │ ├── 0001-Don-t-redefine-uintptr_t.patch │ │ ├── Config.in │ │ ├── cmocka.hash │ │ └── cmocka.mk │ ├── cog │ │ ├── Config.in │ │ ├── cog.hash │ │ └── cog.mk │ ├── collectd │ │ ├── 0001-configure.ac-fix-protobuf-util-time_util.h-detection.patch │ │ ├── Config.in │ │ ├── collectd.hash │ │ ├── collectd.mk │ │ └── collectd.service │ ├── collectl │ │ ├── Config.in │ │ ├── collectl.hash │ │ └── collectl.mk │ ├── comix-cursors │ │ ├── Config.in │ │ ├── comix-cursors.hash │ │ └── comix-cursors.mk │ ├── connman-gtk │ │ ├── Config.in │ │ ├── connman-gtk.hash │ │ └── connman-gtk.mk │ ├── connman │ │ ├── 0001-nat-build-failure.patch │ │ ├── Config.in │ │ ├── S45connman │ │ ├── connman.hash │ │ └── connman.mk │ ├── conntrack-tools │ │ ├── Config.in │ │ ├── conntrack-tools.hash │ │ └── conntrack-tools.mk │ ├── copas │ │ ├── 0001-Do-not-load-coxpcall-for-LuaJIT.patch │ │ ├── Config.in │ │ ├── copas.hash │ │ └── copas.mk │ ├── coreutils │ │ ├── 0001-strtod_fix_clash_with_strtold.patch │ │ ├── Config.in │ │ ├── coreutils.hash │ │ └── coreutils.mk │ ├── corkscrew │ │ ├── Config.in │ │ ├── corkscrew.hash │ │ └── corkscrew.mk │ ├── coxpcall │ │ ├── Config.in │ │ ├── coxpcall.hash │ │ └── coxpcall.mk │ ├── cpio │ │ ├── Config.in │ │ ├── cpio.hash │ │ └── cpio.mk │ ├── cppcms │ │ ├── Config.in │ │ ├── cppcms.hash │ │ └── cppcms.mk │ ├── cppdb │ │ ├── 0001-mysql-library-suffix.patch │ │ ├── Config.in │ │ ├── cppdb.hash │ │ └── cppdb.mk │ ├── cppunit │ │ ├── Config.in │ │ ├── cppunit.hash │ │ └── cppunit.mk │ ├── cppzmq │ │ ├── Config.in │ │ ├── cppzmq.hash │ │ └── cppzmq.mk │ ├── cpuburn-arm │ │ ├── Config.in │ │ ├── cpuburn-arm.hash │ │ └── cpuburn-arm.mk │ ├── cpuload │ │ ├── Config.in │ │ ├── cpuload.hash │ │ └── cpuload.mk │ ├── cracklib │ │ ├── 0001-Force-grep-to-treat-the-input-as-text-when-formattin.patch │ │ ├── Config.in │ │ ├── cracklib.hash │ │ └── cracklib.mk │ ├── cramfs │ │ ├── Config.in │ │ ├── Config.in.host │ │ ├── cramfs.hash │ │ └── cramfs.mk │ ├── crda │ │ ├── 0001-crda-support-python-3-in-utils-key2pub.py.patch │ │ ├── 0002-drop-ldconfig-call.patch │ │ ├── 0003-drop-werror.patch │ │ ├── Config.in │ │ ├── crda.hash │ │ └── crda.mk │ ├── crudini │ │ ├── Config.in │ │ ├── crudini.hash │ │ └── crudini.mk │ ├── cryptodev-linux │ │ ├── cryptodev-linux.hash │ │ └── cryptodev-linux.mk │ ├── cryptodev │ │ ├── Config.in │ │ └── cryptodev.mk │ ├── cryptopp │ │ ├── cryptopp.hash │ │ └── cryptopp.mk │ ├── cryptsetup │ │ ├── 0001-Remove-json_object-typedef.patch │ │ ├── Config.in │ │ ├── Config.in.host │ │ ├── cryptsetup.hash │ │ └── cryptsetup.mk │ ├── ctorrent │ │ ├── 0001-fix-musl-build.patch │ │ ├── Config.in │ │ ├── ctorrent.hash │ │ └── ctorrent.mk │ ├── cunit │ │ ├── Config.in │ │ ├── cunit.hash │ │ └── cunit.mk │ ├── cups-filters │ │ ├── Config.in │ │ ├── cups-filters.hash │ │ └── cups-filters.mk │ ├── cups │ │ ├── 0001-Remove-man-from-BUILDDIRS-in-configure.patch │ │ ├── 0002-Do-not-use-genstrings.patch │ │ ├── 0003-Sanitize-the-installation-process.patch │ │ ├── 0004-Remove-PIE-flags-from-the-build.patch │ │ ├── Config.in │ │ ├── cups.hash │ │ └── cups.mk │ ├── curlftpfs │ │ ├── 0001-fix-CURLOPT_INFILESIZE.patch │ │ ├── 0002-free_ftpfs_file-memleak-fix.patch │ │ ├── 0003-nocache-memleak-fix.patch │ │ ├── 0004-fix-musl-build-off-t.patch │ │ ├── Config.in │ │ ├── curlftpfs.hash │ │ └── curlftpfs.mk │ ├── curlpp │ │ ├── Config.in │ │ ├── curlpp.hash │ │ └── curlpp.mk │ ├── cutelyst │ │ ├── Config.in │ │ ├── cutelyst.hash │ │ └── cutelyst.mk │ ├── cvs │ │ ├── Config.in │ │ ├── cvs.hash │ │ └── cvs.mk │ ├── cwiid │ │ ├── 0001-wmdemo-fix-linking-by-adding-the-missing-lbluetooth-.patch │ │ ├── 0002-configure-make-wmgui-build-optional.patch │ │ ├── Config.in │ │ ├── cwiid.hash │ │ └── cwiid.mk │ ├── cxxtest │ │ ├── Config.in │ │ ├── cxxtest.hash │ │ └── cxxtest.mk │ ├── czmq │ │ ├── Config.in │ │ ├── czmq.hash │ │ └── czmq.mk │ ├── dacapo │ │ ├── Config.in │ │ ├── dacapo.hash │ │ └── dacapo.mk │ ├── dado │ │ ├── Config.in │ │ ├── dado.hash │ │ └── dado.mk │ ├── daemon │ │ ├── 0001-fix-musl.patch │ │ ├── Config.in │ │ ├── daemon.hash │ │ └── daemon.mk │ ├── dahdi-linux │ │ ├── Config.in │ │ ├── dahdi-linux.hash │ │ └── dahdi-linux.mk │ ├── dahdi-tools │ │ ├── 0001-no-build-docs.patch │ │ ├── 0002-no-perl-manpages.patch │ │ ├── Config.in │ │ ├── dahdi-tools.hash │ │ └── dahdi-tools.mk │ ├── dante │ │ ├── 0001-fix-sparc-compile.patch │ │ ├── 0002-osdep-m4-Remove-getaddrinfo-too-low-checks.patch │ │ ├── Config.in │ │ ├── S50dante │ │ ├── dante.hash │ │ ├── dante.mk │ │ └── dante.service │ ├── daq │ │ ├── 0001-Fix-build-against-the-musl-C-library.patch │ │ ├── Config.in │ │ ├── daq.hash │ │ └── daq.mk │ ├── darkhttpd │ │ ├── Config.in │ │ ├── S50darkhttpd │ │ ├── darkhttpd.hash │ │ ├── darkhttpd.mk │ │ └── darkhttpd.service │ ├── dash │ │ ├── 0001-no-config.h-for-helpers.patch │ │ ├── Config.in │ │ ├── dash.hash │ │ └── dash.mk │ ├── dav1d │ │ ├── Config.in │ │ ├── dav1d.hash │ │ └── dav1d.mk │ ├── davfs2 │ │ ├── 0001-src-Makefile.am-do-not-hardcode-fstack-protector-str.patch │ │ ├── 0002-fix-iconv.patch │ │ ├── Config.in │ │ ├── davfs2.hash │ │ └── davfs2.mk │ ├── davici │ │ ├── Config.in │ │ ├── davici.hash │ │ └── davici.mk │ ├── dawgdic │ │ ├── Config.in │ │ ├── dawgdic.hash │ │ └── dawgdic.mk │ ├── dbus-cpp │ │ ├── 0001-gcc4.7.patch │ │ ├── 0002-cross-compile-tools.patch │ │ ├── 0003-src-pipe.c-fix-build-error-with-gcc-7.x.patch │ │ ├── Config.in │ │ ├── dbus-cpp.hash │ │ └── dbus-cpp.mk │ ├── dbus-glib │ │ ├── Config.in │ │ ├── dbus-glib.hash │ │ └── dbus-glib.mk │ ├── dbus-python │ │ ├── Config.in │ │ ├── Config.in.host │ │ ├── dbus-python.hash │ │ └── dbus-python.mk │ ├── dbus-triggerd │ │ ├── Config.in │ │ ├── dbus-triggerd.hash │ │ └── dbus-triggerd.mk │ ├── dbus │ │ ├── Config.in │ │ ├── S30dbus │ │ ├── dbus.hash │ │ └── dbus.mk │ ├── dc3dd │ │ ├── 0001-no_man.patch │ │ ├── 0002-fix-autoreconf.patch │ │ ├── 0003-fix-for-glibc-2.28.patch │ │ ├── Config.in │ │ ├── dc3dd.hash │ │ └── dc3dd.mk │ ├── dcron │ │ ├── 0001-main.c-add-newline-to-logfile-openning-error-message.patch │ │ ├── Config.in │ │ ├── S90dcron │ │ ├── dcron.hash │ │ ├── dcron.mk │ │ └── dcron.service │ ├── ddrescue │ │ ├── Config.in │ │ ├── ddrescue.hash │ │ └── ddrescue.mk │ ├── debianutils │ │ ├── Config.in │ │ ├── debianutils.hash │ │ └── debianutils.mk │ ├── dehydrated │ │ ├── Config.in │ │ ├── dehydrated.hash │ │ └── dehydrated.mk │ ├── dejavu │ │ ├── Config.in │ │ ├── dejavu.hash │ │ └── dejavu.mk │ ├── dfu-util │ │ ├── Config.in │ │ ├── Config.in.host │ │ ├── dfu-util.hash │ │ └── dfu-util.mk │ ├── dhcp │ │ ├── 0001-master-Added-includes-of-new-BIND9-compatibility-headers-updated-util-bind-sh.patch │ │ ├── Config.in │ │ ├── S80dhcp-relay │ │ ├── S80dhcp-server │ │ ├── dhclient-script │ │ ├── dhclient.conf │ │ ├── dhcp.hash │ │ ├── dhcp.mk │ │ ├── dhcpd.conf │ │ └── dhcpd.service │ ├── dhcpcd │ │ ├── Config.in │ │ ├── S41dhcpcd │ │ ├── dhcpcd.hash │ │ ├── dhcpcd.mk │ │ └── dhcpcd.service │ ├── dhcpdump │ │ ├── 0001-use-non-bsd-structures.patch │ │ ├── Config.in │ │ ├── dhcpdump.hash │ │ └── dhcpdump.mk │ ├── dhrystone │ │ ├── 0001-cmdline-nruns.patch │ │ ├── 0002-HZ.patch │ │ ├── 0003-exit.patch │ │ ├── 0004-headers.patch │ │ ├── 0005-prototypes.patch │ │ ├── Config.in │ │ ├── Makefile │ │ ├── dhrystone.hash │ │ └── dhrystone.mk │ ├── dialog │ │ ├── Config.in │ │ ├── dialog.hash │ │ └── dialog.mk │ ├── dieharder │ │ ├── 0001-Do-not-use-includedir-as-include-search-path-for-bui.patch │ │ ├── 0002-Fix-missing-type-intptr_t.patch │ │ ├── 0003-Add-_GNU_SOURCE-for-uint-and-M_PI-with-musl-libc.patch │ │ ├── 0004-Add-static-to-inline-functions.patch │ │ ├── Config.in │ │ ├── dieharder.hash │ │ └── dieharder.mk │ ├── diffutils │ │ ├── Config.in │ │ ├── diffutils.hash │ │ └── diffutils.mk │ ├── dillo │ │ ├── 0002-usr-local-include.patch │ │ ├── 0003-Fix-openssl-detection.patch │ │ ├── 0004-Support-OpenSSL-1.1.0.patch │ │ ├── Config.in │ │ ├── dillo.hash │ │ └── dillo.mk │ ├── ding-libs │ │ ├── Config.in │ │ ├── ding-libs.hash │ │ └── ding-libs.mk │ ├── directfb-examples │ │ ├── 0001-remove-bzero.patch │ │ ├── Config.in │ │ ├── directfb-examples.hash │ │ └── directfb-examples.mk │ ├── directfb │ │ ├── 0001-fix-missing-davinci-voodoo-header.patch │ │ ├── 0002-imlib2-config.patch │ │ ├── 0003-setregion-lock.patch │ │ ├── 0004-use-gcc-link.patch │ │ ├── 0005-add-missing-idivine-header.patch │ │ ├── 0006-fix-client-gfx_state-initialisation.patch │ │ ├── Config.in │ │ ├── directfb.hash │ │ └── directfb.mk │ ├── dmalloc │ │ ├── 0001-add-fpic.patch │ │ ├── 0002-mips.patch │ │ ├── 0003-fix-parallel-build.patch │ │ ├── 0004-fix-shlibs.patch │ │ ├── 0005-fix-strdup.patch │ │ ├── 0006-fix-strndup.patch │ │ ├── Config.in │ │ ├── dmalloc.hash │ │ └── dmalloc.mk │ ├── dmidecode │ │ ├── 0001-build-system-fixes.patch │ │ ├── Config.in │ │ ├── dmidecode.hash │ │ └── dmidecode.mk │ ├── dmraid │ │ ├── 0001-fix-compilation-under-musl.patch │ │ ├── Config.in │ │ ├── S20dmraid │ │ ├── dmraid.hash │ │ └── dmraid.mk │ ├── dnsmasq │ │ ├── 0001-Makefile-fix-i18n-build-with-ubus.patch │ │ ├── 0002-Fix-build-with-libnettle-3.5.patch │ │ ├── 0003-Fix-build-after-y2038-changes-in-glib.patch │ │ ├── Config.in │ │ ├── S80dnsmasq │ │ ├── dnsmasq.hash │ │ └── dnsmasq.mk │ ├── doc-asciidoc.mk │ ├── docker-cli │ │ ├── Config.in │ │ ├── docker-cli.hash │ │ └── docker-cli.mk │ ├── docker-compose │ │ ├── 0001-Strip-up-generic-versions-and-bump-requests.patch │ │ ├── 0002-Bump-texttable-from-0.9.1-to-1.6.2.patch │ │ ├── 0003-support-PyYAML-up-to-5.1-version.patch │ │ ├── Config.in │ │ ├── docker-compose.hash │ │ └── docker-compose.mk │ ├── docker-containerd │ │ ├── Config.in │ │ ├── docker-containerd.hash │ │ └── docker-containerd.mk │ ├── docker-engine │ │ ├── Config.in │ │ ├── S60dockerd │ │ ├── docker-engine.hash │ │ └── docker-engine.mk │ ├── docker-proxy │ │ ├── Config.in │ │ ├── docker-proxy.hash │ │ └── docker-proxy.mk │ ├── docker │ │ ├── Config.in │ │ ├── docker.hash │ │ └── docker.mk │ ├── domoticz │ │ ├── 0001-History.txt-use-10717-instead-of-xxxxx.patch │ │ ├── 0002-Revert-Updating-CMake-configuration-file-to-use-vers.patch │ │ ├── 0003-CMakeLists.txt-add-c-argument-to-build-precompiled-h.patch │ │ ├── 0004-DelayedLink.h-fix-build-with-python-3-8.patch │ │ ├── 0005-Fix-include-paths-to-not-confuse-local-files-with-system-files.patch │ │ ├── Config.in │ │ ├── S99domoticz │ │ ├── domoticz.hash │ │ ├── domoticz.mk │ │ └── domoticz.service │ ├── doom-wad │ │ ├── Config.in │ │ ├── doom-wad.hash │ │ └── doom-wad.mk │ ├── dos2unix │ │ ├── Config.in │ │ ├── Config.in.host │ │ ├── dos2unix.hash │ │ └── dos2unix.mk │ ├── dosfstools │ │ ├── Config.in │ │ ├── Config.in.host │ │ ├── dosfstools.hash │ │ └── dosfstools.mk │ ├── dovecot-pigeonhole │ │ ├── Config.in │ │ ├── dovecot-pigeonhole.hash │ │ └── dovecot-pigeonhole.mk │ ├── dovecot │ │ ├── 0001-byteorder.h-fix-uclibc-build.patch │ │ ├── 0002-lib-ssl-iostream-Do-not-build-static-test-iostream-s.patch │ │ ├── Config.in │ │ ├── dovecot.hash │ │ └── dovecot.mk │ ├── doxygen │ │ ├── doxygen.hash │ │ └── doxygen.mk │ ├── drbd-utils │ │ ├── Config.in │ │ ├── drbd-utils.hash │ │ └── drbd-utils.mk │ ├── dropbear │ │ ├── Config.in │ │ ├── S50dropbear │ │ ├── dropbear.hash │ │ ├── dropbear.mk │ │ ├── dropbear.service │ │ └── etc-pam.d-sshd │ ├── dropwatch │ │ ├── 0001-binutils-2.23.1.patch │ │ ├── 0002-Make-binutils-optional.patch │ │ ├── Config.in │ │ ├── dropwatch.hash │ │ └── dropwatch.mk │ ├── dstat │ │ ├── Config.in │ │ ├── dstat.hash │ │ └── dstat.mk │ ├── dt-utils │ │ ├── Config.in │ │ ├── dt-utils.hash │ │ └── dt-utils.mk │ ├── dt │ │ ├── 0001-adjust-os-symlink.patch │ │ ├── 0002-dt-default-source-define.patch │ │ ├── Config.in │ │ ├── dt.hash │ │ └── dt.mk │ ├── dtach │ │ ├── Config.in │ │ ├── dtach.hash │ │ └── dtach.mk │ ├── dtc │ │ ├── 0001-Fix-include-guards-for-older-kernel-u-boot-sources.patch │ │ ├── Config.in │ │ ├── Config.in.host │ │ ├── dtc.hash │ │ └── dtc.mk │ ├── dtv-scan-tables │ │ ├── Config.in │ │ ├── dtv-scan-tables.hash │ │ └── dtv-scan-tables.mk │ ├── duktape │ │ ├── Config.in │ │ ├── duktape.hash │ │ └── duktape.mk │ ├── duma │ │ ├── 0001-fix-cross-compilation.patch │ │ ├── 0002-no-tests.patch │ │ ├── 0003-fix-C++14.patch │ │ ├── 0004-Fix-build-with-latest-glibc.patch │ │ ├── Config.in │ │ ├── duma.hash │ │ └── duma.mk │ ├── dump1090 │ │ ├── Config.in │ │ ├── dump1090.hash │ │ └── dump1090.mk │ ├── dvb-apps │ │ ├── 0001-Fix-generate-keynames.patch │ │ ├── 0002-Fix-compiler-warning-flags.patch │ │ ├── 0003-handle-static-shared-only-build.patch │ │ ├── 0004-Makefile-remove-test.patch │ │ ├── 0005-utils-fix-build-with-kernel-headers-4.14.patch │ │ ├── Config.in │ │ └── dvb-apps.mk │ ├── dvblast │ │ ├── 0001-missing-lm.patch │ │ ├── 0002-fix-int-types.patch │ │ ├── Config.in │ │ ├── dvblast.hash │ │ └── dvblast.mk │ ├── dvbsnoop │ │ ├── 0001-musl-types-h.patch │ │ ├── Config.in │ │ ├── dvbsnoop.hash │ │ └── dvbsnoop.mk │ ├── dvdauthor │ │ ├── Config.in │ │ ├── dvdauthor.hash │ │ └── dvdauthor.mk │ ├── dvdrw-tools │ │ ├── 0001-limits.h.patch │ │ ├── 0002-Include-sysmacros.h-to-compile-with-newer-gcc.patch │ │ ├── Config.in │ │ ├── dvdrw-tools.hash │ │ └── dvdrw-tools.mk │ ├── e2fsprogs │ │ ├── Config.in │ │ ├── Config.in.host │ │ ├── e2fsprogs.hash │ │ └── e2fsprogs.mk │ ├── e2tools │ │ ├── Config.in │ │ ├── Config.in.host │ │ ├── e2tools.hash │ │ └── e2tools.mk │ ├── easy-rsa │ │ ├── Config.in │ │ ├── easy-rsa.hash │ │ └── easy-rsa.mk │ ├── easydbus │ │ ├── Config.in │ │ ├── easydbus.hash │ │ └── easydbus.mk │ ├── ebtables │ │ ├── 0001-ethernetdb.h-Remove-C-specific-compiler-hint-macro-_.patch │ │ ├── 0002-Fix-musl-compatibility.patch │ │ ├── 0003-replace-ebtables-save-perl-script-with-bash.patch │ │ ├── Config.in │ │ ├── ebtables.hash │ │ └── ebtables.mk │ ├── ecryptfs-utils │ │ ├── 0001-musl.patch │ │ ├── 0002-openssl110.patch │ │ ├── 0003-fix-parallel-build-issue.patch │ │ ├── Config.in │ │ ├── ecryptfs-utils.hash │ │ └── ecryptfs-utils.mk │ ├── ed │ │ ├── Config.in │ │ ├── ed.hash │ │ └── ed.mk │ ├── edid-decode │ │ ├── Config.in │ │ ├── edid-decode.hash │ │ └── edid-decode.mk │ ├── efibootmgr │ │ ├── 0001-Allow-build-with-uClibc.patch │ │ ├── Config.in │ │ ├── efibootmgr.hash │ │ └── efibootmgr.mk │ ├── efivar │ │ ├── 0001-Allow-build-with-uClibc.patch │ │ ├── 0002-dp.h-make-format_guid-handle-misaligned-guid-pointer.patch │ │ ├── 0003-Fix-all-the-places-Werror-address-of-packed-member-c.patch │ │ ├── 0004-Fix-another-error-of-Werror-address-of-packed-member.patch │ │ ├── Config.in │ │ ├── efivar.hash │ │ └── efivar.mk │ ├── efl │ │ ├── 0001-eina-set-EINA_VALUE_EMPTY-during-library-init.patch │ │ ├── Config.in │ │ ├── efl.hash │ │ └── efl.mk │ ├── eigen │ │ ├── Config.in │ │ ├── eigen.hash │ │ └── eigen.mk │ ├── ejabberd │ │ ├── 0001-Makefile.in-do-not-download-or-compile-dependencies.patch │ │ ├── 0002-fix-ejabberdctl.patch │ │ ├── Config.in │ │ ├── S50ejabberd │ │ ├── check-erlang-lib │ │ ├── ejabberd.hash │ │ └── ejabberd.mk │ ├── elf2flt │ │ ├── 0001-ld-elf2flt-behave-properly-when-called-with-a-name-d.patch │ │ ├── 0002-elf2flt-add-riscv-support.patch │ │ ├── 0002-elf2flt-fix-relocations-for-read-only-data.patch │ │ ├── Config.in.host │ │ ├── elf2flt.hash │ │ └── elf2flt.mk │ ├── elftosb │ │ ├── 0001-fixes-includes.patch │ │ ├── 0002-force-cxx-compiler.patch │ │ ├── elftosb.hash │ │ └── elftosb.mk │ ├── elfutils │ │ ├── 0001-Add-a-enable-disable-progs-configure-option.patch │ │ ├── 0002-Really-make-Werror-conditional-to-BUILD_WERROR.patch │ │ ├── Config.in │ │ ├── elfutils.hash │ │ └── elfutils.mk │ ├── elixir │ │ ├── elixir.hash │ │ └── elixir.mk │ ├── ell │ │ ├── 0001-ell-ecc.h-fix-build-with-uclibc.patch │ │ ├── Config.in │ │ ├── ell.hash │ │ └── ell.mk │ ├── emlog │ │ ├── Config.in │ │ ├── emlog.hash │ │ └── emlog.mk │ ├── empty │ │ ├── 0001-respect-LDFLAGS.patch │ │ ├── Config.in │ │ ├── empty.hash │ │ └── empty.mk │ ├── enchant │ │ ├── Config.in │ │ ├── enchant.hash │ │ └── enchant.mk │ ├── enet │ │ ├── Config.in │ │ ├── enet.hash │ │ └── enet.mk │ ├── enlightenment │ │ ├── Config.in │ │ ├── enlightenment.hash │ │ └── enlightenment.mk │ ├── enscript │ │ ├── Config.in │ │ ├── enscript.hash │ │ └── enscript.mk │ ├── erlang-base64url │ │ ├── Config.in │ │ ├── erlang-base64url.hash │ │ └── erlang-base64url.mk │ ├── erlang-eimp │ │ ├── Config.in │ │ ├── erlang-eimp.hash │ │ └── erlang-eimp.mk │ ├── erlang-goldrush │ │ ├── Config.in │ │ ├── erlang-goldrush.hash │ │ └── erlang-goldrush.mk │ ├── erlang-idna │ │ ├── Config.in │ │ ├── erlang-idna.hash │ │ └── erlang-idna.mk │ ├── erlang-jiffy │ │ ├── Config.in │ │ ├── erlang-jiffy.hash │ │ └── erlang-jiffy.mk │ ├── erlang-jose │ │ ├── Config.in │ │ ├── erlang-jose.hash │ │ └── erlang-jose.mk │ ├── erlang-lager │ │ ├── Config.in │ │ ├── erlang-lager.hash │ │ └── erlang-lager.mk │ ├── erlang-p1-acme │ │ ├── Config.in │ │ ├── erlang-p1-acme.hash │ │ └── erlang-p1-acme.mk │ ├── erlang-p1-cache-tab │ │ ├── Config.in │ │ ├── erlang-p1-cache-tab.hash │ │ └── erlang-p1-cache-tab.mk │ ├── erlang-p1-mqtree │ │ ├── Config.in │ │ ├── erlang-p1-mqtree.hash │ │ └── erlang-p1-mqtree.mk │ ├── erlang-p1-oauth2 │ │ ├── Config.in │ │ ├── erlang-p1-oauth2.hash │ │ └── erlang-p1-oauth2.mk │ ├── erlang-p1-pkix │ │ ├── Config.in │ │ ├── erlang-p1-pkix.hash │ │ └── erlang-p1-pkix.mk │ ├── erlang-p1-sip │ │ ├── 0001-fix-includes.patch │ │ ├── Config.in │ │ ├── erlang-p1-sip.hash │ │ └── erlang-p1-sip.mk │ ├── erlang-p1-stringprep │ │ ├── Config.in │ │ ├── erlang-p1-stringprep.hash │ │ └── erlang-p1-stringprep.mk │ ├── erlang-p1-stun │ │ ├── Config.in │ │ ├── erlang-p1-stun.hash │ │ └── erlang-p1-stun.mk │ ├── erlang-p1-tls │ │ ├── Config.in │ │ ├── erlang-p1-tls.hash │ │ └── erlang-p1-tls.mk │ ├── erlang-p1-utils │ │ ├── Config.in │ │ ├── erlang-p1-utils.hash │ │ └── erlang-p1-utils.mk │ ├── erlang-p1-xml │ │ ├── Config.in │ │ ├── erlang-p1-xml.hash │ │ └── erlang-p1-xml.mk │ ├── erlang-p1-xmpp │ │ ├── 0001-fix-includes.patch │ │ ├── Config.in │ │ ├── erlang-p1-xmpp.hash │ │ └── erlang-p1-xmpp.mk │ ├── erlang-p1-yaml │ │ ├── Config.in │ │ ├── erlang-p1-yaml.hash │ │ └── erlang-p1-yaml.mk │ ├── erlang-p1-yconf │ │ ├── Config.in │ │ ├── erlang-p1-yconf.hash │ │ └── erlang-p1-yconf.mk │ ├── erlang-p1-zlib │ │ ├── Config.in │ │ ├── erlang-p1-zlib.hash │ │ └── erlang-p1-zlib.mk │ ├── erlang-rebar │ │ ├── erlang-rebar.hash │ │ └── erlang-rebar.mk │ ├── erlang │ │ ├── 0001-erts-ethread-instruct-libatomic_ops-we-do-require-CA.patch │ │ ├── 0002-erts-emulator-reorder-inclued-headers-paths.patch │ │ ├── Config.in │ │ ├── erlang.hash │ │ └── erlang.mk │ ├── espeak │ │ ├── 0001-Fix-build-of-shared-library-on-architectures-needing.patch │ │ ├── 0002-tr_languages-cast-string_ordinal-init-values.patch │ │ ├── Config.in │ │ ├── espeak.hash │ │ └── espeak.mk │ ├── ethtool │ │ ├── Config.in │ │ ├── ethtool.hash │ │ └── ethtool.mk │ ├── eudev │ │ ├── 0001-Only-use-pragma-for-ignoring-diagnostics-if-.patch │ │ ├── Config.in │ │ ├── Config.in.host │ │ ├── S10udev │ │ ├── eudev.hash │ │ └── eudev.mk │ ├── ev3dev-linux-drivers │ │ ├── Config.in │ │ ├── ev3dev-linux-drivers.mk │ │ └── lego-linux-drivers.hash │ ├── evemu │ │ ├── 0001-Include-limits.h-for-PATH_MAX.patch │ │ ├── Config.in │ │ ├── evemu.hash │ │ └── evemu.mk │ ├── evtest │ │ ├── 0001-Add-missing-limits.h-include.patch │ │ ├── Config.in │ │ ├── evtest.hash │ │ └── evtest.mk │ ├── execline │ │ ├── Config.in │ │ ├── execline.hash │ │ └── execline.mk │ ├── exempi │ │ ├── Config.in │ │ ├── exempi.hash │ │ └── exempi.mk │ ├── exfat-utils │ │ ├── Config.in │ │ ├── exfat-utils.hash │ │ └── exfat-utils.mk │ ├── exfat │ │ ├── Config.in │ │ ├── exfat.hash │ │ └── exfat.mk │ ├── exim │ │ ├── 0001-Build-buildconfig-for-the-host.patch │ │ ├── 0002-Don-t-make-backup-copies-of-installed-files.patch │ │ ├── 0003-Skip-version-check-and-symlink-installation.patch │ │ ├── 0004-Fix-uClibc-build.patch │ │ ├── 0005-exim_lock-fix-lstat-related-build-errors.patch │ │ ├── 0006-sieve-fix-build-errors.patch │ │ ├── Config.in │ │ ├── S86exim │ │ ├── exim.hash │ │ ├── exim.mk │ │ └── exim.service │ ├── exiv2 │ │ ├── Config.in │ │ ├── exiv2.hash │ │ └── exiv2.mk │ ├── expat │ │ ├── Config.in │ │ ├── expat.hash │ │ └── expat.mk │ ├── expect │ │ ├── 0001-enable-cross-compilation.patch │ │ ├── 0002-allow-tcl-build-directory.patch │ │ ├── Config.in │ │ ├── expect.hash │ │ └── expect.mk │ ├── explorercanvas │ │ ├── Config.in │ │ ├── explorercanvas.hash │ │ └── explorercanvas.mk │ ├── ezxml │ │ ├── 0001-allow-compiler-override.patch │ │ ├── Config.in │ │ ├── ezxml.hash │ │ └── ezxml.mk │ ├── f2fs-tools │ │ ├── 0001-mkfs-Makefile.am-fix-build-without-blkid.patch │ │ ├── Config.in │ │ ├── Config.in.host │ │ ├── f2fs-tools.hash │ │ └── f2fs-tools.mk │ ├── faad2 │ │ ├── Config.in │ │ ├── faad2.hash │ │ └── faad2.mk │ ├── faifa │ │ ├── 0001-sha2.c-explicitly-include-endian.h-for-BYTE_ORDER-ma.patch │ │ ├── 0002-hpav_cfg.c-do-not-include-linux-if_ether.h-for-musl-.patch │ │ ├── 0003-Makefile.in-fix-asbolute-symlink-of-libfaifa.so.patch │ │ ├── Config.in │ │ ├── faifa.hash │ │ └── faifa.mk │ ├── fail2ban │ │ ├── Config.in │ │ ├── S60fail2ban │ │ ├── fail2ban.hash │ │ └── fail2ban.mk │ ├── fakedate │ │ ├── fakedate │ │ └── fakedate.mk │ ├── fakeroot │ │ ├── 0001-hide-dlsym-error.patch │ │ ├── 0002-communicate-check-return-status-of-msgrcv.patch │ │ ├── 0003-Select-TCP-when-lack-of-SYSV-IPC.patch │ │ ├── fakeroot.hash │ │ └── fakeroot.mk │ ├── faketime │ │ ├── Config.in.host │ │ ├── faketime.hash │ │ └── faketime.mk │ ├── fan-ctrl │ │ ├── Config.in │ │ ├── fan-ctrl.hash │ │ └── fan-ctrl.mk │ ├── fastd │ │ ├── 0001-cmake-use-INTERPROCEDURAL_OPTIMIZATION-target-proper.patch │ │ ├── 0002-CMakeList-do-not-overwrite-module-path.patch │ │ ├── 0003-cipher-remove-aes128-ctr-NaCl-implementation.patch │ │ ├── Config.in │ │ ├── fastd.hash │ │ └── fastd.mk │ ├── fatcat │ │ ├── Config.in.host │ │ ├── fatcat.hash │ │ └── fatcat.mk │ ├── fb-test-app │ │ ├── Config.in │ │ ├── fb-test-app.hash │ │ └── fb-test-app.mk │ ├── fbdump │ │ ├── Config.in │ │ ├── fbdump.hash │ │ └── fbdump.mk │ ├── fbgrab │ │ ├── 0001-fix-static-build.patch │ │ ├── 0100-fix-pixfmt-report.patch │ │ ├── Config.in │ │ ├── fbgrab.hash │ │ └── fbgrab.mk │ ├── fbset │ │ ├── 0001-Fix-musl-compile.patch │ │ ├── Config.in │ │ ├── fbset.hash │ │ └── fbset.mk │ ├── fbterm │ │ ├── 0001-fbio.cpp-improxy.cpp-fbterm.cpp-fix-musl-compile.patch │ │ ├── 0002-mouse.cpp-fix-musl-compile.patch │ │ ├── 0003-C++11-compliance.patch │ │ ├── 0004-iconv.patch │ │ ├── Config.in │ │ ├── fbterm.hash │ │ └── fbterm.mk │ ├── fbtft │ │ ├── Config.in │ │ ├── fbtft.hash │ │ └── fbtft.mk │ ├── fbv │ │ ├── 0002-cross.patch │ │ ├── 0003-fix-24bpp-support-on-big-endian.patch │ │ ├── 0004-fix-bgr555.patch │ │ ├── 0005-giflib.patch │ │ ├── 0006-include.patch │ │ ├── 0007-libpng15.patch │ │ ├── Config.in │ │ ├── fbv.hash │ │ └── fbv.mk │ ├── fcgiwrap │ │ ├── 0001-use-LIBS-from-configure.patch │ │ ├── 0002-link-with-libsystemd-instead-of-libsystemd-daemon.patch │ │ ├── Config.in │ │ ├── fcgiwrap.hash │ │ └── fcgiwrap.mk │ ├── fconfig │ │ ├── Config.in │ │ ├── fconfig.hash │ │ └── fconfig.mk │ ├── fdk-aac │ │ ├── Config.in │ │ ├── fdk-aac.hash │ │ └── fdk-aac.mk │ ├── feh │ │ ├── Config.in │ │ ├── feh.hash │ │ └── feh.mk │ ├── fetchmail │ │ ├── Config.in │ │ ├── fetchmail.hash │ │ └── fetchmail.mk │ ├── ffmpeg │ │ ├── Config.in │ │ ├── ffmpeg.hash │ │ └── ffmpeg.mk │ ├── fftw │ │ ├── Config.in │ │ ├── fftw-double │ │ │ ├── Config.in │ │ │ ├── fftw-double.hash │ │ │ └── fftw-double.mk │ │ ├── fftw-long-double │ │ │ ├── Config.in │ │ │ ├── fftw-long-double.hash │ │ │ └── fftw-long-double.mk │ │ ├── fftw-quad │ │ │ ├── Config.in │ │ │ ├── fftw-quad.hash │ │ │ └── fftw-quad.mk │ │ ├── fftw-single │ │ │ ├── Config.in │ │ │ ├── fftw-single.hash │ │ │ └── fftw-single.mk │ │ ├── fftw.hash │ │ └── fftw.mk │ ├── ficl │ │ ├── 0001-fix-Makefile.patch │ │ ├── Config.in │ │ ├── ficl.hash │ │ └── ficl.mk │ ├── file │ │ ├── 0001-Add-libmagic.pc.patch │ │ ├── Config.in │ │ ├── file.hash │ │ └── file.mk │ ├── filemq │ │ ├── Config.in │ │ ├── filemq.hash │ │ └── filemq.mk │ ├── findutils │ │ ├── Config.in │ │ ├── findutils.hash │ │ └── findutils.mk │ ├── fio │ │ ├── Config.in │ │ ├── fio.hash │ │ └── fio.mk │ ├── flac │ │ ├── 0001-configure.ac-check-for-sys-auxv.h-before-defining-FL.patch │ │ ├── Config.in │ │ ├── flac.hash │ │ └── flac.mk │ ├── flann │ │ ├── 0001-src-cpp-fix-cmake-3.11-build.patch │ │ ├── Config.in │ │ ├── flann.hash │ │ └── flann.mk │ ├── flannel │ │ ├── Config.in │ │ ├── flannel.hash │ │ └── flannel.mk │ ├── flare-engine │ │ ├── Config.in │ │ ├── flare-engine.hash │ │ └── flare-engine.mk │ ├── flare-game │ │ ├── Config.in │ │ ├── flare-game.hash │ │ └── flare-game.mk │ ├── flashbench │ │ ├── Config.in │ │ ├── flashbench.hash │ │ └── flashbench.mk │ ├── flashrom │ │ ├── 0001-spi.patch │ │ ├── Config.in │ │ ├── flashrom.hash │ │ └── flashrom.mk │ ├── flatbuffers │ │ ├── 0001-Add-detection-of-strtoull_l-function.patch │ │ ├── Config.in │ │ ├── flatbuffers.hash │ │ └── flatbuffers.mk │ ├── flatcc │ │ ├── Config.in │ │ ├── flatcc.hash │ │ └── flatcc.mk │ ├── flex │ │ ├── 0001-build-AC_USE_SYSTEM_EXTENSIONS-in-configure.ac.patch │ │ ├── 0002-build-make-it-possible-to-disable-the-build-of-the-f.patch │ │ ├── 0003-build-make-it-possible-to-disable-the-build-of-the-d.patch │ │ ├── Config.in │ │ ├── flex.hash │ │ └── flex.mk │ ├── flickcurl │ │ ├── Config.in │ │ ├── flickcurl.hash │ │ └── flickcurl.mk │ ├── flite │ │ ├── 0001-now-honor-DESTDIR-env.-var.patch │ │ ├── 0002-fix-alsa-static.patch │ │ ├── 0003-fix-alsa-version-check.patch │ │ ├── Config.in │ │ ├── flite.hash │ │ └── flite.mk │ ├── flot │ │ ├── Config.in │ │ ├── flot.hash │ │ └── flot.mk │ ├── fltk │ │ ├── 0001-disable-tests.patch │ │ ├── Config.in │ │ ├── fltk.hash │ │ └── fltk.mk │ ├── fluid-soundfont │ │ ├── Config.in │ │ ├── fluid-soundfont.hash │ │ └── fluid-soundfont.mk │ ├── fluidsynth │ │ ├── Config.in │ │ ├── fluidsynth.hash │ │ └── fluidsynth.mk │ ├── fluxbox │ │ ├── Config.in │ │ ├── fluxbox.hash │ │ ├── fluxbox.mk │ │ └── xsession │ ├── fmc │ │ ├── Config.in │ │ ├── fmc.hash │ │ └── fmc.mk │ ├── fmlib │ │ ├── Config.in │ │ ├── fmlib.hash │ │ └── fmlib.mk │ ├── fmt │ │ ├── Config.in │ │ ├── fmt.hash │ │ └── fmt.mk │ ├── fmtools │ │ ├── Config.in │ │ ├── fmtools.hash │ │ └── fmtools.mk │ ├── font-awesome │ │ ├── Config.in │ │ ├── font-awesome.hash │ │ └── font-awesome.mk │ ├── fontconfig │ │ ├── 0001-Fix-the-build-issue-with-enable-static.patch │ │ ├── Config.in │ │ ├── fontconfig.hash │ │ └── fontconfig.mk │ ├── fping │ │ ├── Config.in │ │ ├── fping.hash │ │ └── fping.mk │ ├── freeradius-client │ │ ├── 0001-fix-for-nettle.patch │ │ ├── Config.in │ │ ├── freeradius-client.hash │ │ └── freeradius-client.mk │ ├── freerdp │ │ ├── 0001-xf_floatbar.c-fix-build-without-Xfixes.patch │ │ ├── Config.in │ │ ├── freerdp.hash │ │ └── freerdp.mk │ ├── freescale-imx │ │ ├── Config.in │ │ ├── firmware-imx │ │ │ ├── Config.in │ │ │ ├── firmware-imx.hash │ │ │ └── firmware-imx.mk │ │ ├── freescale-imx.mk │ │ ├── gpu-amd-bin-mx51 │ │ │ ├── Config.in │ │ │ ├── egl.pc │ │ │ ├── glesv2.pc │ │ │ ├── gpu-amd-bin-mx51.hash │ │ │ ├── gpu-amd-bin-mx51.mk │ │ │ └── vg.pc │ │ ├── imx-alsa-plugins │ │ │ ├── Config.in │ │ │ ├── imx-alsa-plugins.hash │ │ │ └── imx-alsa-plugins.mk │ │ ├── imx-codec │ │ │ ├── Config.in │ │ │ ├── imx-codec.hash │ │ │ └── imx-codec.mk │ │ ├── imx-gpu-g2d │ │ │ ├── Config.in │ │ │ ├── imx-gpu-g2d.hash │ │ │ └── imx-gpu-g2d.mk │ │ ├── imx-gpu-viv │ │ │ ├── Config.in │ │ │ ├── imx-gpu-viv.hash │ │ │ └── imx-gpu-viv.mk │ │ ├── imx-kobs │ │ │ ├── 0001-Fix-musl-build.patch │ │ │ ├── 0002-Fix-build-for-recent-toolchains.patch │ │ │ ├── Config.in │ │ │ ├── imx-kobs.hash │ │ │ └── imx-kobs.mk │ │ ├── imx-lib │ │ │ ├── Config.in │ │ │ ├── imx-lib.hash │ │ │ └── imx-lib.mk │ │ ├── imx-m4fwloader │ │ │ ├── Config.in │ │ │ ├── imx-m4fwloader.hash │ │ │ └── imx-m4fwloader.mk │ │ ├── imx-parser │ │ │ ├── Config.in │ │ │ ├── imx-parser.hash │ │ │ └── imx-parser.mk │ │ ├── imx-sc-firmware │ │ │ ├── Config.in │ │ │ ├── imx-sc-firmware.hash │ │ │ └── imx-sc-firmware.mk │ │ ├── imx-uuc │ │ │ ├── Config.in │ │ │ ├── S80imx-uuc │ │ │ ├── imx-uuc.hash │ │ │ ├── imx-uuc.mk │ │ │ └── imx-uuc.service │ │ ├── imx-vpu-hantro │ │ │ ├── 0001-Fix-ion.h-header-inclusion-to-be-standard.patch │ │ │ ├── Config.in │ │ │ ├── imx-vpu-hantro.hash │ │ │ └── imx-vpu-hantro.mk │ │ ├── imx-vpu │ │ │ ├── Config.in │ │ │ ├── imx-vpu.hash │ │ │ └── imx-vpu.mk │ │ ├── imx-vpuwrap │ │ │ ├── Config.in │ │ │ ├── imx-vpuwrap.hash │ │ │ └── imx-vpuwrap.mk │ │ ├── kernel-module-imx-gpu-viv │ │ │ ├── Config.in │ │ │ ├── kernel-module-imx-gpu-viv.hash │ │ │ └── kernel-module-imx-gpu-viv.mk │ │ └── libz160 │ │ │ ├── Config.in │ │ │ ├── libz160.hash │ │ │ └── libz160.mk │ ├── freeswitch-mod-bcg729 │ │ ├── Config.in │ │ ├── freeswitch-mod-bcg729.hash │ │ └── freeswitch-mod-bcg729.mk │ ├── freeswitch │ │ ├── Config.in │ │ ├── freeswitch.hash │ │ └── freeswitch.mk │ ├── freetype │ │ ├── Config.in │ │ ├── freetype.hash │ │ └── freetype.mk │ ├── fscryptctl │ │ ├── Config.in │ │ ├── fscryptctl.hash │ │ └── fscryptctl.mk │ ├── fstrcmp │ │ ├── 0001-disable-rpath.patch │ │ ├── Config.in │ │ ├── fstrcmp.hash │ │ └── fstrcmp.mk │ ├── fswebcam │ │ ├── Config.in │ │ ├── fswebcam.hash │ │ └── fswebcam.mk │ ├── ftop │ │ ├── 0001-overflow.patch │ │ ├── Config.in │ │ ├── ftop.hash │ │ └── ftop.mk │ ├── fwts │ │ ├── 0001-build-do-not-use-Werror.patch │ │ ├── Config.in │ │ ├── fwts.hash │ │ └── fwts.mk │ ├── fwup │ │ ├── Config.in │ │ ├── Config.in.host │ │ ├── fwup.hash │ │ └── fwup.mk │ ├── fxload │ │ ├── Config.in │ │ ├── fxload.hash │ │ └── fxload.mk │ ├── gamin │ │ ├── 0001-no-abstract-sockets.patch │ │ ├── 0002-no-const-return.patch │ │ ├── 0003-fix-missing-PTHREAD_MUTEX_RECURSIVE_NP.patch │ │ ├── Config.in │ │ ├── gamin.hash │ │ └── gamin.mk │ ├── gauche │ │ ├── 0001-fix-so-suffix.patch │ │ ├── Config.in │ │ ├── gauche.hash │ │ └── gauche.mk │ ├── gawk │ │ ├── 0001-no-versioned.patch │ │ ├── Config.in │ │ ├── gawk.hash │ │ └── gawk.mk │ ├── gcc │ │ ├── 5.5.0 │ │ │ ├── 0001-m68k-coldfire-pr68467.patch │ │ │ ├── 0002-libsanitizer-Use-pre-computed-size.patch │ │ │ ├── 100-uclibc-conf.patch │ │ │ ├── 120-gcc-config.gcc-fix-typo-for-powerpc-e6500-cpu_is_64b.patch │ │ │ ├── 301-missing-execinfo_h.patch │ │ │ ├── 810-arm-softfloat-libgcc.patch │ │ │ ├── 830-arm_unbreak_armv4t.patch │ │ │ ├── 831-ARM-PR-target-70473-Reduce-size-of-Cortex-A8-automat.patch │ │ │ ├── 840-microblaze-enable-dwarf-eh-support.patch │ │ │ ├── 850-libstdcxx-uclibc-c99.patch │ │ │ ├── 860-cilk-wchar.patch │ │ │ ├── 870-xtensa-add-mauto-litpools-option.patch │ │ │ ├── 871-xtensa-reimplement-register-spilling.patch │ │ │ ├── 874-xtensa-add-uclinux-support.patch │ │ │ ├── 875-xtensa-implement-trap-pattern.patch │ │ │ ├── 880-gcc-nios2-Add-IJMP_REGS-enum.patch │ │ │ ├── 890-fix-m68k-compile.patch │ │ │ ├── 900-libitm-fixes-for-musl-support.patch │ │ │ ├── 901-fixincludes-update-for-musl-support.patch │ │ │ ├── 902-unwind-fix-for-musl.patch │ │ │ ├── 903-libstdc++-libgfortran-gthr-workaround-for-musl.patch │ │ │ ├── 904-musl-libc-config.patch │ │ │ ├── 905-add-musl-support-to-gcc.patch │ │ │ ├── 906-mips-musl-support.patch │ │ │ ├── 907-x86-musl-support.patch │ │ │ ├── 908-arm-musl-support.patch │ │ │ ├── 909-aarch64-musl-support.patch │ │ │ ├── 910-microblaze-musl-and-uclibc.patch │ │ │ ├── 911-ppc-musl-support.patch │ │ │ ├── 912-sh-musl-support.patch │ │ │ ├── 930-libgcc-disable-split-stack-nothreads.patch │ │ │ ├── 940-uclinux-enable-threads.patch │ │ │ └── 941-mips-Add-support-for-mips-r6-musl.patch │ │ ├── 7.5.0 │ │ │ ├── 0001-uclibc-conf.patch │ │ │ ├── 0002-arm-softfloat-libgcc.patch │ │ │ ├── 0003-cilk-fix-build-without-wchar.patch │ │ │ ├── 0004-Revert-2016-01-21-Ajit-Agarwal-ajitkum-xilinx.com.patch │ │ │ ├── 0005-PR-target-81497-Fix-arm_acle.h-for-C.patch │ │ │ ├── 0006-gcc-define-_REENTRANT-for-RISC-V-when-pthread-is-pas.patch │ │ │ └── 0007-xtensa-fix-PR-target-91880.patch │ │ ├── 8.3.0 │ │ │ ├── 0001-xtensa-backport-fix-for-PR-target-90922.patch │ │ │ └── 0002-xtensa-fix-PR-target-91880.patch │ │ ├── 9.2.0 │ │ │ ├── 0001-xtensa-backport-fix-for-PR-target-90922.patch │ │ │ ├── 0002-xtensa-fix-PR-target-91880.patch │ │ │ └── 0003-or1k-Fix-issue-with-set_got-clobbering-LR-r9.patch │ │ ├── Config.in.host │ │ ├── arc-2019.09-release │ │ │ └── 0100-uclibc-conf.patch │ │ ├── gcc-final │ │ │ ├── gcc-final.hash │ │ │ └── gcc-final.mk │ │ ├── gcc-initial │ │ │ ├── gcc-initial.hash │ │ │ └── gcc-initial.mk │ │ ├── gcc.hash │ │ ├── gcc.mk │ │ └── or1k-musl-5.4.0-20170218 │ │ │ ├── 100-uclibc-conf.patch │ │ │ ├── 301-missing-execinfo_h.patch │ │ │ ├── 850-libstdcxx-uclibc-c99.patch │ │ │ ├── 860-cilk-wchar.patch │ │ │ └── 930-libgcc-disable-split-stack-nothreads.patch │ ├── gcnano-binaries │ │ ├── Config.in │ │ ├── gcnano-binaries.hash │ │ └── gcnano-binaries.mk │ ├── gconf │ │ ├── Config.in │ │ ├── gconf.hash │ │ └── gconf.mk │ ├── gcr │ │ ├── Config.in │ │ ├── gcr.hash │ │ └── gcr.mk │ ├── gd │ │ ├── 0001-bmp-check-return-value-in-gdImageBmpPtr.patch │ │ ├── 0002-Fix-420-Potential-infinite-loop-in-gdImageCreateFrom.patch │ │ ├── 0003-Fix-501-Uninitialized-read-in-gdImageCreateFromXbm-C.patch │ │ ├── 0004-Fix-492-Potential-double-free-in-gdImage-Ptr.patch │ │ ├── Config.in │ │ ├── gd.hash │ │ └── gd.mk │ ├── gdb │ │ ├── 8.1.1 │ │ │ ├── 0001-ppc-ptrace-Define-pt_regs-uapi_pt_regs-on-GLIBC-syst.patch │ │ │ ├── 0002-sh-ptrace-Define-pt_-dsp-regs-uapi_pt_-dsp-regs-on-G.patch │ │ │ ├── 0003-use-asm-sgidefs.h.patch │ │ │ ├── 0004-gdbserver-fix-build-for-m68k.patch │ │ │ ├── 0005-nat-fork-inferior-include-linux-ptrace.h.patch │ │ │ ├── 0006-Move-is_regular_file-from-common-utils.c-to-filestuf.patch │ │ │ └── 0007-gdb-Fix-ia64-defining-TRAP_HWBKPT-before-including-gdb_wait-h.patch │ │ ├── 8.2.1 │ │ │ ├── 0001-ppc-ptrace-Define-pt_regs-uapi_pt_regs-on-GLIBC-syst.patch │ │ │ ├── 0002-sh-ptrace-Define-pt_-dsp-regs-uapi_pt_-dsp-regs-on-G.patch │ │ │ ├── 0003-use-asm-sgidefs.h.patch │ │ │ ├── 0004-gdbserver-fix-build-for-m68k.patch │ │ │ └── 0005-nat-fork-inferior-include-linux-ptrace.h.patch │ │ ├── 8.3 │ │ │ ├── 0001-ppc-ptrace-Define-pt_regs-uapi_pt_regs-on-GLIBC-syst.patch │ │ │ ├── 0002-sh-ptrace-Define-pt_-dsp-regs-uapi_pt_-dsp-regs-on-G.patch │ │ │ ├── 0003-use-asm-sgidefs.h.patch │ │ │ ├── 0004-gdbserver-fix-build-for-m68k.patch │ │ │ └── 0005-nat-fork-inferior-include-linux-ptrace.h.patch │ │ ├── Config.in │ │ ├── Config.in.host │ │ ├── gdb-python-config │ │ ├── gdb.hash │ │ └── gdb.mk │ ├── gdbm │ │ ├── Config.in │ │ ├── gdbm.hash │ │ └── gdbm.mk │ ├── gdk-pixbuf │ │ ├── Config.in │ │ ├── gdk-pixbuf.hash │ │ └── gdk-pixbuf.mk │ ├── genext2fs │ │ ├── 0001-update-genext2fs.c-to-rev-1.118.patch │ │ ├── Config.in │ │ ├── Config.in.host │ │ ├── genext2fs.hash │ │ └── genext2fs.mk │ ├── gengetopt │ │ ├── 0001-configure.ac-add-disable-doc-option.patch │ │ ├── gengetopt.hash │ │ └── gengetopt.mk │ ├── genimage │ │ ├── Config.in.host │ │ ├── genimage.hash │ │ └── genimage.mk │ ├── genpart │ │ ├── 0001-fix-return-code.patch │ │ ├── Config.in │ │ ├── Config.in.host │ │ ├── genpart.hash │ │ └── genpart.mk │ ├── genromfs │ │ ├── 0001-build-system.patch │ │ ├── Config.in │ │ ├── genromfs.hash │ │ └── genromfs.mk │ ├── gensio │ │ ├── Config.in │ │ ├── gensio.hash │ │ └── gensio.mk │ ├── geoip │ │ ├── Config.in │ │ ├── geoip.hash │ │ └── geoip.mk │ ├── gerbera │ │ ├── 0001-cmake-FindLibMagic.cmake-fix-static-linking.patch │ │ ├── Config.in │ │ ├── S99gerbera │ │ ├── config.xml │ │ ├── gerbera.hash │ │ └── gerbera.mk │ ├── gesftpserver │ │ ├── 0001-Change-order-of-v3-attributes-according-to-draft-iet.patch │ │ ├── Config.in │ │ ├── gesftpserver.hash │ │ └── gesftpserver.mk │ ├── getent │ │ ├── Config.in │ │ ├── getent │ │ └── getent.mk │ ├── gettext-gnu │ │ ├── 0001-error_print_progname.patch │ │ ├── 0002-Update-after-gnulib-changed.patch │ │ ├── Config.in │ │ ├── gettext-gnu.hash │ │ └── gettext-gnu.mk │ ├── gettext-tiny │ │ ├── Config.in │ │ ├── gettext-tiny.hash │ │ ├── gettext-tiny.mk │ │ └── gettext-wrapper │ ├── gettext │ │ ├── Config.in │ │ └── gettext.mk │ ├── gflags │ │ ├── Config.in │ │ ├── gflags.hash │ │ └── gflags.mk │ ├── ghostscript-fonts │ │ ├── Config.in │ │ ├── ghostscript-fonts.hash │ │ └── ghostscript-fonts.mk │ ├── ghostscript │ │ ├── 0001-Fix-cross-compilation-issue.patch │ │ ├── Config.in │ │ ├── ghostscript.hash │ │ └── ghostscript.mk │ ├── giblib │ │ ├── 0001-fix-imlib2-detection.patch │ │ ├── Config.in │ │ ├── giblib.hash │ │ └── giblib.mk │ ├── giflib │ │ ├── 0001-Makefile-add-targets-to-manage-static-building.patch │ │ ├── Config.in │ │ ├── giflib.hash │ │ └── giflib.mk │ ├── git-crypt │ │ ├── Config.in │ │ ├── git-crypt.hash │ │ └── git-crypt.mk │ ├── git │ │ ├── Config.in │ │ ├── git.hash │ │ └── git.mk │ ├── gli │ │ ├── Config.in │ │ ├── gli.hash │ │ └── gli.mk │ ├── glib-networking │ │ ├── Config.in │ │ ├── glib-networking.hash │ │ └── glib-networking.mk │ ├── glibc │ │ ├── 06983fe52cfe8e4779035c27e8cc5d2caab31531 │ │ │ └── glibc.hash │ │ ├── 2.30-20-g50f20fe506abb8853641006a7b90a81af21d7b91 │ │ │ └── glibc.hash │ │ ├── 7630ed2fa60caea98f500e4a7a51b88f9bf1e176 │ │ │ └── glibc.hash │ │ ├── Config.in │ │ ├── arc-2019.09-release │ │ │ └── glibc.hash │ │ ├── glibc.hash │ │ ├── glibc.mk │ │ └── nsswitch.conf │ ├── glibmm │ │ ├── Config.in │ │ ├── glibmm.hash │ │ └── glibmm.mk │ ├── glm │ │ ├── Config.in │ │ ├── glm.hash │ │ └── glm.mk │ ├── glmark2 │ │ ├── Config.in │ │ ├── glmark2.hash │ │ └── glmark2.mk │ ├── glog │ │ ├── 0001-src-symbolize.cc-fix-build-without-dlfcn.h.patch │ │ ├── 0002-src-utilities-fix-build-without-pthread.patch │ │ ├── Config.in │ │ ├── glog.hash │ │ └── glog.mk │ ├── glorytun │ │ ├── Config.in │ │ ├── glorytun.hash │ │ └── glorytun.mk │ ├── glslsandbox-player │ │ ├── Config.in │ │ ├── glslsandbox-player.hash │ │ └── glslsandbox-player.mk │ ├── gmp │ │ ├── Config.in │ │ ├── gmp.hash │ │ └── gmp.mk │ ├── gmpc │ │ ├── Config.in │ │ ├── gmpc.hash │ │ └── gmpc.mk │ ├── gmrender-resurrect │ │ ├── Config.in │ │ ├── gmrender-resurrect.hash │ │ └── gmrender-resurrect.mk │ ├── gnu-efi │ │ ├── 0001-Make.defaults-don-t-override-ARCH-when-cross-compili.patch │ │ ├── 0002-Revert-efilink-fix-build-with-gcc-4.8.patch │ │ ├── Config.in │ │ ├── gnu-efi.hash │ │ └── gnu-efi.mk │ ├── gnuchess │ │ ├── Config.in │ │ ├── gnuchess.hash │ │ └── gnuchess.mk │ ├── gnupg │ │ ├── Config.in │ │ ├── Config.in.host │ │ ├── gnupg.hash │ │ └── gnupg.mk │ ├── gnupg2 │ │ ├── Config.in │ │ ├── gnupg2.hash │ │ └── gnupg2.mk │ ├── gnuplot │ │ ├── 0001-configure-add-without-demo-option.patch │ │ ├── 0002-use-gdlib-config-properly.patch │ │ ├── Config.in │ │ ├── gnuplot.hash │ │ └── gnuplot.mk │ ├── gnuradio │ │ ├── 0001-add-boost-unit_test_framework-required-only-when-ENA.patch │ │ ├── 0002-lib-CMakeLists-fix-neon-version-detection.patch │ │ ├── 0003-gr-digital-glfsr.h-drop-boost-cstdint.hpp-and-use-cs.patch │ │ ├── Config.in │ │ ├── gnuradio.hash │ │ └── gnuradio.mk │ ├── gnutls │ │ ├── Config.in │ │ ├── gnutls.hash │ │ └── gnutls.mk │ ├── go-bootstrap │ │ ├── Config.in.host │ │ ├── go-bootstrap.hash │ │ └── go-bootstrap.mk │ ├── go │ │ ├── 0001-build.go-explicit-option-for-crosscompilation.patch │ │ ├── Config.in.host │ │ ├── go.hash │ │ └── go.mk │ ├── gob2 │ │ ├── 0001-dont-include-from-prefix.patch │ │ ├── gob2.hash │ │ └── gob2.mk │ ├── google-breakpad │ │ ├── 0001-add-missing-asm-ptrace-include.patch │ │ ├── 0002-Replace-remaining-references-to-struct-ucontext-with.patch │ │ ├── 0003-src-client-linux-handler-exception_handler.cc-rename.patch │ │ ├── Config.in │ │ ├── Config.in.host │ │ ├── gen-syms.sh │ │ ├── google-breakpad.hash │ │ └── google-breakpad.mk │ ├── google-material-design-icons │ │ ├── Config.in │ │ ├── google-material-design-icons.hash │ │ └── google-material-design-icons.mk │ ├── googlefontdirectory │ │ ├── Config.in │ │ ├── googlefontdirectory.hash │ │ └── googlefontdirectory.mk │ ├── gperf │ │ ├── Config.in │ │ ├── gperf.hash │ │ └── gperf.mk │ ├── gpm │ │ ├── 0001-Added-musl-support-to-libgpm-and-the-daemon.patch │ │ ├── 0002-Install-unversioned-solibrary.patch │ │ ├── 0003-src-Makefile.in-Really-install-unversioned-solibrary.patch │ │ ├── 0004-Use-sigemptyset-API-instead-of-__sigemptyset.patch │ │ ├── 0005-fix-building-w-newer-glibc.patch │ │ ├── Config.in │ │ ├── gpm.hash │ │ └── gpm.mk │ ├── gpsd │ │ ├── 0001-SConstruct-do-not-force-O2-by-default.patch │ │ ├── Config.in │ │ ├── S50gpsd │ │ ├── gpsd.hash │ │ └── gpsd.mk │ ├── gptfdisk │ │ ├── 0001-ldlibs.patch │ │ ├── Config.in │ │ ├── Config.in.host │ │ ├── gptfdisk.hash │ │ └── gptfdisk.mk │ ├── gqrx │ │ ├── Config.in │ │ ├── gqrx.hash │ │ └── gqrx.mk │ ├── gqview │ │ ├── 0001-make.patch │ │ ├── Config.in │ │ ├── gqview.hash │ │ └── gqview.mk │ ├── gr-osmosdr │ │ ├── Config.in │ │ ├── gr-osmosdr.hash │ │ └── gr-osmosdr.mk │ ├── granite │ │ ├── Config.in │ │ ├── granite.hash │ │ └── granite.mk │ ├── grantlee │ │ ├── 0001-Remove-vestigial-ansi-flag.patch │ │ ├── Config.in │ │ ├── grantlee.hash │ │ └── grantlee.mk │ ├── graphite2 │ │ ├── Config.in │ │ ├── graphite2.hash │ │ └── graphite2.mk │ ├── grep │ │ ├── Config.in │ │ ├── grep.hash │ │ └── grep.mk │ ├── grpc │ │ ├── 0001-target-build-using-host-plugin.patch │ │ ├── 0002-Properly-detect-the-availability-of-pthread_setname_.patch │ │ ├── 0003-wrap_memcpy.cc-add-GPR_DISABLE_WRAPPED_MEMCPY.patch │ │ ├── Config.in │ │ ├── grpc.hash │ │ └── grpc.mk │ ├── gsettings-desktop-schemas │ │ ├── Config.in │ │ ├── gsettings-desktop-schemas.hash │ │ └── gsettings-desktop-schemas.mk │ ├── gsl │ │ ├── Config.in │ │ ├── gsl.hash │ │ └── gsl.mk │ ├── gssdp │ │ ├── Config.in │ │ ├── gssdp.hash │ │ └── gssdp.mk │ ├── gstreamer1 │ │ ├── Config.in │ │ ├── gst-omx │ │ │ ├── Config.in │ │ │ ├── gst-omx.hash │ │ │ └── gst-omx.mk │ │ ├── gst1-imx │ │ │ ├── 0001-waf-update-to-2-0-12.patch │ │ │ ├── Config.in │ │ │ ├── gst1-imx.hash │ │ │ └── gst1-imx.mk │ │ ├── gst1-interpipe │ │ │ ├── Config.in │ │ │ ├── gst1-interpipe.hash │ │ │ └── gst1-interpipe.mk │ │ ├── gst1-libav │ │ │ ├── Config.in │ │ │ ├── gst1-libav.hash │ │ │ └── gst1-libav.mk │ │ ├── gst1-plugins-bad │ │ │ ├── Config.in │ │ │ ├── gst1-plugins-bad.hash │ │ │ └── gst1-plugins-bad.mk │ │ ├── gst1-plugins-base │ │ │ ├── Config.in │ │ │ ├── gst1-plugins-base.hash │ │ │ └── gst1-plugins-base.mk │ │ ├── gst1-plugins-bayer2rgb-neon │ │ │ ├── Config.in │ │ │ ├── gst1-plugins-bayer2rgb-neon.hash │ │ │ └── gst1-plugins-bayer2rgb-neon.mk │ │ ├── gst1-plugins-good │ │ │ ├── Config.in │ │ │ ├── gst1-plugins-good.hash │ │ │ └── gst1-plugins-good.mk │ │ ├── gst1-plugins-ugly │ │ │ ├── Config.in │ │ │ ├── gst1-plugins-ugly.hash │ │ │ └── gst1-plugins-ugly.mk │ │ ├── gst1-rtsp-server │ │ │ ├── Config.in │ │ │ ├── gst1-rtsp-server.hash │ │ │ └── gst1-rtsp-server.mk │ │ ├── gst1-shark │ │ │ ├── Config.in │ │ │ ├── gst1-shark.hash │ │ │ └── gst1-shark.mk │ │ ├── gst1-vaapi │ │ │ ├── Config.in │ │ │ ├── gst1-vaapi.hash │ │ │ └── gst1-vaapi.mk │ │ ├── gst1-validate │ │ │ ├── Config.in │ │ │ ├── gst1-validate.hash │ │ │ └── gst1-validate.mk │ │ ├── gstreamer1-editing-services │ │ │ ├── Config.in │ │ │ ├── gstreamer1-editing-services.hash │ │ │ └── gstreamer1-editing-services.mk │ │ ├── gstreamer1-mm │ │ │ ├── Config.in │ │ │ ├── gstreamer1-mm.hash │ │ │ └── gstreamer1-mm.mk │ │ ├── gstreamer1.mk │ │ └── gstreamer1 │ │ │ ├── Config.in │ │ │ ├── gstreamer1.hash │ │ │ └── gstreamer1.mk │ ├── gtest │ │ ├── Config.in │ │ ├── gtest.hash │ │ └── gtest.mk │ ├── gtk2-engines │ │ ├── Config.in │ │ ├── gtk2-engines.hash │ │ └── gtk2-engines.mk │ ├── gtkmm3 │ │ ├── Config.in │ │ ├── gtkmm3.hash │ │ └── gtkmm3.mk │ ├── gtkperf │ │ ├── Config.in │ │ ├── gtkperf.hash │ │ └── gtkperf.mk │ ├── gtksourceview │ │ ├── Config.in │ │ ├── gtksourceview.hash │ │ └── gtksourceview.mk │ ├── guile │ │ ├── 0001-fix_arm_endianness.patch │ │ ├── 0002-calculate-csqrt_manually.patch │ │ ├── 0003-workaround-ice-ssa-corruption.patch │ │ ├── Config.in │ │ ├── guile.hash │ │ └── guile.mk │ ├── gupnp-av │ │ ├── Config.in │ │ ├── gupnp-av.hash │ │ └── gupnp-av.mk │ ├── gupnp-dlna │ │ ├── Config.in │ │ ├── gupnp-dlna.hash │ │ └── gupnp-dlna.mk │ ├── gupnp-tools │ │ ├── 0001-src-meson.build-upload-needs-gupnp-av.patch │ │ ├── Config.in │ │ ├── gupnp-tools.hash │ │ └── gupnp-tools.mk │ ├── gupnp │ │ ├── Config.in │ │ ├── gupnp.hash │ │ └── gupnp.mk │ ├── gutenprint │ │ ├── 0001-use-pregen-xmli18n-header.patch │ │ ├── 0002-cups-support-replaces-static-with-static-libtool-lib.patch │ │ ├── Config.in │ │ ├── gutenprint.hash │ │ └── gutenprint.mk │ ├── gvfs │ │ ├── Config.in │ │ ├── gvfs.hash │ │ └── gvfs.mk │ ├── gzip │ │ ├── Config.in │ │ ├── gzip.hash │ │ └── gzip.mk │ ├── hackrf │ │ ├── 0001-Don-t-require-a-C-compiler.patch │ │ ├── Config.in │ │ ├── hackrf.hash │ │ └── hackrf.mk │ ├── hans │ │ ├── Config.in │ │ ├── hans.hash │ │ └── hans.mk │ ├── haproxy │ │ ├── Config.in │ │ ├── haproxy.hash │ │ └── haproxy.mk │ ├── harfbuzz │ │ ├── Config.in │ │ ├── harfbuzz.hash │ │ └── harfbuzz.mk │ ├── haserl │ │ ├── 0001-add-haserl_lualib.inc.patch │ │ ├── Config.in │ │ ├── haserl.hash │ │ └── haserl.mk │ ├── haveged │ │ ├── Config.in │ │ ├── S21haveged │ │ ├── haveged.hash │ │ ├── haveged.mk │ │ └── haveged.service │ ├── hdparm │ │ ├── Config.in │ │ ├── hdparm.hash │ │ └── hdparm.mk │ ├── heimdal │ │ ├── heimdal.hash │ │ └── heimdal.mk │ ├── heirloom-mailx │ │ ├── 0001-Patched-out-SSL2-support-since-it-is-no-longer-suppo.patch │ │ ├── 0002-fix-libressl-support.patch │ │ ├── Config.in │ │ ├── heirloom-mailx.hash │ │ └── heirloom-mailx.mk │ ├── hiawatha │ │ ├── Config.in │ │ ├── hiawatha.hash │ │ └── hiawatha.mk │ ├── hicolor-icon-theme │ │ ├── Config.in │ │ ├── hicolor-icon-theme.hash │ │ └── hicolor-icon-theme.mk │ ├── hidapi │ │ ├── 0001-hidtest-dont-use-a-C-source-file-since-it-s-pure-C.patch │ │ ├── Config.in │ │ ├── hidapi.hash │ │ └── hidapi.mk │ ├── hiredis │ │ ├── Config.in │ │ ├── hiredis.hash │ │ └── hiredis.mk │ ├── hostapd │ │ ├── Config.in │ │ ├── hostapd.hash │ │ └── hostapd.mk │ ├── hplip │ │ ├── 0001-build-use-pkg-config-to-discover-libusb.patch │ │ ├── 0002-configure.in-fix-AM_INIT_AUTOMAKE-call.patch │ │ ├── Config.in │ │ ├── hplip.hash │ │ └── hplip.mk │ ├── htop │ │ ├── 0001-MetersPanel-remove-0xe2-from-MetersPanel.c.patch │ │ ├── Config.in │ │ ├── htop.hash │ │ └── htop.mk │ ├── httping │ │ ├── 0001-fix-math-library-linking.patch │ │ ├── 0002-Makefile-allow-build-without-gettext.patch │ │ ├── Config.in │ │ ├── httping.hash │ │ └── httping.mk │ ├── hwdata │ │ ├── Config.in │ │ ├── hwdata.hash │ │ └── hwdata.mk │ ├── hwloc │ │ ├── Config.in │ │ ├── hwloc.hash │ │ └── hwloc.mk │ ├── i2c-tools │ │ ├── Config.in │ │ ├── i2c-tools.hash │ │ └── i2c-tools.mk │ ├── i2pd │ │ ├── 0001-build-CMakeLists.txt-don-t-install-source-and-licens.patch │ │ ├── Config.in │ │ ├── S99i2pd │ │ ├── i2pd.hash │ │ ├── i2pd.mk │ │ └── i2pd.service │ ├── i7z │ │ ├── Config.in │ │ ├── i7z.hash │ │ └── i7z.mk │ ├── ibrcommon │ │ ├── 0001-ibrcommon-data-File.cpp-support-POSIX-basename-call.patch │ │ ├── 0002-ibrcommon-added-openssl-1.1-compatibility-264.patch │ │ ├── 0003-ibrcommon-ssl-gcm-fix-static-build-with-openssl.patch │ │ ├── Config.in │ │ ├── ibrcommon.hash │ │ └── ibrcommon.mk │ ├── ibrdtn-tools │ │ ├── Config.in │ │ ├── ibrdtn-tools.hash │ │ └── ibrdtn-tools.mk │ ├── ibrdtn │ │ ├── Config.in │ │ ├── ibrdtn.hash │ │ └── ibrdtn.mk │ ├── ibrdtnd │ │ ├── 0001-ibrdtnd-added-openssl-compatibility.patch │ │ ├── 0002-SecurityCertificateManager.cpp-include-cstring-267.patch │ │ ├── Config.in │ │ ├── ibrdtnd.hash │ │ └── ibrdtnd.mk │ ├── icu │ │ ├── 0001-dont-build-static-dynamic-twice.patch │ │ ├── 0002-workaround-toolchain-bugs.patch │ │ ├── 0003-link-icudata-as-data-only.patch │ │ ├── 0004-fix-static-linking-with-icu-uc.patch │ │ ├── 0005-Fix-big-endian-build.patch │ │ ├── 0006-ICU-20751-Fix-nios2-build.patch │ │ ├── 0007-double-conversion-enable-for-microblaze.patch │ │ ├── 0008-double-conversion-enable-for-xtensa.patch │ │ ├── Config.in │ │ ├── icu.hash │ │ └── icu.mk │ ├── ifenslave │ │ ├── Config.in │ │ ├── ifenslave.hash │ │ └── ifenslave.mk │ ├── ifmetric │ │ ├── 0001-Fix-issue-NETLINK-Packet-too-small-or-truncated-92-1.patch │ │ ├── Config.in │ │ ├── ifmetric.hash │ │ └── ifmetric.mk │ ├── ifplugd │ │ ├── 0001-cross.patch │ │ ├── 0002-fix-headers.patch │ │ ├── 0003-no-cxx.patch │ │ ├── 0004-musl-fix-types.patch │ │ ├── Config.in │ │ ├── ifplugd.hash │ │ └── ifplugd.mk │ ├── iftop │ │ ├── Config.in │ │ ├── iftop.hash │ │ └── iftop.mk │ ├── ifupdown-scripts │ │ ├── Config.in │ │ ├── S40network │ │ ├── ifupdown-scripts.mk │ │ ├── network.service │ │ ├── network │ │ │ ├── if-down.d │ │ │ │ └── .empty │ │ │ ├── if-post-down.d │ │ │ │ └── .empty │ │ │ ├── if-pre-up.d │ │ │ │ └── wait_iface │ │ │ └── if-up.d │ │ │ │ └── .empty │ │ └── nfs_check │ ├── ifupdown │ │ ├── 0001-dont-use-dpkg-architecture.patch │ │ ├── Config.in │ │ ├── ifupdown.hash │ │ └── ifupdown.mk │ ├── igd2-for-linux │ │ ├── Config.in │ │ ├── S99upnpd │ │ ├── igd2-for-linux.hash │ │ ├── igd2-for-linux.mk │ │ └── upnpd.service │ ├── igh-ethercat │ │ ├── Config.in │ │ ├── igh-ethercat.hash │ │ └── igh-ethercat.mk │ ├── igmpproxy │ │ ├── Config.in │ │ ├── igmpproxy.hash │ │ └── igmpproxy.mk │ ├── ijs │ │ ├── Config.in │ │ ├── ijs.hash │ │ └── ijs.mk │ ├── ima-evm-utils │ │ ├── Config.in │ │ ├── ima-evm-utils.hash │ │ └── ima-evm-utils.mk │ ├── imagemagick │ │ ├── Config.in │ │ ├── Config.in.host │ │ ├── imagemagick.hash │ │ └── imagemagick.mk │ ├── imlib2 │ │ ├── Config.in │ │ ├── imlib2.hash │ │ └── imlib2.mk │ ├── imx-mkimage │ │ ├── 0001-add-support-for-overriding-bl32-and-bl33-not-only-bl.patch │ │ ├── 0002-add-ldflags-to-link-step.patch │ │ ├── 0003-Add-unused-fake-version.patch │ │ ├── Config.in.host │ │ ├── imx-mkimage.hash │ │ └── imx-mkimage.mk │ ├── imx-usb-loader │ │ ├── Config.in │ │ ├── Config.in.host │ │ ├── imx-usb-loader.hash │ │ └── imx-usb-loader.mk │ ├── inadyn │ │ ├── Config.in │ │ ├── S70inadyn │ │ ├── inadyn.conf │ │ ├── inadyn.hash │ │ ├── inadyn.mk │ │ └── inadyn.service │ ├── inconsolata │ │ ├── Config.in │ │ ├── inconsolata.hash │ │ └── inconsolata.mk │ ├── initscripts │ │ ├── Config.in │ │ ├── init.d │ │ │ ├── S20urandom │ │ │ ├── rcK │ │ │ └── rcS │ │ └── initscripts.mk │ ├── inotify-tools │ │ ├── Config.in │ │ ├── inotify-tools.hash │ │ └── inotify-tools.mk │ ├── input-event-daemon │ │ ├── Config.in │ │ ├── S99input-event-daemon │ │ ├── input-event-daemon.hash │ │ ├── input-event-daemon.mk │ │ └── input-event-daemon.service │ ├── intel-gmmlib │ │ ├── Config.in │ │ ├── intel-gmmlib.hash │ │ └── intel-gmmlib.mk │ ├── intel-mediadriver │ │ ├── 0001-Drop-hardening-related-flags.patch │ │ ├── Config.in │ │ ├── intel-mediadriver.hash │ │ └── intel-mediadriver.mk │ ├── intel-mediasdk │ │ ├── 0001-Don-t-force-fstack-protector.patch │ │ ├── Config.in │ │ ├── intel-mediasdk.hash │ │ └── intel-mediasdk.mk │ ├── intel-microcode │ │ ├── Config.in │ │ ├── intel-microcode.hash │ │ └── intel-microcode.mk │ ├── intltool │ │ ├── 0001-perl-5.26-compatibility.patch │ │ ├── intltool.hash │ │ └── intltool.mk │ ├── iodine │ │ ├── 0001-disable-systemd-and-selinux.patch │ │ ├── Config.in │ │ ├── iodine.hash │ │ └── iodine.mk │ ├── iostat │ │ ├── 0001-cpunum.patch │ │ ├── Config.in │ │ ├── iostat.hash │ │ └── iostat.mk │ ├── iotop │ │ ├── 0001-Fix-build-error-with-Python-3.patch │ │ ├── Config.in │ │ ├── iotop.hash │ │ └── iotop.mk │ ├── iozone │ │ ├── 0001-Add-new-targets-for-iozone.patch │ │ ├── Config.in │ │ ├── iozone.hash │ │ └── iozone.mk │ ├── iperf │ │ ├── Config.in │ │ ├── iperf.hash │ │ └── iperf.mk │ ├── iperf3 │ │ ├── Config.in │ │ ├── iperf3.hash │ │ └── iperf3.mk │ ├── ipmitool │ │ ├── 0001-Fix-missing-stddef.h-include.patch │ │ ├── 0002-ID-461-OpenSSL-1.1-compatibility-error-storage-size-.patch │ │ ├── 0003-ID-461-Make-compiler-happier-about-changes-related-t.patch │ │ ├── 0004-ID-480-ipmitool-coredumps-in-EVP_CIPHER_CTX_init.patch │ │ ├── 0005-ID-480-Call-EVP_CIPHER_CTX_free-instead-of-EVP_CIPHE.patch │ │ ├── 0006-lanplus-Fix-compile-with-deprecated-APIs-disabled.patch │ │ ├── Config.in │ │ ├── ipmitool.hash │ │ └── ipmitool.mk │ ├── ipmiutil │ │ ├── 0001-no-build-doc.patch │ │ ├── Config.in │ │ ├── ipmiutil.hash │ │ └── ipmiutil.mk │ ├── iproute2 │ │ ├── Config.in │ │ ├── iproute2.hash │ │ └── iproute2.mk │ ├── iprutils │ │ ├── Config.in │ │ ├── iprutils.hash │ │ └── iprutils.mk │ ├── ipsec-tools │ │ ├── 0001-susv3-legacy.patch │ │ ├── 0002-configure-automake.patch │ │ ├── 0003-Don-t-link-against-libfl.patch │ │ ├── 0004-CVE-2015-4047.patch │ │ ├── 0005-CVE-2016-10396.patch │ │ ├── 0006-openssl-1.1.patch │ │ ├── Config.in │ │ ├── ipsec-tools.hash │ │ └── ipsec-tools.mk │ ├── ipset │ │ ├── Config.in │ │ ├── ipset.hash │ │ └── ipset.mk │ ├── iptables │ │ ├── Config.in │ │ ├── iptables.hash │ │ └── iptables.mk │ ├── iptraf-ng │ │ ├── Config.in │ │ ├── iptraf-ng.hash │ │ └── iptraf-ng.mk │ ├── iputils │ │ ├── 0001-meson.build-fix-static-build-with-libidn2.patch │ │ ├── Config.in │ │ ├── iputils.hash │ │ └── iputils.mk │ ├── irda-utils │ │ ├── 0001-daemon.patch │ │ ├── 0002-nommu.patch │ │ ├── 0003-subdir.patch │ │ ├── 0004-musl.patch │ │ ├── Config.in │ │ ├── irda-utils.hash │ │ └── irda-utils.mk │ ├── irqbalance │ │ ├── Config.in │ │ ├── S13irqbalance │ │ ├── irqbalance.hash │ │ ├── irqbalance.mk │ │ └── irqbalance.service │ ├── irrlicht │ │ ├── 0001-override-CPPFLAGS-CXXFLAGS-and-CFLAGS-in-Makefile.patch │ │ ├── 0002-remove-sys-sysctl.h.patch │ │ ├── Config.in │ │ ├── irrlicht.hash │ │ └── irrlicht.mk │ ├── irssi │ │ ├── Config.in │ │ ├── irssi.hash │ │ └── irssi.mk │ ├── isl │ │ ├── isl.hash │ │ └── isl.mk │ ├── iucode-tool │ │ ├── Config.in │ │ ├── S00iucode-tool │ │ ├── iucode-tool.hash │ │ ├── iucode-tool.mk │ │ └── iucode.service │ ├── iw │ │ ├── Config.in │ │ ├── iw.hash │ │ └── iw.mk │ ├── iwd │ │ ├── Config.in │ │ ├── iwd.hash │ │ └── iwd.mk │ ├── jack1 │ │ ├── Config.in │ │ ├── jack1.hash │ │ └── jack1.mk │ ├── jack2 │ │ ├── Config.in │ │ ├── jack2.hash │ │ └── jack2.mk │ ├── jailhouse │ │ ├── Config.in │ │ ├── jailhouse.hash │ │ └── jailhouse.mk │ ├── jamvm │ │ ├── 0001-Use-fenv.h-when-available-instead-of-fpu_control.h.patch │ │ ├── Config.in │ │ ├── jamvm.hash │ │ └── jamvm.mk │ ├── jansson │ │ ├── Config.in │ │ ├── jansson.hash │ │ └── jansson.mk │ ├── janus-gateway │ │ ├── 0001-disable-ssp.patch │ │ ├── 0002-Add-test-for-Wunused-but-set-variable.patch │ │ ├── Config.in │ │ ├── janus-gateway.hash │ │ └── janus-gateway.mk │ ├── jasper │ │ ├── 0001-verify-data-range-CVE-2018-19541.patch │ │ ├── 0002-check-null-in-jp2_decode-CVE-2018-19542.patch │ │ ├── 0003-test-asclen-CVE-2018-19540.patch │ │ ├── Config.in │ │ ├── jasper.hash │ │ └── jasper.mk │ ├── jemalloc │ │ ├── Config.in │ │ ├── jemalloc.hash │ │ └── jemalloc.mk │ ├── jhead │ │ ├── Config.in │ │ ├── jhead.hash │ │ └── jhead.mk │ ├── jimtcl │ │ ├── Config.in │ │ ├── jimtcl.hash │ │ └── jimtcl.mk │ ├── jitterentropy-library │ │ ├── 0001-Makefile-cleanup-install.patch │ │ ├── 0002-Makefile-add-additional-install-targets.patch │ │ ├── 0003-Makefile-allow-the-user-to-disable-stack-protector.patch │ │ ├── Config.in │ │ ├── jitterentropy-library.hash │ │ └── jitterentropy-library.mk │ ├── jo │ │ ├── Config.in │ │ ├── jo.hash │ │ └── jo.mk │ ├── joe │ │ ├── Config.in │ │ ├── joe.hash │ │ └── joe.mk │ ├── jose │ │ ├── 0001-lib-hsh.c-rename-hsh-local-variable.patch │ │ ├── 0002-configure-fix-build-with-old-compilers.patch │ │ ├── Config.in │ │ ├── jose.hash │ │ └── jose.mk │ ├── jpeg-turbo │ │ ├── jpeg-turbo.hash │ │ └── jpeg-turbo.mk │ ├── jpeg │ │ ├── Config.in │ │ └── jpeg.mk │ ├── jq │ │ ├── Config.in │ │ ├── Config.in.host │ │ ├── jq.hash │ │ └── jq.mk │ ├── jquery-datetimepicker │ │ ├── Config.in │ │ ├── jquery-datetimepicker.hash │ │ └── jquery-datetimepicker.mk │ ├── jquery-keyboard │ │ ├── Config.in │ │ ├── jquery-keyboard.hash │ │ └── jquery-keyboard.mk │ ├── jquery-mobile │ │ ├── Config.in │ │ ├── jquery-mobile.hash │ │ └── jquery-mobile.mk │ ├── jquery-sidebar │ │ ├── Config.in │ │ ├── jquery-sidebar.hash │ │ └── jquery-sidebar.mk │ ├── jquery-sparkline │ │ ├── Config.in │ │ ├── jquery-sparkline.hash │ │ └── jquery-sparkline.mk │ ├── jquery-ui-themes │ │ ├── Config.in │ │ ├── jquery-ui-themes.hash │ │ └── jquery-ui-themes.mk │ ├── jquery-ui │ │ ├── Config.in │ │ ├── jquery-ui.hash │ │ └── jquery-ui.mk │ ├── jquery-validation │ │ ├── Config.in │ │ ├── jquery-validation.hash │ │ └── jquery-validation.mk │ ├── jquery │ │ ├── Config.in │ │ ├── jquery.hash │ │ └── jquery.mk │ ├── jsmin │ │ ├── Config.in │ │ ├── Config.in.host │ │ ├── jsmin.hash │ │ └── jsmin.mk │ ├── jsmn │ │ ├── Config.in │ │ ├── jsmn.hash │ │ └── jsmn.mk │ ├── json-c │ │ ├── Config.in │ │ ├── json-c.hash │ │ └── json-c.mk │ ├── json-for-modern-cpp │ │ ├── Config.in │ │ ├── json-for-modern-cpp.hash │ │ └── json-for-modern-cpp.mk │ ├── json-glib │ │ ├── Config.in │ │ ├── json-glib.hash │ │ └── json-glib.mk │ ├── json-javascript │ │ ├── Config.in │ │ ├── json-javascript.hash │ │ └── json-javascript.mk │ ├── jsoncpp │ │ ├── 0001-Meson-updates.patch │ │ ├── Config.in │ │ ├── jsoncpp.hash │ │ └── jsoncpp.mk │ ├── kbd │ │ ├── Config.in │ │ ├── kbd.hash │ │ └── kbd.mk │ ├── keepalived │ │ ├── 0001-Ensure-that-lm-linker-library-flag-is-always-set.patch │ │ ├── Config.in │ │ ├── keepalived.hash │ │ └── keepalived.mk │ ├── kexec-lite │ │ ├── 0001-clean-restart.patch │ │ ├── Config.in │ │ ├── kexec-lite.hash │ │ └── kexec-lite.mk │ ├── kexec │ │ ├── Config.in │ │ ├── kexec.hash │ │ └── kexec.mk │ ├── keyutils │ │ ├── 0001-fix-install-rule.patch │ │ ├── 0002-cifs.patch │ │ ├── Config.in │ │ ├── keyutils.hash │ │ └── keyutils.mk │ ├── kf5 │ │ ├── Config.in │ │ ├── kf5-extra-cmake-modules │ │ │ ├── Config.in │ │ │ ├── kf5-extra-cmake-modules.hash │ │ │ └── kf5-extra-cmake-modules.mk │ │ ├── kf5-kcoreaddons │ │ │ ├── Config.in │ │ │ ├── kf5-kcoreaddons.hash │ │ │ └── kf5-kcoreaddons.mk │ │ ├── kf5-modemmanager-qt │ │ │ ├── Config.in │ │ │ ├── kf5-modemmanager-qt.hash │ │ │ └── kf5-modemmanager-qt.mk │ │ ├── kf5-networkmanager-qt │ │ │ ├── Config.in │ │ │ ├── kf5-networkmanager-qt.hash │ │ │ └── kf5-networkmanager-qt.mk │ │ └── kf5.mk │ ├── kismet │ │ ├── 0001-ncurses.patch │ │ ├── 0002-nobsd.patch │ │ ├── 0003-fix-curses-libs-ordering.patch │ │ ├── 0004-no-include-host-paths.patch │ │ ├── 0005-dumpfile_tuntap-don-t-include-linux-if_tun.h-kernel-.patch │ │ ├── Config.in │ │ ├── kismet.hash │ │ └── kismet.mk │ ├── kmod │ │ ├── 0001-fix-O_CLOEXEC.patch │ │ ├── 0002-Do-not-check-for-undefined-symbols-when-building-the.patch │ │ ├── 0003-Makefile.am-filter-Wl-no-undefined.patch │ │ ├── Config.in │ │ ├── kmod.hash │ │ └── kmod.mk │ ├── kmscube │ │ ├── Config.in │ │ ├── kmscube.hash │ │ └── kmscube.mk │ ├── kmsxx │ │ ├── Config.in │ │ ├── kmsxx.hash │ │ └── kmsxx.mk │ ├── knock │ │ ├── Config.in │ │ ├── knock.hash │ │ └── knock.mk │ ├── kodi-audiodecoder-modplug │ │ ├── Config.in │ │ ├── kodi-audiodecoder-modplug.hash │ │ └── kodi-audiodecoder-modplug.mk │ ├── kodi-audiodecoder-nosefart │ │ ├── Config.in │ │ ├── kodi-audiodecoder-nosefart.hash │ │ └── kodi-audiodecoder-nosefart.mk │ ├── kodi-audiodecoder-sidplay │ │ ├── Config.in │ │ ├── kodi-audiodecoder-sidplay.hash │ │ └── kodi-audiodecoder-sidplay.mk │ ├── kodi-audiodecoder-snesapu │ │ ├── Config.in │ │ ├── kodi-audiodecoder-snesapu.hash │ │ └── kodi-audiodecoder-snesapu.mk │ ├── kodi-audiodecoder-stsound │ │ ├── Config.in │ │ ├── kodi-audiodecoder-stsound.hash │ │ └── kodi-audiodecoder-stsound.mk │ ├── kodi-audiodecoder-timidity │ │ ├── Config.in │ │ ├── kodi-audiodecoder-timidity.hash │ │ └── kodi-audiodecoder-timidity.mk │ ├── kodi-audiodecoder-vgmstream │ │ ├── Config.in │ │ ├── kodi-audiodecoder-vgmstream.hash │ │ └── kodi-audiodecoder-vgmstream.mk │ ├── kodi-audioencoder-flac │ │ ├── Config.in │ │ ├── kodi-audioencoder-flac.hash │ │ └── kodi-audioencoder-flac.mk │ ├── kodi-audioencoder-lame │ │ ├── Config.in │ │ ├── kodi-audioencoder-lame.hash │ │ └── kodi-audioencoder-lame.mk │ ├── kodi-audioencoder-vorbis │ │ ├── Config.in │ │ ├── kodi-audioencoder-vorbis.hash │ │ └── kodi-audioencoder-vorbis.mk │ ├── kodi-audioencoder-wav │ │ ├── Config.in │ │ ├── kodi-audioencoder-wav.hash │ │ └── kodi-audioencoder-wav.mk │ ├── kodi-inputstream-adaptive │ │ ├── Config.in │ │ ├── kodi-inputstream-adaptive.hash │ │ └── kodi-inputstream-adaptive.mk │ ├── kodi-inputstream-rtmp │ │ ├── Config.in │ │ ├── kodi-inputstream-rtmp.hash │ │ └── kodi-inputstream-rtmp.mk │ ├── kodi-jsonschemabuilder │ │ ├── kodi-jsonschemabuilder.hash │ │ └── kodi-jsonschemabuilder.mk │ ├── kodi-peripheral-joystick │ │ ├── Config.in │ │ ├── kodi-peripheral-joystick.hash │ │ └── kodi-peripheral-joystick.mk │ ├── kodi-peripheral-steamcontroller │ │ ├── Config.in │ │ ├── kodi-peripheral-steamcontroller.hash │ │ └── kodi-peripheral-steamcontroller.mk │ ├── kodi-peripheral-xarcade │ │ ├── Config.in │ │ ├── kodi-peripheral-xarcade.hash │ │ └── kodi-peripheral-xarcade.mk │ ├── kodi-platform │ │ ├── 0001-kodiplatform-config.cmake-fix-for-cross-compilation.patch │ │ ├── Config.in │ │ ├── kodi-platform.hash │ │ └── kodi-platform.mk │ ├── kodi-pvr-argustv │ │ ├── Config.in │ │ ├── kodi-pvr-argustv.hash │ │ └── kodi-pvr-argustv.mk │ ├── kodi-pvr-dvblink │ │ ├── Config.in │ │ ├── kodi-pvr-dvblink.hash │ │ └── kodi-pvr-dvblink.mk │ ├── kodi-pvr-dvbviewer │ │ ├── Config.in │ │ ├── kodi-pvr-dvbviewer.hash │ │ └── kodi-pvr-dvbviewer.mk │ ├── kodi-pvr-filmon │ │ ├── Config.in │ │ ├── kodi-pvr-filmon.hash │ │ └── kodi-pvr-filmon.mk │ ├── kodi-pvr-hdhomerun │ │ ├── Config.in │ │ ├── kodi-pvr-hdhomerun.hash │ │ └── kodi-pvr-hdhomerun.mk │ ├── kodi-pvr-hts │ │ ├── Config.in │ │ ├── kodi-pvr-hts.hash │ │ └── kodi-pvr-hts.mk │ ├── kodi-pvr-iptvsimple │ │ ├── Config.in │ │ ├── kodi-pvr-iptvsimple.hash │ │ └── kodi-pvr-iptvsimple.mk │ ├── kodi-pvr-mediaportal-tvserver │ │ ├── Config.in │ │ ├── kodi-pvr-mediaportal-tvserver.hash │ │ └── kodi-pvr-mediaportal-tvserver.mk │ ├── kodi-pvr-mythtv │ │ ├── Config.in │ │ ├── kodi-pvr-mythtv.hash │ │ └── kodi-pvr-mythtv.mk │ ├── kodi-pvr-nextpvr │ │ ├── Config.in │ │ ├── kodi-pvr-nextpvr.hash │ │ └── kodi-pvr-nextpvr.mk │ ├── kodi-pvr-njoy │ │ ├── Config.in │ │ ├── kodi-pvr-njoy.hash │ │ └── kodi-pvr-njoy.mk │ ├── kodi-pvr-pctv │ │ ├── Config.in │ │ ├── kodi-pvr-pctv.hash │ │ └── kodi-pvr-pctv.mk │ ├── kodi-pvr-stalker │ │ ├── Config.in │ │ ├── kodi-pvr-stalker.hash │ │ └── kodi-pvr-stalker.mk │ ├── kodi-pvr-vbox │ │ ├── Config.in │ │ ├── kodi-pvr-vbox.hash │ │ └── kodi-pvr-vbox.mk │ ├── kodi-pvr-vdr-vnsi │ │ ├── Config.in │ │ ├── kodi-pvr-vdr-vnsi.hash │ │ └── kodi-pvr-vdr-vnsi.mk │ ├── kodi-pvr-vuplus │ │ ├── Config.in │ │ ├── kodi-pvr-vuplus.hash │ │ └── kodi-pvr-vuplus.mk │ ├── kodi-pvr-wmc │ │ ├── Config.in │ │ ├── kodi-pvr-wmc.hash │ │ └── kodi-pvr-wmc.mk │ ├── kodi-screensaver-asteroids │ │ ├── Config.in │ │ ├── kodi-screensaver-asteroids.hash │ │ └── kodi-screensaver-asteroids.mk │ ├── kodi-screensaver-asterwave │ │ ├── Config.in │ │ ├── kodi-screensaver-asterwave.hash │ │ └── kodi-screensaver-asterwave.mk │ ├── kodi-screensaver-biogenesis │ │ ├── 0001-Add-missing-stddef-include.patch │ │ ├── Config.in │ │ ├── kodi-screensaver-biogenesis.hash │ │ └── kodi-screensaver-biogenesis.mk │ ├── kodi-screensaver-cpblobs │ │ ├── Config.in │ │ ├── kodi-screensaver-cpblobs.hash │ │ └── kodi-screensaver-cpblobs.mk │ ├── kodi-screensaver-crystalmorph │ │ ├── Config.in │ │ ├── kodi-screensaver-crystalmorph.hash │ │ └── kodi-screensaver-crystalmorph.mk │ ├── kodi-screensaver-greynetic │ │ ├── Config.in │ │ ├── kodi-screensaver-greynetic.hash │ │ └── kodi-screensaver-greynetic.mk │ ├── kodi-screensaver-matrixtrails │ │ ├── 0001-Add-missing-stddef-include.patch │ │ ├── Config.in │ │ ├── kodi-screensaver-matrixtrails.hash │ │ └── kodi-screensaver-matrixtrails.mk │ ├── kodi-screensaver-pingpong │ │ ├── 0001-Backport-Add-missing-cstddef-includes.patch │ │ ├── Config.in │ │ ├── kodi-screensaver-pingpong.hash │ │ └── kodi-screensaver-pingpong.mk │ ├── kodi-screensaver-pyro │ │ ├── 0001-Add-missing-stddef-include.patch │ │ ├── Config.in │ │ ├── kodi-screensaver-pyro.hash │ │ └── kodi-screensaver-pyro.mk │ ├── kodi-screensaver-rsxs │ │ ├── 0001-Disable-drempels.patch │ │ ├── Config.in │ │ ├── kodi-screensaver-rsxs.hash │ │ └── kodi-screensaver-rsxs.mk │ ├── kodi-screensaver-stars │ │ ├── Config.in │ │ ├── kodi-screensaver-stars.hash │ │ └── kodi-screensaver-stars.mk │ ├── kodi-skin-confluence │ │ ├── Config.in │ │ ├── kodi-skin-confluence.hash │ │ └── kodi-skin-confluence.mk │ ├── kodi-texturepacker │ │ ├── 0001-texturepacker.patch │ │ ├── 0002-fix-texture-packer-cmake-source-dir.patch │ │ ├── kodi-texturepacker.hash │ │ └── kodi-texturepacker.mk │ ├── kodi-vfs-rar │ │ ├── Config.in │ │ ├── kodi-vfs-rar.hash │ │ └── kodi-vfs-rar.mk │ ├── kodi-vfs-sftp │ │ ├── Config.in │ │ ├── kodi-vfs-sftp.hash │ │ └── kodi-vfs-sftp.mk │ ├── kodi-visualisation-fishbmc │ │ ├── Config.in │ │ ├── kodi-visualisation-fishbmc.hash │ │ └── kodi-visualisation-fishbmc.mk │ ├── kodi-visualisation-goom │ │ ├── Config.in │ │ ├── kodi-visualisation-goom.hash │ │ └── kodi-visualisation-goom.mk │ ├── kodi-visualisation-shadertoy │ │ ├── Config.in │ │ ├── kodi-visualisation-shadertoy.hash │ │ └── kodi-visualisation-shadertoy.mk │ ├── kodi-visualisation-spectrum │ │ ├── 0001-Backport-Add-missing-cstddef-include.patch │ │ ├── Config.in │ │ ├── kodi-visualisation-spectrum.hash │ │ └── kodi-visualisation-spectrum.mk │ ├── kodi-visualisation-waveform │ │ ├── Config.in │ │ ├── kodi-visualisation-waveform.hash │ │ └── kodi-visualisation-waveform.mk │ ├── kodi │ │ ├── 0001-kodi-config.cmake-use-CMAKE_FIND_ROOT_PATH-to-fix-cr.patch │ │ ├── 0002-Fix-crosscompiling-issues.patch │ │ ├── 0003-Add-missing-cassert-includes.patch │ │ ├── 0004-Backport-Add-missing-cstddef-includes.patch │ │ ├── Config.in │ │ ├── S50kodi │ │ ├── br-kodi │ │ ├── kodi.hash │ │ ├── kodi.mk │ │ └── kodi.service │ ├── kompexsqlite │ │ ├── 0001-Makefile-use-autoconf-CXX-for-proper-builds.patch │ │ ├── 0002-append-to-cflags-and-cxxflags.patch │ │ ├── Config.in │ │ ├── kompexsqlite.hash │ │ └── kompexsqlite.mk │ ├── ktap │ │ ├── Config.in │ │ ├── ktap.hash │ │ └── ktap.mk │ ├── kvazaar │ │ ├── Config.in │ │ ├── kvazaar.hash │ │ └── kvazaar.mk │ ├── kvm-unit-tests │ │ ├── 0001-Makefile-remove-Werror-to-avoid-build-failures.patch │ │ ├── 0002-kvm-unit-tests-test-for-rdseed-rdrand.patch │ │ ├── Config.in │ │ ├── kvm-unit-tests.hash │ │ └── kvm-unit-tests.mk │ ├── kvmtool │ │ ├── Config.in │ │ ├── kvmtool.hash │ │ └── kvmtool.mk │ ├── kyua │ │ ├── Config.in │ │ ├── kyua.hash │ │ └── kyua.mk │ ├── lame │ │ ├── Config.in │ │ ├── lame.hash │ │ └── lame.mk │ ├── lapack │ │ ├── Config.in │ │ ├── lapack.hash │ │ └── lapack.mk │ ├── latencytop │ │ ├── 0001-makefile.patch │ │ ├── Config.in │ │ ├── latencytop.hash │ │ └── latencytop.mk │ ├── lbase64 │ │ ├── 0001-retro-compatible-with-Lua-5.1.patch │ │ ├── Config.in │ │ ├── lbase64.hash │ │ └── lbase64.mk │ ├── lbreakout2 │ │ ├── Config.in │ │ ├── lbreakout2.hash │ │ └── lbreakout2.mk │ ├── lcdapi │ │ ├── Config.in │ │ ├── lcdapi.hash │ │ └── lcdapi.mk │ ├── lcdproc │ │ ├── 0001-Add-missing-ioctl-header.patch │ │ ├── 0001-LCDd.conf.patch │ │ ├── Config.in │ │ ├── lcdproc.hash │ │ └── lcdproc.mk │ ├── lcms2 │ │ ├── 0001-Upgrade-Visual-studio-2017-15.8.patch │ │ ├── Config.in │ │ ├── lcms2.hash │ │ └── lcms2.mk │ ├── leafnode2 │ │ ├── 0001-cross_makefile.patch │ │ ├── Config.in │ │ ├── leafnode2.hash │ │ └── leafnode2.mk │ ├── leafpad │ │ ├── Config.in │ │ ├── leafpad.hash │ │ └── leafpad.mk │ ├── lensfun │ │ ├── Config.in │ │ ├── lensfun.hash │ │ └── lensfun.mk │ ├── leptonica │ │ ├── Config.in │ │ ├── leptonica.hash │ │ └── leptonica.mk │ ├── less │ │ ├── Config.in │ │ ├── less.hash │ │ └── less.mk │ ├── lesstif │ │ ├── Config.in │ │ ├── lesstif.hash │ │ └── lesstif.mk │ ├── let-me-create │ │ ├── 0001-fix-build-with-musl-C-library.patch │ │ ├── Config.in │ │ ├── let-me-create.hash │ │ └── let-me-create.mk │ ├── leveldb │ │ ├── 0001-Fix-compilation-with-g-4.8.2.patch │ │ ├── 0002-CMake-install-libmemenv.a.patch │ │ ├── 0003-CMakeLists.txt-check-for-atomic-library.patch │ │ ├── Config.in │ │ ├── leveldb.hash │ │ └── leveldb.mk │ ├── lft │ │ ├── Config.in │ │ ├── lft.hash │ │ └── lft.mk │ ├── lftp │ │ ├── Config.in │ │ ├── lftp.hash │ │ └── lftp.mk │ ├── libaacs │ │ ├── Config.in │ │ ├── libaacs.hash │ │ └── libaacs.mk │ ├── libaio │ │ ├── 0001-src-Makefile-add-ENABLE_SHARED-boolean-to-allow-stat.patch │ │ ├── 0002-Makefile-add-missing-DESTDIR-variable-use.patch │ │ ├── 0003-Link-against-libgcc-to-avoid-unresolved-symbols.patch │ │ ├── Config.in │ │ ├── libaio.hash │ │ └── libaio.mk │ ├── libao │ │ ├── Config.in │ │ ├── libao.hash │ │ └── libao.mk │ ├── libarchive │ │ ├── Config.in │ │ ├── libarchive.hash │ │ └── libarchive.mk │ ├── libargon2 │ │ ├── 0001-libargon2-dont-fail-on-existing-symlink.patch │ │ ├── Config.in │ │ ├── libargon2.hash │ │ └── libargon2.mk │ ├── libargtable2 │ │ ├── Config.in │ │ ├── libargtable2.hash │ │ └── libargtable2.mk │ ├── libart │ │ ├── 0001-art-config-cross.patch │ │ ├── Config.in │ │ ├── libart.hash │ │ └── libart.mk │ ├── libasplib │ │ ├── 0001-asplib_CPUTimer.h-Fix-time.h-include.patch │ │ ├── Config.in │ │ ├── libasplib.hash │ │ └── libasplib.mk │ ├── libass │ │ ├── Config.in │ │ ├── libass.hash │ │ └── libass.mk │ ├── libassuan │ │ ├── Config.in │ │ ├── libassuan.hash │ │ └── libassuan.mk │ ├── libatasmart │ │ ├── 0001-strpool-cross-flags.patch │ │ ├── Config.in │ │ ├── libatasmart.hash │ │ └── libatasmart.mk │ ├── libatomic_ops │ │ ├── Config.in │ │ ├── libatomic_ops.hash │ │ └── libatomic_ops.mk │ ├── libavl │ │ ├── 0001-fix-makefile.patch │ │ ├── Config.in │ │ ├── libavl.hash │ │ └── libavl.mk │ ├── libb64 │ │ ├── 0001-Integer-overflows.patch │ │ ├── 0002-Initialize-C++-objects.patch │ │ ├── Config.in │ │ ├── libb64.hash │ │ └── libb64.mk │ ├── libbdplus │ │ ├── Config.in │ │ ├── libbdplus.hash │ │ └── libbdplus.mk │ ├── libbluray │ │ ├── Config.in │ │ ├── libbluray.hash │ │ └── libbluray.mk │ ├── libbroadvoice │ │ ├── Config.in │ │ ├── libbroadvoice.hash │ │ └── libbroadvoice.mk │ ├── libbsd │ │ ├── Config.in │ │ ├── libbsd.hash │ │ └── libbsd.mk │ ├── libbson │ │ ├── Config.in │ │ ├── libbson.hash │ │ └── libbson.mk │ ├── libcamera │ │ ├── Config.in │ │ ├── libcamera.hash │ │ └── libcamera.mk │ ├── libcap-ng │ │ ├── 0001-Fix-compilation-without-pthread.h.patch │ │ ├── Config.in │ │ ├── libcap-ng.hash │ │ └── libcap-ng.mk │ ├── libcap │ │ ├── 0001-build-system-fixes-for-cross-compilation.patch │ │ ├── 0002-libcap-split-install-into-install-shared-install-sta.patch │ │ ├── 0003-libcap-cap_file.c-fix-build-with-old-kernel-headers.patch │ │ ├── Config.in │ │ ├── libcap.hash │ │ └── libcap.mk │ ├── libcdaudio │ │ ├── 0001-libcdaudio-enable-autoreconf.patch │ │ ├── Config.in │ │ ├── libcdaudio.hash │ │ └── libcdaudio.mk │ ├── libcddb │ │ ├── Config.in │ │ ├── libcddb.hash │ │ └── libcddb.mk │ ├── libcdio-paranoia │ │ ├── Config.in │ │ ├── libcdio-paranoia.hash │ │ └── libcdio-paranoia.mk │ ├── libcdio │ │ ├── Config.in │ │ ├── libcdio.hash │ │ └── libcdio.mk │ ├── libcec │ │ ├── Config.in │ │ ├── libcec.hash │ │ └── libcec.mk │ ├── libcgi │ │ ├── Config.in │ │ ├── libcgi.hash │ │ └── libcgi.mk │ ├── libcgicc │ │ ├── 0001-disable-documentation-option.patch │ │ ├── Config.in │ │ ├── libcgicc.hash │ │ └── libcgicc.mk │ ├── libcgroup │ │ ├── Config.in │ │ ├── libcgroup.hash │ │ └── libcgroup.mk │ ├── libclc │ │ ├── Config.in │ │ ├── libclc.hash │ │ └── libclc.mk │ ├── libcli │ │ ├── Config.in │ │ ├── libcli.hash │ │ └── libcli.mk │ ├── libcoap │ │ ├── Config.in │ │ ├── libcoap.hash │ │ └── libcoap.mk │ ├── libcodec2 │ │ ├── Config.in │ │ ├── libcodec2.hash │ │ └── libcodec2.mk │ ├── libcofi │ │ ├── Config.in │ │ ├── libcofi.hash │ │ └── libcofi.mk │ ├── libconfig │ │ ├── 0001-Add-disable-doc-option.patch │ │ ├── Config.in │ │ ├── libconfig.hash │ │ └── libconfig.mk │ ├── libconfuse │ │ ├── Config.in │ │ ├── libconfuse.hash │ │ └── libconfuse.mk │ ├── libcorrect │ │ ├── 0001-CMakeLists.txt-conditionally-use-Wpedantic.patch │ │ ├── 0002-CMakeLists.txt-conditionally-use-fsanitize-address.patch │ │ ├── Config.in │ │ ├── libcorrect.hash │ │ └── libcorrect.mk │ ├── libcpprestsdk │ │ ├── 0001-libcpprestsdk-fix-building-as-a-static-library.patch │ │ ├── Config.in │ │ ├── libcpprestsdk.hash │ │ └── libcpprestsdk.mk │ ├── libcroco │ │ ├── Config.in │ │ ├── libcroco.hash │ │ └── libcroco.mk │ ├── libcrossguid │ │ ├── Config.in │ │ ├── libcrossguid.hash │ │ └── libcrossguid.mk │ ├── libcsv │ │ ├── Config.in │ │ ├── libcsv.hash │ │ └── libcsv.mk │ ├── libcue │ │ ├── Config.in │ │ ├── libcue.hash │ │ └── libcue.mk │ ├── libcuefile │ │ ├── 0001-fix-static-link.patch │ │ ├── Config.in │ │ ├── libcuefile.hash │ │ └── libcuefile.mk │ ├── libcurl │ │ ├── Config.in │ │ ├── libcurl.hash │ │ └── libcurl.mk │ ├── libdaemon │ │ ├── 0001-testd-use-unistd-h-instead-of-sys-unistd-h.patch │ │ ├── Config.in │ │ ├── libdaemon.hash │ │ └── libdaemon.mk │ ├── libdcadec │ │ ├── Config.in │ │ ├── libdcadec.hash │ │ └── libdcadec.mk │ ├── libdmtx │ │ ├── Config.in │ │ ├── libdmtx.hash │ │ └── libdmtx.mk │ ├── libdnet │ │ ├── 0001-python-gcc.patch │ │ ├── 0002-python-makefile.patch │ │ ├── Config.in │ │ ├── libdnet.hash │ │ └── libdnet.mk │ ├── libdri2 │ │ ├── Config.in │ │ ├── libdri2.hash │ │ └── libdri2.mk │ ├── libdrm │ │ ├── 0001-Add-ARM-support-into-xf86drm.h.patch │ │ ├── 0002-xf86atomic-require-CAS-support-in-libatomic_ops.patch │ │ ├── 0003-meson.build-fix-intel-atomics-detection.patch │ │ ├── 0004-meson.build-enable-static-build.patch │ │ ├── 0005-tests-meson.build-disable-nouveau-tests-for-static-b.patch │ │ ├── 0006-tests-nouveau-threaded-adapt-ioctl-signature.patch │ │ ├── Config.in │ │ ├── libdrm.hash │ │ └── libdrm.mk │ ├── libdvbcsa │ │ ├── 0001-altivec-powerpc64.patch │ │ ├── Config.in │ │ ├── libdvbcsa.hash │ │ └── libdvbcsa.mk │ ├── libdvbpsi │ │ ├── Config.in │ │ ├── libdvbpsi.hash │ │ └── libdvbpsi.mk │ ├── libdvbsi │ │ ├── Config.in │ │ ├── libdvbsi.hash │ │ └── libdvbsi.mk │ ├── libdvdcss │ │ ├── Config.in │ │ ├── libdvdcss.hash │ │ └── libdvdcss.mk │ ├── libdvdnav │ │ ├── Config.in │ │ ├── libdvdnav.hash │ │ └── libdvdnav.mk │ ├── libdvdread │ │ ├── Config.in │ │ ├── libdvdread.hash │ │ └── libdvdread.mk │ ├── libeXosip2 │ │ ├── 0001-use-pkg-config-to-detect-openssl.patch │ │ ├── Config.in │ │ ├── libeXosip2.hash │ │ └── libeXosip2.mk │ ├── libeastl │ │ ├── Config.in │ │ ├── libeastl.hash │ │ └── libeastl.mk │ ├── libebml │ │ ├── Config.in │ │ ├── libebml.hash │ │ └── libebml.mk │ ├── libebur128 │ │ ├── Config.in │ │ ├── libebur128.hash │ │ └── libebur128.mk │ ├── libedit │ │ ├── 0001-check-bsd-functions-in-libbsd.patch │ │ ├── Config.in │ │ ├── libedit.hash │ │ └── libedit.mk │ ├── libee │ │ ├── Config.in │ │ ├── libee.hash │ │ └── libee.mk │ ├── libenca │ │ ├── Config.in │ │ ├── libenca.hash │ │ └── libenca.mk │ ├── libepoxy │ │ ├── Config.in │ │ ├── libepoxy.hash │ │ └── libepoxy.mk │ ├── liberation │ │ ├── Config.in │ │ ├── liberation.hash │ │ └── liberation.mk │ ├── libesmtp │ │ ├── Config.in │ │ ├── libesmtp.hash │ │ └── libesmtp.mk │ ├── libestr │ │ ├── Config.in │ │ ├── libestr.hash │ │ └── libestr.mk │ ├── libev │ │ ├── Config.in │ │ ├── libev.hash │ │ └── libev.mk │ ├── libevdev │ │ ├── 0001-configure-add-disable-runtime-tests-option.patch │ │ ├── Config.in │ │ ├── libevdev.hash │ │ └── libevdev.mk │ ├── libevent │ │ ├── Config.in │ │ ├── libevent.hash │ │ └── libevent.mk │ ├── libexif │ │ ├── 0001-fixes-some-not-all-buffer-overreads-during-decoding-.patch │ │ ├── 0002-On-saving-makernotes-make-sure-the-makernote-contain.patch │ │ ├── 0003-Reduce-maximum-recursion-depth-in-exif_data_load_dat.patch │ │ ├── 0004-Improve-deep-recursion-detection-in-exif_data_load_d.patch │ │ ├── 0005-fix-CVE-2019-9278.patch │ │ ├── Config.in │ │ ├── libexif.hash │ │ └── libexif.mk │ ├── libfastjson │ │ ├── Config.in │ │ ├── libfastjson.hash │ │ └── libfastjson.mk │ ├── libfcgi │ │ ├── 0001-link-against-math.patch │ │ ├── 0002-disable-examples.patch │ │ ├── Config.in │ │ ├── libfcgi.hash │ │ └── libfcgi.mk │ ├── libffi │ │ ├── 0001-Fix-installation-location-of-libffi.patch │ │ ├── 0002-Fix-use-of-compact-eh-frames-on-MIPS.patch │ │ ├── 0003-libffi-enable-hardfloat-in-the-MIPS-assembly-code.patch │ │ ├── 0004-ffi_powerpc.h-fix-build-failure-with-powerpc7.patch │ │ ├── 0005-powerpc-fix-build-failure-on-power7-and-older.patch │ │ ├── 0006-Address-platforms-with-no-__int128.patch │ │ ├── 0007-powerpc64-Use-memcpy-to-help-platforms-with-no-__int128.patch │ │ ├── Config.in │ │ ├── libffi.hash │ │ └── libffi.mk │ ├── libfm-extra │ │ ├── Config.in │ │ ├── libfm-extra.hash │ │ └── libfm-extra.mk │ ├── libfm │ │ ├── 0001-modules-fix-cross-compilation.patch │ │ ├── Config.in │ │ ├── libfm.hash │ │ └── libfm.mk │ ├── libfreefare │ │ ├── Config.in │ │ ├── libfreefare.hash │ │ └── libfreefare.mk │ ├── libfreeglut │ │ ├── Config.in │ │ ├── libfreeglut.hash │ │ └── libfreeglut.mk │ ├── libfreeimage │ │ ├── 0001-no-root-install.patch │ │ ├── 0002-fix-cpuid-x86.patch │ │ ├── 0003-fix-big-endian-os.patch │ │ ├── Config.in │ │ ├── libfreeimage.hash │ │ └── libfreeimage.mk │ ├── libfribidi │ │ ├── 0001-Truncate-isolate_level-to-FRIBIDI_BIDI_MAX_EXPLICIT_.patch │ │ ├── Config.in │ │ ├── libfribidi.hash │ │ └── libfribidi.mk │ ├── libftdi │ │ ├── 0001_pkgconfig_libusb.patch │ │ ├── 0002-libftdi.pc-requires-libusb-fix-static-build.patch │ │ ├── Config.in │ │ ├── libftdi.hash │ │ └── libftdi.mk │ ├── libftdi1 │ │ ├── 0001-cmake-use-the-standard-CMake-flag-to-drive-the-share.patch │ │ ├── 0002-cmake-do-not-check-for-g-when-FTDIPP-is-disabled.patch │ │ ├── 0003-cmake-find-swig.patch │ │ ├── 0004-CMake-reorder-Python-detection.patch │ │ ├── Config.in │ │ ├── libftdi1.hash │ │ └── libftdi1.mk │ ├── libfuse │ │ ├── 0001-fix-aarch64-build.patch │ │ ├── Config.in │ │ ├── libfuse.hash │ │ └── libfuse.mk │ ├── libg7221 │ │ ├── Config.in │ │ ├── libg7221.hash │ │ └── libg7221.mk │ ├── libgcrypt │ │ ├── 0001-build-Don-t-default-to-underscore-yes-for-cross-buil.patch │ │ ├── 0002-configure.ac-add-an-option-to-disable-tests.patch │ │ ├── Config.in │ │ ├── libgcrypt.hash │ │ └── libgcrypt.mk │ ├── libgdiplus │ │ ├── 0001-Embed-the-license-texts-in-LICENSE-like-on-Mono-repo.patch │ │ ├── 0002-Update-LICENSE-to-match-the-headers-of-the-source-fi.patch │ │ ├── Config.in │ │ ├── libgdiplus.hash │ │ └── libgdiplus.mk │ ├── libgee │ │ ├── Config.in │ │ ├── libgee.hash │ │ └── libgee.mk │ ├── libgeotiff │ │ ├── 0001-Use-pkg-config-for-libtiff-detection.patch │ │ ├── 0002-configure.ac-use-pkg-config-to-find-proj-dependency.patch │ │ ├── Config.in │ │ ├── libgeotiff.hash │ │ └── libgeotiff.mk │ ├── libgit2 │ │ ├── Config.in │ │ ├── libgit2.hash │ │ └── libgit2.mk │ ├── libglade │ │ ├── Config.in │ │ ├── libglade.hash │ │ └── libglade.mk │ ├── libglew │ │ ├── Config.in │ │ ├── libglew.hash │ │ └── libglew.mk │ ├── libglfw │ │ ├── Config.in │ │ ├── libglfw.hash │ │ └── libglfw.mk │ ├── libglib2 │ │ ├── 0001-fix-compile-time-atomic-detection.patch │ │ ├── 0002-allow-explicit-disabling-of-tests.patch │ │ ├── 0003-remove-cpp-requirement.patch │ │ ├── 0004-Add-Wno-format-nonliteral-to-compiler-arguments.patch │ │ ├── Config.in │ │ ├── libglib2.hash │ │ └── libglib2.mk │ ├── libglob │ │ ├── Config.in │ │ ├── libglob.hash │ │ └── libglob.mk │ ├── libglu │ │ ├── Config.in │ │ ├── libglu.hash │ │ └── libglu.mk │ ├── libgpg-error │ │ ├── 0001-gawk5-support.patch │ │ ├── Config.in │ │ ├── libgpg-error.hash │ │ └── libgpg-error.mk │ ├── libgpgme │ │ ├── Config.in │ │ ├── libgpgme.hash │ │ └── libgpgme.mk │ ├── libgphoto2 │ │ ├── Config.in │ │ ├── libgphoto2.hash │ │ └── libgphoto2.mk │ ├── libgpiod │ │ ├── Config.in │ │ ├── libgpiod.hash │ │ └── libgpiod.mk │ ├── libgsasl │ │ ├── Config.in │ │ ├── libgsasl.hash │ │ └── libgsasl.mk │ ├── libgsm │ │ ├── 0001-misc-fixes-from-archlinux.patch │ │ ├── Config.in │ │ ├── libgsm.hash │ │ └── libgsm.mk │ ├── libgta │ │ ├── Config.in │ │ ├── libgta.hash │ │ └── libgta.mk │ ├── libgtk2 │ │ ├── 0001-reduce-dependencies.patch │ │ ├── Config.in │ │ ├── libgtk2.hash │ │ └── libgtk2.mk │ ├── libgtk3 │ │ ├── 0001-no-gtk-doc.patch │ │ ├── 0002-fix-introspection-check.patch │ │ ├── 0003-disable-atk-bridge.patch │ │ ├── 0004-Remove-Gdk-dependency-from-gtk-encode-symbolic-svg.patch │ │ ├── Config.in │ │ ├── libgtk3.hash │ │ └── libgtk3.mk │ ├── libgudev │ │ ├── Config.in │ │ ├── libgudev.hash │ │ └── libgudev.mk │ ├── libhdhomerun │ │ ├── 0001-dont-strip.patch │ │ ├── Config.in │ │ ├── libhdhomerun.hash │ │ └── libhdhomerun.mk │ ├── libhid │ │ ├── 0001-dont-fiddle-with-debug-flags.patch │ │ ├── 0002-no-newline-in-ldflags.patch │ │ ├── 0003-uclinux.patch │ │ ├── Config.in │ │ ├── libhid.hash │ │ └── libhid.mk │ ├── libhtp │ │ ├── 0001-fix-build-without-GNU-libiconv.patch │ │ ├── 0002-htp.pc.in-add-lz-to-Libs.private.patch │ │ ├── Config.in │ │ ├── libhtp.hash │ │ └── libhtp.mk │ ├── libhttpparser │ │ ├── 0001-Use-f-option-when-calling-ln-at-install-time.patch │ │ ├── Config.in │ │ ├── libhttpparser.hash │ │ └── libhttpparser.mk │ ├── libhttpserver │ │ ├── 0001-Fix-lib-expectations-in-libhttpserver.pc.in.patch │ │ ├── Config.in │ │ ├── libhttpserver.hash │ │ └── libhttpserver.mk │ ├── libical │ │ ├── 0001-no-tests.patch │ │ ├── Config.in │ │ ├── libical.hash │ │ └── libical.mk │ ├── libiconv │ │ ├── Config.in │ │ ├── libiconv.hash │ │ └── libiconv.mk │ ├── libid3tag │ │ ├── 0001-configure-automake-foreign.patch │ │ ├── Config.in │ │ ├── id3tag.pc │ │ ├── libid3tag.hash │ │ └── libid3tag.mk │ ├── libidn │ │ ├── Config.in │ │ ├── libidn.hash │ │ └── libidn.mk │ ├── libidn2 │ │ ├── Config.in │ │ ├── libidn2.hash │ │ └── libidn2.mk │ ├── libiio │ │ ├── 0001-fix-install-of-binaries-with-a-static-only-library.patch │ │ ├── Config.in │ │ ├── S99iiod │ │ ├── libiio.hash │ │ └── libiio.mk │ ├── libilbc │ │ ├── Config.in │ │ ├── libilbc.hash │ │ └── libilbc.mk │ ├── libimxvpuapi │ │ ├── Config.in │ │ ├── libimxvpuapi.hash │ │ └── libimxvpuapi.mk │ ├── libinput │ │ ├── Config.in │ │ ├── libinput.hash │ │ └── libinput.mk │ ├── libiqrf │ │ ├── 0001-cmake-handle-static-library-and-find-required-thread.patch │ │ ├── 0002-use-only-c-language.patch │ │ ├── Config.in │ │ ├── libiqrf.hash │ │ └── libiqrf.mk │ ├── libiscsi │ │ ├── Config.in │ │ ├── libiscsi.hash │ │ └── libiscsi.mk │ ├── libite │ │ ├── Config.in │ │ ├── libite.hash │ │ └── libite.mk │ ├── libjpeg │ │ ├── libjpeg.hash │ │ ├── libjpeg.mk │ │ └── libjpeg.pc.in │ ├── libjson │ │ ├── 0001-fix-broken-makefile.patch │ │ ├── Config.in │ │ ├── libjson.hash │ │ └── libjson.mk │ ├── libkcapi │ │ ├── Config.in │ │ ├── libkcapi.hash │ │ └── libkcapi.mk │ ├── libkrb5 │ │ ├── Config.in │ │ ├── libkrb5.hash │ │ └── libkrb5.mk │ ├── libksba │ │ ├── Config.in │ │ ├── libksba.hash │ │ └── libksba.mk │ ├── libldns │ │ ├── Config.in │ │ ├── libldns.hash │ │ └── libldns.mk │ ├── liblinear │ │ ├── 0001-blas-don-t-overwrite-ar-options.patch │ │ ├── 0002-build-static-lib.patch │ │ ├── Config.in │ │ ├── liblinear.hash │ │ └── liblinear.mk │ ├── libllcp │ │ ├── Config.in │ │ ├── libllcp.hash │ │ └── libllcp.mk │ ├── liblo │ │ ├── Config.in │ │ ├── liblo.hash │ │ └── liblo.mk │ ├── liblockfile │ │ ├── 0001-install.patch │ │ ├── Config.in │ │ ├── liblockfile.hash │ │ └── liblockfile.mk │ ├── liblog4c-localtime │ │ ├── 0001-log4c.m4-fix-underquoted-definition-of-AM_PATH_LOG4C.patch │ │ ├── 0002-Fix-linking-error-without-pthread.patch │ │ ├── 0003-Fix-debug-mode-build-with-uClibc.patch │ │ ├── 0004-Add-AC_CONFIG_MACRO_DIR-to-configure.in.patch │ │ ├── 0005-Fix-C-support.patch │ │ ├── Config.in │ │ ├── liblog4c-localtime.hash │ │ └── liblog4c-localtime.mk │ ├── liblogging │ │ ├── Config.in │ │ ├── liblogging.hash │ │ └── liblogging.mk │ ├── libloki │ │ ├── 0001-allow-to-install-to-a-specific-location-using-DESTDI.patch │ │ ├── 0002-use-ln-snf.patch │ │ ├── Config.in │ │ ├── libloki.hash │ │ └── libloki.mk │ ├── libmad │ │ ├── 0001-mips-h-constraint-removal.patch │ │ ├── 0003-remove-deprecated-cflags.patch │ │ ├── 0004-thumb2-fixed-arm.patch │ │ ├── 0005-thumb2-imdct-arm.patch │ │ ├── 0006-configure-ac-automake-foreign.patch │ │ ├── Config.in │ │ ├── libmad.hash │ │ ├── libmad.mk │ │ └── mad.pc │ ├── libmatroska │ │ ├── Config.in │ │ ├── libmatroska.hash │ │ └── libmatroska.mk │ ├── libmaxminddb │ │ ├── Config.in │ │ ├── libmaxminddb.hash │ │ └── libmaxminddb.mk │ ├── libmbim │ │ ├── Config.in │ │ ├── libmbim.hash │ │ └── libmbim.mk │ ├── libmbus │ │ ├── Config.in │ │ ├── libmbus.hash │ │ └── libmbus.mk │ ├── libmcrypt │ │ ├── 0001-nocxx.patch │ │ ├── Config.in │ │ ├── libmcrypt.hash │ │ └── libmcrypt.mk │ ├── libmediaart │ │ ├── Config.in │ │ ├── libmediaart.hash │ │ └── libmediaart.mk │ ├── libmemcached │ │ ├── 0001-disable-tests.patch │ │ ├── 0002-disable-sanitizer.patch │ │ ├── 0003-move-ac_config_aux_dir.patch │ │ ├── 0004-disable-doc-and-man.patch │ │ ├── 0005-fix-pointer-comparaison.patch │ │ ├── Config.in │ │ ├── libmemcached.hash │ │ └── libmemcached.mk │ ├── libmhash │ │ ├── Config.in │ │ ├── libmhash.hash │ │ └── libmhash.mk │ ├── libmicrohttpd │ │ ├── Config.in │ │ ├── libmicrohttpd.hash │ │ └── libmicrohttpd.mk │ ├── libminiupnpc │ │ ├── Config.in │ │ ├── libminiupnpc.hash │ │ └── libminiupnpc.mk │ ├── libmms │ │ ├── Config.in │ │ ├── libmms.hash │ │ └── libmms.mk │ ├── libmng │ │ ├── 0001-jpeg-9a.patch │ │ ├── Config.in │ │ ├── libmng.hash │ │ └── libmng.mk │ ├── libmnl │ │ ├── Config.in │ │ ├── libmnl.hash │ │ └── libmnl.mk │ ├── libmodbus │ │ ├── Config.in │ │ ├── libmodbus.hash │ │ └── libmodbus.mk │ ├── libmodplug │ │ ├── Config.in │ │ ├── libmodplug.hash │ │ └── libmodplug.mk │ ├── libmodsecurity │ │ ├── 0001-Fail-when-CANONICAL_HOST-cannot-be-determined.patch │ │ ├── 0002-test-for-uClinux-in-configure-script.patch │ │ ├── Config.in │ │ ├── libmodsecurity.hash │ │ └── libmodsecurity.mk │ ├── libmpd │ │ ├── 0001-Fix-build-on-archlinux-missing-include.patch │ │ ├── Config.in │ │ ├── libmpd.hash │ │ └── libmpd.mk │ ├── libmpdclient │ │ ├── Config.in │ │ ├── libmpdclient.hash │ │ └── libmpdclient.mk │ ├── libmpeg2 │ │ ├── 0001-altivec.patch │ │ ├── 0002-armv4l.patch │ │ ├── 0003-fix-arm-detection.patch │ │ ├── 0004-fix-sparc.patch │ │ ├── Config.in │ │ ├── libmpeg2.hash │ │ └── libmpeg2.mk │ ├── libmspack │ │ ├── Config.in │ │ ├── libmspack.hash │ │ └── libmspack.mk │ ├── libnatpmp │ │ ├── Config.in │ │ ├── libnatpmp.hash │ │ └── libnatpmp.mk │ ├── libndp │ │ ├── 0001-ndptool.c-Fix-musl-build.patch │ │ ├── Config.in │ │ ├── libndp.hash │ │ └── libndp.mk │ ├── libnet │ │ ├── 0001-support-musl-libc.patch │ │ ├── Config.in │ │ ├── libnet.hash │ │ └── libnet.mk │ ├── libnetconf2 │ │ ├── Config.in │ │ ├── libnetconf2.hash │ │ └── libnetconf2.mk │ ├── libnetfilter_acct │ │ ├── Config.in │ │ ├── libnetfilter_acct.hash │ │ └── libnetfilter_acct.mk │ ├── libnetfilter_conntrack │ │ ├── Config.in │ │ ├── libnetfilter_conntrack.hash │ │ └── libnetfilter_conntrack.mk │ ├── libnetfilter_cthelper │ │ ├── 0001-uclinux.patch │ │ ├── Config.in │ │ ├── libnetfilter_cthelper.hash │ │ └── libnetfilter_cthelper.mk │ ├── libnetfilter_cttimeout │ │ ├── 0001-uclinux.patch │ │ ├── Config.in │ │ ├── libnetfilter_cttimeout.hash │ │ └── libnetfilter_cttimeout.mk │ ├── libnetfilter_log │ │ ├── 0001-uclinux.patch │ │ ├── Config.in │ │ ├── libnetfilter_log.hash │ │ └── libnetfilter_log.mk │ ├── libnetfilter_queue │ │ ├── Config.in │ │ ├── libnetfilter_queue.hash │ │ └── libnetfilter_queue.mk │ ├── libnfc │ │ ├── 0001-build-systems-make-example-build-optional.patch │ │ ├── Config.in │ │ ├── libnfc.hash │ │ └── libnfc.mk │ ├── libnfnetlink │ │ ├── 0001-uclinux.patch │ │ ├── 0002-musl.patch │ │ ├── Config.in │ │ ├── libnfnetlink.hash │ │ └── libnfnetlink.mk │ ├── libnfs │ │ ├── 0001-Fix-include-sys-time.h.patch │ │ ├── Config.in │ │ ├── libnfs.hash │ │ └── libnfs.mk │ ├── libnftnl │ │ ├── Config.in │ │ ├── libnftnl.hash │ │ └── libnftnl.mk │ ├── libnice │ │ ├── Config.in │ │ ├── libnice.hash │ │ └── libnice.mk │ ├── libnl │ │ ├── 0001-build-add-Libs.private-field-in-libnl-pkg-config-fil.patch │ │ ├── 0002-Add-musl-workaround-to-the-libc-compat.h-copy.patch │ │ ├── Config.in │ │ ├── libnl.hash │ │ └── libnl.mk │ ├── libnpth │ │ ├── Config.in │ │ ├── libnpth.hash │ │ └── libnpth.mk │ ├── libnspr │ │ ├── Config.in │ │ ├── libnspr.hash │ │ └── libnspr.mk │ ├── libnss │ │ ├── Config.in │ │ ├── libnss.hash │ │ ├── libnss.mk │ │ └── nss.pc.in │ ├── liboauth │ │ ├── 0001-Fixes-build-issue-with-OpenSSL-1.1.0.patch │ │ ├── Config.in │ │ ├── liboauth.hash │ │ └── liboauth.mk │ ├── libogg │ │ ├── Config.in │ │ ├── libogg.hash │ │ └── libogg.mk │ ├── libolm │ │ ├── Config.in │ │ ├── libolm.hash │ │ └── libolm.mk │ ├── libopenh264 │ │ ├── 0001-Add-USE_STACK_PROTECTOR-option.patch │ │ ├── 0002-Adjust-the-mmi-msa-detection-m.patch │ │ ├── Config.in │ │ ├── libopenh264.hash │ │ └── libopenh264.mk │ ├── libopenssl │ │ ├── 0001-Dont-waste-time-building-manpages-if-we-re-not-going.patch │ │ ├── 0002-Reproducible-build-do-not-leak-compiler-path.patch │ │ ├── 0003-Introduce-the-OPENSSL_NO_MADVISE-to-disable-call-to-.patch │ │ ├── Config.in │ │ ├── libopenssl.hash │ │ └── libopenssl.mk │ ├── liboping │ │ ├── 0001-ping_host_add-Decrease-buffer-size-to-make-GCC-s-truncation-check-happy.patch │ │ ├── Config.in │ │ ├── liboping.hash │ │ └── liboping.mk │ ├── libopusenc │ │ ├── Config.in │ │ ├── libopusenc.hash │ │ └── libopusenc.mk │ ├── libosip2 │ │ ├── 0001-fix-bug-report-sr-109133-Heap-buffer-overflow-in-uti.patch │ │ ├── Config.in │ │ ├── libosip2.hash │ │ └── libosip2.mk │ ├── libostree │ │ ├── Config.in │ │ ├── libostree.hash │ │ └── libostree.mk │ ├── libp11 │ │ ├── Config.in │ │ ├── Config.in.host │ │ ├── libp11.hash │ │ └── libp11.mk │ ├── libpagekite │ │ ├── Config.in │ │ ├── libpagekite.hash │ │ └── libpagekite.mk │ ├── libpam-nfc │ │ ├── Config.in │ │ ├── libpam-nfc.hash │ │ └── libpam-nfc.mk │ ├── libpam-radius-auth │ │ ├── Config.in │ │ ├── libpam-radius-auth.hash │ │ └── libpam-radius-auth.mk │ ├── libpam-tacplus │ │ ├── 0001-libtac-lib-magic.c-fix-build-on-uclibc.patch │ │ ├── Config.in │ │ ├── libpam-tacplus.hash │ │ └── libpam-tacplus.mk │ ├── libpcap │ │ ├── Config.in │ │ ├── libpcap.hash │ │ └── libpcap.mk │ ├── libpciaccess │ │ ├── 0001-pciaccess.pc.in-add-Libs.Private.patch │ │ ├── Config.in │ │ ├── libpciaccess.hash │ │ └── libpciaccess.mk │ ├── libpfm4 │ │ ├── Config.in │ │ ├── libpfm4.hash │ │ └── libpfm4.mk │ ├── libphidget │ │ ├── Config.in │ │ ├── libphidget.hash │ │ └── libphidget.mk │ ├── libpjsip │ │ ├── Config.in │ │ ├── libpjsip.hash │ │ └── libpjsip.mk │ ├── libplatform │ │ ├── Config.in │ │ ├── libplatform.hash │ │ └── libplatform.mk │ ├── libplist │ │ ├── Config.in │ │ ├── libplist.hash │ │ └── libplist.mk │ ├── libpng │ │ ├── 0001-Disable-pngfix-and-png-fix-itxt.patch │ │ ├── Config.in │ │ ├── libpng.hash │ │ └── libpng.mk │ ├── libpqxx │ │ ├── Config.in │ │ ├── libpqxx.hash │ │ └── libpqxx.mk │ ├── libpri │ │ ├── Config.in │ │ ├── libpri.hash │ │ └── libpri.mk │ ├── libpthread-stubs │ │ ├── Config.in │ │ ├── libpthread-stubs.hash │ │ └── libpthread-stubs.mk │ ├── libpthsem │ │ ├── 0001-fix-build-on-linux-3.x-host.patch │ │ ├── Config.in │ │ ├── libpthsem.hash │ │ └── libpthsem.mk │ ├── libpwquality │ │ ├── Config.in │ │ ├── libpwquality.hash │ │ └── libpwquality.mk │ ├── libqmi │ │ ├── Config.in │ │ ├── libqmi.hash │ │ └── libqmi.mk │ ├── libqrencode │ │ ├── Config.in │ │ ├── libqrencode.hash │ │ └── libqrencode.mk │ ├── libraw │ │ ├── Config.in │ │ ├── libraw.hash │ │ └── libraw.mk │ ├── libraw1394 │ │ ├── Config.in │ │ ├── libraw1394.hash │ │ └── libraw1394.mk │ ├── libreplaygain │ │ ├── Config.in │ │ ├── libreplaygain.hash │ │ └── libreplaygain.mk │ ├── libressl │ │ ├── Config.in │ │ ├── libressl.hash │ │ └── libressl.mk │ ├── libroxml │ │ ├── Config.in │ │ ├── libroxml.hash │ │ └── libroxml.mk │ ├── librsvg │ │ ├── 0001-librsvg.pc.in-add-libcroco-to-Requires.Private.patch │ │ ├── Config.in │ │ ├── librsvg.hash │ │ └── librsvg.mk │ ├── librsync │ │ ├── 0001-CMakeLists-fix-build-with-old-compilers.patch │ │ ├── 0002-cmake-FindPOPT.cmake-Add-PkgConfig-support.patch │ │ ├── Config.in │ │ ├── librsync.hash │ │ └── librsync.mk │ ├── librtas │ │ ├── Config.in │ │ ├── librtas.hash │ │ └── librtas.mk │ ├── librtlsdr │ │ ├── 0001-disable_shared_library_target_in_build.patch │ │ ├── Config.in │ │ ├── librtlsdr.hash │ │ └── librtlsdr.mk │ ├── libsamplerate │ │ ├── Config.in │ │ ├── libsamplerate.hash │ │ └── libsamplerate.mk │ ├── libscrypt │ │ ├── 0001-Allow-adding-options-to-CFLAGS-and-LDFLAGS-variables.patch │ │ ├── Config.in │ │ ├── libscrypt.hash │ │ └── libscrypt.mk │ ├── libseccomp │ │ ├── 0001-remove-static.patch │ │ ├── 0002-Circumvent-bug-in-uClibc-ng-syscall-on-x86_64-system.patch │ │ ├── Config.in │ │ ├── libseccomp.hash │ │ └── libseccomp.mk │ ├── libsecret │ │ ├── 0001-libsecret.pc-add-Libs.private-field-for-libgcrypt.patch │ │ ├── Config.in │ │ ├── libsecret.hash │ │ └── libsecret.mk │ ├── libselinux │ │ ├── 0001-fix-musl-build.patch │ │ ├── 0003-libselinux-Use-Python-distutils-to-install-SELinux-p.patch │ │ ├── 0004-src-Makefile-don-t-pass-bogus-I-and-L-to-python-setu.patch │ │ ├── 0006-Do-not-use-PYCEXT-and-rely-on-the-installed-file-nam.patch │ │ ├── Config.in │ │ ├── libselinux.hash │ │ └── libselinux.mk │ ├── libsemanage │ │ ├── Config.in │ │ ├── libsemanage.hash │ │ └── libsemanage.mk │ ├── libsepol │ │ ├── 0001-support-static-only.patch │ │ ├── Config.in │ │ ├── libsepol.hash │ │ └── libsepol.mk │ ├── libserial │ │ ├── 0001-SerialPort.cpp-fix-build-when-size_t-is-an-unsigned-.patch │ │ ├── 0002-SerialPort.cpp-don-t-use-high-baudrates-when-not-ava.patch │ │ ├── Config.in │ │ ├── libserial.hash │ │ └── libserial.mk │ ├── libserialport │ │ ├── 0001-uclinux-detection.patch │ │ ├── Config.in │ │ ├── libserialport.hash │ │ └── libserialport.mk │ ├── libsexy │ │ ├── Config.in │ │ ├── libsexy.hash │ │ └── libsexy.mk │ ├── libsha1 │ │ ├── Config.in │ │ ├── libsha1.hash │ │ └── libsha1.mk │ ├── libshairplay │ │ ├── Config.in │ │ ├── libshairplay.hash │ │ └── libshairplay.mk │ ├── libshout │ │ ├── Config.in │ │ ├── libshout.hash │ │ └── libshout.mk │ ├── libsidplay2 │ │ ├── 0001-sidplay2-libs-2.1.1.patch │ │ ├── 0002-pkg-config.patch │ │ ├── 0003-gcc6.patch │ │ ├── Config.in │ │ ├── libsidplay2.hash │ │ └── libsidplay2.mk │ ├── libsigc │ │ ├── Config.in │ │ ├── libsigc.hash │ │ └── libsigc.mk │ ├── libsigrok │ │ ├── Config.in │ │ ├── libsigrok.hash │ │ └── libsigrok.mk │ ├── libsigrokdecode │ │ ├── Config.in │ │ ├── libsigrokdecode.hash │ │ └── libsigrokdecode.mk │ ├── libsigsegv │ │ ├── 0001-Improve-support-for-Linux-RISC-V.patch │ │ ├── 0002-m4-stack-direction-RISC-V-stack-grows-downward.patch │ │ ├── 0003-Improve-support-for-Linux-nds32.patch │ │ ├── 0004-m4-stack-direction-NDS32-stack-grows-downward.patch │ │ ├── Config.in │ │ ├── libsigsegv.hash │ │ └── libsigsegv.mk │ ├── libsilk │ │ ├── Config.in │ │ ├── libsilk.hash │ │ └── libsilk.mk │ ├── libsndfile │ │ ├── 0001-double64_init-Check-psf-sf.channels-against-upper-bo.patch │ │ ├── 0002-Check-MAX_CHANNELS-in-sndfile-deinterleave.patch │ │ ├── 0003-a-ulaw-fix-multiple-buffer-overflows-432.patch │ │ ├── Config.in │ │ ├── libsndfile.hash │ │ └── libsndfile.mk │ ├── libsoc │ │ ├── Config.in │ │ ├── libsoc.hash │ │ └── libsoc.mk │ ├── libsocketcan │ │ ├── Config.in │ │ ├── libsocketcan.hash │ │ └── libsocketcan.mk │ ├── libsodium │ │ ├── Config.in │ │ ├── libsodium.hash │ │ └── libsodium.mk │ ├── libsoil │ │ ├── 0001-fix-makefile.patch │ │ ├── Config.in │ │ ├── libsoil.hash │ │ └── libsoil.mk │ ├── libsoundtouch │ │ ├── Config.in │ │ ├── libsoundtouch.hash │ │ └── libsoundtouch.mk │ ├── libsoup │ │ ├── 0001-Revert-tld-parser-use-Python-3.patch │ │ ├── Config.in │ │ ├── libsoup.hash │ │ └── libsoup.mk │ ├── libsoxr │ │ ├── 0001-Add-Libs.private-for-static-linking.patch │ │ ├── Config.in │ │ ├── libsoxr.hash │ │ └── libsoxr.mk │ ├── libspatialindex │ │ ├── 0001-CMakeLists.txt-don-t-force-the-build-of-a-shared-lib.patch │ │ ├── Config.in │ │ ├── libspatialindex.hash │ │ └── libspatialindex.mk │ ├── libsquish │ │ ├── 0001-Makefile-add-f-option-for-ln-to-remove-existing-dest.patch │ │ ├── Config.in │ │ ├── libsquish.hash │ │ └── libsquish.mk │ ├── libsrtp │ │ ├── Config.in │ │ ├── libsrtp.hash │ │ └── libsrtp.mk │ ├── libss7 │ │ ├── Config.in │ │ ├── libss7.hash │ │ └── libss7.mk │ ├── libssh │ │ ├── Config.in │ │ ├── libssh.hash │ │ └── libssh.mk │ ├── libssh2 │ │ ├── 0001-drop-custom-buildconf-script.patch │ │ ├── 0002-acinclude.m4-add-mbedtls-to-LIBS.patch │ │ ├── Config.in │ │ ├── libssh2.hash │ │ └── libssh2.mk │ ├── libstrophe │ │ ├── 0001-make-autoreconfable.patch │ │ ├── Config.in │ │ ├── libstrophe.hash │ │ └── libstrophe.mk │ ├── libsvg-cairo │ │ ├── Config.in │ │ ├── libsvg-cairo.hash │ │ └── libsvg-cairo.mk │ ├── libsvg │ │ ├── 0001-fix-expat-static-declaration.patch │ │ ├── 0002-Fix-undefined-symbol-png_set_gray_1_2_4_to_8.patch │ │ ├── Config.in │ │ ├── libsvg.hash │ │ └── libsvg.mk │ ├── libsvgtiny │ │ ├── 0001-disable-debug-printfs.patch │ │ ├── 0002-Remove-Werror.patch │ │ ├── 0003-Hopefully-silence-warnings-about-inlines-and-non-inlines-calling-one.patch │ │ ├── 0004-Build-Include-gperf-generated-code-directly.patch │ │ ├── Config.in │ │ ├── libsvgtiny.hash │ │ └── libsvgtiny.mk │ ├── libsysfs │ │ ├── Config.in │ │ ├── libsysfs.hash │ │ └── libsysfs.mk │ ├── libtasn1 │ │ ├── Config.in │ │ ├── libtasn1.hash │ │ └── libtasn1.mk │ ├── libtelnet │ │ ├── 0001-fix-compilation-without-zlib.patch │ │ ├── Config.in │ │ ├── libtelnet.hash │ │ └── libtelnet.mk │ ├── libtheora │ │ ├── 0001-link-libtheoradec.patch │ │ ├── 0002-fix-autoreconf.patch │ │ ├── Config.in │ │ ├── libtheora.hash │ │ └── libtheora.mk │ ├── libtirpc │ │ ├── 0001-Disable-parts-of-TIRPC-requiring-NIS-support.patch │ │ ├── 0003-Automatically-generate-XDR-header-files-from-.x-sour.patch │ │ ├── 0004-Add-more-XDR-files-needed-to-build-rpcbind-on-top-of.patch │ │ ├── Config.in │ │ ├── libtirpc.hash │ │ └── libtirpc.mk │ ├── libtomcrypt │ │ ├── 0001-fix-CVE-2019-17362.patch │ │ ├── Config.in │ │ ├── libtomcrypt.hash │ │ └── libtomcrypt.mk │ ├── libtommath │ │ ├── Config.in │ │ ├── libtommath.hash │ │ └── libtommath.mk │ ├── libtool │ │ ├── Config.in │ │ ├── libtool.hash │ │ └── libtool.mk │ ├── libtorrent-rasterbar │ │ ├── Config.in │ │ ├── libtorrent-rasterbar.hash │ │ └── libtorrent-rasterbar.mk │ ├── libtorrent │ │ ├── 0001-libtorrent.pc.in-add-Libs.Private.patch │ │ ├── Config.in │ │ ├── libtorrent.hash │ │ └── libtorrent.mk │ ├── libtpl │ │ ├── Config.in │ │ ├── libtpl.hash │ │ └── libtpl.mk │ ├── libubootenv │ │ ├── 0001-src-CMakeLists.txt-do-not-force-the-build-of-a-share.patch │ │ ├── Config.in │ │ ├── libubootenv.hash │ │ └── libubootenv.mk │ ├── libubox │ │ ├── Config.in │ │ └── libubox.mk │ ├── libuci │ │ ├── Config.in │ │ ├── libuci.hash │ │ └── libuci.mk │ ├── libucl │ │ ├── Config.in │ │ ├── libucl.hash │ │ └── libucl.mk │ ├── libuecc │ │ ├── Config.in │ │ ├── libuecc.hash │ │ └── libuecc.mk │ ├── libuio │ │ ├── 0001-configure-remove-po-Makefile.in.patch │ │ ├── 0002-fix-build-with-musl.patch │ │ ├── Config.in │ │ ├── libuio.hash │ │ └── libuio.mk │ ├── libunistring │ │ ├── Config.in │ │ ├── libunistring.hash │ │ └── libunistring.mk │ ├── libunwind │ │ ├── 0001-Add-AO_REQUIRE_CAS-to-fix-build-on-ARM-v6.patch │ │ ├── Config.in │ │ ├── libunwind.hash │ │ └── libunwind.mk │ ├── libupnp │ │ ├── Config.in │ │ ├── libupnp.hash │ │ └── libupnp.mk │ ├── libupnp18 │ │ ├── Config.in │ │ ├── libupnp18.hash │ │ └── libupnp18.mk │ ├── libupnpp │ │ ├── Config.in │ │ ├── libupnpp.hash │ │ └── libupnpp.mk │ ├── liburcu │ │ ├── 0001-Only-blacklist-ARM-gcc-4.8.0-and-4.8.1.patch │ │ ├── Config.in │ │ ├── liburcu.hash │ │ └── liburcu.mk │ ├── liburiparser │ │ ├── 0001-CMakeLists.txt-fix-build-without-C.patch │ │ ├── Config.in │ │ ├── liburiparser.hash │ │ └── liburiparser.mk │ ├── libusb-compat │ │ ├── 0001-Use-C99-standard-fixed-width-integer-types-in-usb.h.patch │ │ ├── 0002-fix-a-build-issue-on-linux.patch │ │ ├── Config.in │ │ ├── libusb-compat.hash │ │ └── libusb-compat.mk │ ├── libusb │ │ ├── Config.in │ │ ├── libusb.hash │ │ └── libusb.mk │ ├── libusbgx │ │ ├── 0001-Add-include-of-sys-sysmacro.h.patch │ │ ├── Config.in │ │ ├── libusbgx.hash │ │ └── libusbgx.mk │ ├── libuv │ │ ├── Config.in │ │ ├── libuv.hash │ │ └── libuv.mk │ ├── libv4l │ │ ├── 0001-keymap.h-add-missing-includes-to-fix-musl-build.patch │ │ ├── Config.in │ │ ├── libv4l.hash │ │ └── libv4l.mk │ ├── libva-intel-driver │ │ ├── Config.in │ │ ├── libva-intel-driver.hash │ │ └── libva-intel-driver.mk │ ├── libva-utils │ │ ├── 0001-fix-build-without-x11.patch │ │ ├── Config.in │ │ ├── libva-utils.hash │ │ └── libva-utils.mk │ ├── libva │ │ ├── Config.in │ │ ├── libva.hash │ │ └── libva.mk │ ├── libvdpau │ │ ├── Config.in │ │ ├── libvdpau.hash │ │ └── libvdpau.mk │ ├── libvips │ │ ├── Config.in │ │ ├── libvips.hash │ │ └── libvips.mk │ ├── libvncserver │ │ ├── 0001-CMakeLists.txt-fix-build-without-C.patch │ │ ├── Config.in │ │ ├── libvncserver.hash │ │ └── libvncserver.mk │ ├── libvorbis │ │ ├── 0001-CVE-2017-14160-fix-bounds-check-on-very-low-sample-rates.patch │ │ ├── Config.in │ │ ├── libvorbis.hash │ │ └── libvorbis.mk │ ├── libvpx │ │ ├── 0001-vpx_mem-vpx_mem.h-Fix-compilation-with-uClibc.patch │ │ ├── Config.in │ │ ├── libvpx.hash │ │ └── libvpx.mk │ ├── libwebsock │ │ ├── 0001-Switch-to-use-pkg-config-to-detect-libevent-and-open.patch │ │ ├── 0002-fix-ssl.patch │ │ ├── 0003-fix-incorrect-inline.patch │ │ ├── Config.in │ │ ├── libwebsock.hash │ │ └── libwebsock.mk │ ├── libwebsockets │ │ ├── 0001-CMakeLists-txt-fix-static-build-with-openssl.patch │ │ ├── Config.in │ │ ├── libwebsockets.hash │ │ └── libwebsockets.mk │ ├── libwpe │ │ ├── Config.in │ │ ├── libwpe.hash │ │ └── libwpe.mk │ ├── libxkbcommon │ │ ├── Config.in │ │ ├── libxkbcommon.hash │ │ └── libxkbcommon.mk │ ├── libxml-parser-perl │ │ ├── libxml-parser-perl.hash │ │ └── libxml-parser-perl.mk │ ├── libxml2 │ │ ├── 0001-Fix-infinite-loop-in-xmlStringLenDecodeEntities.patch │ │ ├── Config.in │ │ ├── libxml2.hash │ │ └── libxml2.mk │ ├── libxmlpp │ │ ├── Config.in │ │ ├── libxmlpp.hash │ │ └── libxmlpp.mk │ ├── libxmlrpc │ │ ├── 0001-use-correct-curl-config.patch │ │ ├── Config.in │ │ ├── libxmlrpc.hash │ │ └── libxmlrpc.mk │ ├── libxslt │ │ ├── Config.in │ │ ├── libxslt.hash │ │ └── libxslt.mk │ ├── libyaml │ │ ├── Config.in │ │ ├── libyaml.hash │ │ └── libyaml.mk │ ├── libyang │ │ ├── Config.in │ │ ├── libyang.hash │ │ └── libyang.mk │ ├── libyuv │ │ ├── 0001-i386-sse2.patch │ │ ├── Config.in │ │ ├── libyuv.hash │ │ └── libyuv.mk │ ├── libzip │ │ ├── Config.in │ │ ├── libzip.hash │ │ └── libzip.mk │ ├── libzlib │ │ ├── libzlib.hash │ │ └── libzlib.mk │ ├── lightning │ │ ├── 0001-include-Makefile.am-don-t-install-lightning.h-twice.patch │ │ ├── Config.in │ │ ├── lightning.hash │ │ └── lightning.mk │ ├── lighttpd │ │ ├── 0001-Fix-default-config-file.patch │ │ ├── Config.in │ │ ├── S50lighttpd │ │ ├── lighttpd.hash │ │ ├── lighttpd.mk │ │ └── lighttpd_tmpfiles.conf │ ├── linenoise │ │ ├── Config.in │ │ ├── linenoise.hash │ │ └── linenoise.mk │ ├── linknx │ │ ├── 0001-Link-with-libiconv-if-needed.patch │ │ ├── 0002-configure.ac-always-define-CPPUNIT.patch │ │ ├── 0003-src-Makefile.am-fix-linking-with-log4cpp.patch │ │ ├── Config.in │ │ ├── linknx.hash │ │ └── linknx.mk │ ├── links │ │ ├── Config.in │ │ ├── links.hash │ │ └── links.mk │ ├── linphone │ │ ├── Config.in │ │ ├── linphone.hash │ │ └── linphone.mk │ ├── linux-backports │ │ ├── Config.in │ │ ├── linux-backports.hash │ │ └── linux-backports.mk │ ├── linux-firmware │ │ ├── Config.in │ │ ├── linux-firmware.hash │ │ └── linux-firmware.mk │ ├── linux-fusion │ │ ├── 0001-fix-for-linux-4-and-above.patch │ │ ├── 0002-Fix-mismatched-conversion-spec-and-value-in-printk.patch │ │ ├── 0003-Fix-fusion-Unknown-symbol-tasklist_lock-err-0.patch │ │ ├── 0004-Port-one-one_udp.c-to-Linux-4.1.patch │ │ ├── 40-fusion.rules │ │ ├── Config.in │ │ ├── linux-fusion.hash │ │ └── linux-fusion.mk │ ├── linux-headers │ │ ├── Config.in │ │ ├── Config.in.host │ │ ├── linux-headers.hash │ │ └── linux-headers.mk │ ├── linux-pam │ │ ├── 0001-doc-makefile-am.patch │ │ ├── 0002-build-ignore-pam_rhosts-if-neither-ruserok-nor-ruserok_af-is-available.patch │ │ ├── Config.in │ │ ├── linux-pam.hash │ │ ├── linux-pam.mk │ │ ├── login.pam │ │ └── other.pam │ ├── linux-serial-test │ │ ├── Config.in │ │ ├── linux-serial-test.hash │ │ └── linux-serial-test.mk │ ├── linux-syscall-support │ │ ├── Config.in │ │ ├── linux-syscall-support.hash │ │ └── linux-syscall-support.mk │ ├── linux-tools │ │ ├── Config.in │ │ ├── S10hyperv │ │ ├── hypervfcopyd.service │ │ ├── hypervkvpd.service │ │ ├── hypervvssd.service │ │ ├── linux-tool-cpupower.mk.in │ │ ├── linux-tool-gpio.mk.in │ │ ├── linux-tool-hv.mk.in │ │ ├── linux-tool-iio.mk.in │ │ ├── linux-tool-pci.mk.in │ │ ├── linux-tool-perf.mk.in │ │ ├── linux-tool-selftests.mk.in │ │ ├── linux-tool-tmon.mk.in │ │ └── linux-tools.mk │ ├── linux-zigbee │ │ ├── 0001-test-serial-Remove-test-serial.patch │ │ ├── 0002-addrdb-coord-config-parse.y-add-missing-time.h-inclu.patch │ │ ├── Config.in │ │ ├── linux-zigbee.hash │ │ └── linux-zigbee.mk │ ├── linuxconsoletools │ │ ├── 0001-conditional-build.patch │ │ ├── Config.in │ │ ├── linuxconsoletools.hash │ │ └── linuxconsoletools.mk │ ├── linuxptp │ │ ├── 0001-missing.h-drop-clock_nanosleep-replacement.patch │ │ ├── 0002-fix-building-with-new-kernel-headers.patch │ │ ├── Config.in │ │ ├── S65linuxptp │ │ ├── linuxptp-system-clock.service │ │ ├── linuxptp.cfg │ │ ├── linuxptp.hash │ │ ├── linuxptp.mk │ │ └── linuxptp.service │ ├── liquid-dsp │ │ ├── Config.in │ │ ├── liquid-dsp.hash │ │ └── liquid-dsp.mk │ ├── lirc-tools │ │ ├── 0001-Fix-build-without-Python.patch │ │ ├── 0002-Fix-python-client-cross-compile.patch │ │ ├── 0003-python-pkg-Fix-lirc-version-detection-when-cross-com.patch │ │ ├── Config.in │ │ ├── S25lircd │ │ ├── lirc-tools.hash │ │ └── lirc-tools.mk │ ├── lite │ │ ├── 0001-dfbspy-stat.patch │ │ ├── 0002-no-tests.patch │ │ ├── 0003-pkg-config.patch │ │ ├── Config.in │ │ ├── lite.hash │ │ └── lite.mk │ ├── live555 │ │ ├── 0001-Add-a-pkg-config-file-for-the-shared-libraries.patch │ │ ├── Config.in │ │ ├── live555.hash │ │ └── live555.mk │ ├── ljlinenoise │ │ ├── Config.in │ │ ├── ljlinenoise.hash │ │ └── ljlinenoise.mk │ ├── ljsyscall │ │ ├── Config.in │ │ ├── ljsyscall.hash │ │ └── ljsyscall.mk │ ├── lksctp-tools │ │ ├── Config.in │ │ ├── lksctp-tools.hash │ │ └── lksctp-tools.mk │ ├── lld │ │ ├── Config.in.host │ │ ├── lld.hash │ │ └── lld.mk │ ├── lldpd │ │ ├── Config.in │ │ ├── S60lldpd │ │ ├── lldpd.hash │ │ └── lldpd.mk │ ├── llvm │ │ ├── Config.in │ │ ├── llvm.hash │ │ └── llvm.mk │ ├── lm-sensors │ │ ├── 0001-static-build.patch │ │ ├── 0002-no-host-ldconfig.patch │ │ ├── Config.in │ │ ├── lm-sensors.hash │ │ └── lm-sensors.mk │ ├── lmbench │ │ ├── 0001-scripts-build-use-bin-bash-as-shell.patch │ │ ├── 0002-src-Makefile-add-lmbench-to-list-of-executables.patch │ │ ├── Config.in │ │ ├── lmbench.hash │ │ └── lmbench.mk │ ├── localedef │ │ ├── 2.30-20-g50f20fe506abb8853641006a7b90a81af21d7b91 │ │ │ ├── 0001-HACK-only-build-and-install-localedef.patch │ │ │ ├── 0002-relax-dependency-on-GCC-to-4.8-and-binutils-to-2.24.patch │ │ │ └── localedef.hash │ │ ├── localedef.hash │ │ └── localedef.mk │ ├── lockdev │ │ ├── 0001-Makefile-install-static-library-and-headers-separate.patch │ │ ├── Config.in │ │ ├── lockdev.hash │ │ └── lockdev.mk │ ├── lockfile-progs │ │ ├── 0001-sus3v-legacy.patch │ │ ├── Config.in │ │ ├── lockfile-progs.hash │ │ └── lockfile-progs.mk │ ├── log4cplus │ │ ├── 0001-configure-ac-check-for-libraries-in-C-mode.patch │ │ ├── Config.in │ │ ├── log4cplus.hash │ │ └── log4cplus.mk │ ├── log4cpp │ │ ├── Config.in │ │ ├── log4cpp.hash │ │ └── log4cpp.mk │ ├── log4cxx │ │ ├── 0001-charset-fixes.patch │ │ ├── 0002-missing-includes.patch │ │ ├── 0003-missing-includes.patch │ │ ├── 0004-Applied-patch-for-LOGCXX-400-LOGCXX-404-LOGCXX-402-L.patch │ │ ├── 0005-domtestcase.cpp-fix-narrowing-conversion-compile-err.patch │ │ ├── Config.in │ │ ├── log4cxx.hash │ │ └── log4cxx.mk │ ├── logrotate │ │ ├── Config.in │ │ ├── logrotate.conf │ │ ├── logrotate.hash │ │ └── logrotate.mk │ ├── logsurfer │ │ ├── Config.in │ │ ├── logsurfer.hash │ │ └── logsurfer.mk │ ├── lpc3250loader │ │ ├── Config.in.host │ │ ├── lpc3250loader.hash │ │ └── lpc3250loader.mk │ ├── lpeg │ │ ├── Config.in │ │ ├── lpeg.hash │ │ └── lpeg.mk │ ├── lpty │ │ ├── Config.in │ │ ├── lpty.hash │ │ └── lpty.mk │ ├── lrandom │ │ ├── Config.in │ │ ├── lrandom.hash │ │ └── lrandom.mk │ ├── lrzip │ │ ├── 0001-missing-stdarg.patch │ │ ├── Config.in │ │ ├── lrzip.hash │ │ └── lrzip.mk │ ├── lrzsz │ │ ├── Config.in │ │ ├── lrzsz.hash │ │ └── lrzsz.mk │ ├── lshw │ │ ├── 0001-Makefile-allow-to-pass-additional-LIBS.patch │ │ ├── 0002-Fix-musl-build-basename-is-in-libgen.h.patch │ │ ├── 0003-Fix-use-of-LONG_BIT.patch │ │ ├── Config.in │ │ ├── lshw.hash │ │ └── lshw.mk │ ├── lsof │ │ ├── 0001-makefile.patch │ │ ├── 0002-remove-susvlegacy-funcs.patch │ │ ├── 0003-override-cflags.patch │ │ ├── Config.in │ │ ├── lsof.hash │ │ └── lsof.mk │ ├── lsqlite3 │ │ ├── Config.in │ │ ├── lsqlite3.hash │ │ └── lsqlite3.mk │ ├── lsscsi │ │ ├── Config.in │ │ ├── lsscsi.hash │ │ └── lsscsi.mk │ ├── lsuio │ │ ├── Config.in │ │ ├── lsuio.hash │ │ └── lsuio.mk │ ├── ltp-testsuite │ │ ├── Config.in │ │ ├── ltp-testsuite.hash │ │ └── ltp-testsuite.mk │ ├── ltrace │ │ ├── 0001-arm-plt.patch │ │ ├── 0002-sparc-add-missing-library.h-include.patch │ │ ├── Config.in │ │ ├── ltrace.hash │ │ └── ltrace.mk │ ├── ltris │ │ ├── 0001-fix-gcc5-build.patch │ │ ├── Config.in │ │ ├── ltris.hash │ │ └── ltris.mk │ ├── lttng-babeltrace │ │ ├── 0001-tests-lib-Makefile.am-remove-unneeded-static-flag.patch │ │ ├── Config.in │ │ ├── Config.in.host │ │ ├── lttng-babeltrace.hash │ │ └── lttng-babeltrace.mk │ ├── lttng-libust │ │ ├── Config.in │ │ ├── lttng-libust.hash │ │ └── lttng-libust.mk │ ├── lttng-modules │ │ ├── Config.in │ │ ├── lttng-modules.hash │ │ └── lttng-modules.mk │ ├── lttng-tools │ │ ├── Config.in │ │ ├── lttng-tools.hash │ │ └── lttng-tools.mk │ ├── lua-basexx │ │ ├── Config.in │ │ ├── lua-basexx.hash │ │ └── lua-basexx.mk │ ├── lua-binaryheap │ │ ├── Config.in │ │ ├── lua-binaryheap.hash │ │ └── lua-binaryheap.mk │ ├── lua-bit32 │ │ ├── Config.in │ │ ├── lua-bit32.hash │ │ └── lua-bit32.mk │ ├── lua-cjson │ │ ├── Config.in │ │ ├── lua-cjson.hash │ │ └── lua-cjson.mk │ ├── lua-coat │ │ ├── Config.in │ │ ├── lua-coat.hash │ │ └── lua-coat.mk │ ├── lua-coatpersistent │ │ ├── Config.in │ │ ├── lua-coatpersistent.hash │ │ └── lua-coatpersistent.mk │ ├── lua-codegen │ │ ├── Config.in │ │ ├── lua-codegen.hash │ │ └── lua-codegen.mk │ ├── lua-compat53 │ │ ├── Config.in │ │ ├── lua-compat53.hash │ │ └── lua-compat53.mk │ ├── lua-cqueues │ │ ├── Config.in │ │ ├── lua-cqueues.hash │ │ └── lua-cqueues.mk │ ├── lua-csnappy │ │ ├── Config.in │ │ ├── lua-csnappy.hash │ │ └── lua-csnappy.mk │ ├── lua-curl │ │ ├── Config.in │ │ ├── lua-curl.hash │ │ └── lua-curl.mk │ ├── lua-datafile │ │ ├── Config.in │ │ ├── lua-datafile.hash │ │ └── lua-datafile.mk │ ├── lua-ev │ │ ├── Config.in │ │ ├── lua-ev.hash │ │ └── lua-ev.mk │ ├── lua-fifo │ │ ├── Config.in │ │ ├── lua-fifo.hash │ │ └── lua-fifo.mk │ ├── lua-flu │ │ ├── Config.in │ │ ├── lua-flu.hash │ │ └── lua-flu.mk │ ├── lua-gd │ │ ├── 0001-Protect-declaration-of-LgdImageCreateFromPng-with-GD.patch │ │ ├── Config.in │ │ ├── lua-gd.hash │ │ └── lua-gd.mk │ ├── lua-http │ │ ├── Config.in │ │ ├── lua-http.hash │ │ └── lua-http.mk │ ├── lua-iconv │ │ ├── Config.in │ │ ├── lua-iconv.hash │ │ └── lua-iconv.mk │ ├── lua-livr-extra │ │ ├── Config.in │ │ ├── lua-livr-extra.hash │ │ └── lua-livr-extra.mk │ ├── lua-livr │ │ ├── Config.in │ │ ├── lua-livr.hash │ │ └── lua-livr.mk │ ├── lua-lpeg-patterns │ │ ├── Config.in │ │ ├── lua-lpeg-patterns.hash │ │ └── lua-lpeg-patterns.mk │ ├── lua-lunitx │ │ ├── Config.in │ │ ├── lua-lunitx.hash │ │ └── lua-lunitx.mk │ ├── lua-markdown │ │ ├── Config.in │ │ ├── lua-markdown.hash │ │ └── lua-markdown.mk │ ├── lua-messagepack │ │ ├── Config.in │ │ ├── lua-messagepack.hash │ │ └── lua-messagepack.mk │ ├── lua-msgpack-native │ │ ├── Config.in │ │ ├── lua-msgpack-native.hash │ │ └── lua-msgpack-native.mk │ ├── lua-periphery │ │ ├── Config.in │ │ ├── lua-periphery.hash │ │ └── lua-periphery.mk │ ├── lua-resty-http │ │ ├── Config.in │ │ ├── lua-resty-http.hash │ │ └── lua-resty-http.mk │ ├── lua-rotas │ │ ├── Config.in │ │ ├── lua-rotas.hash │ │ └── lua-rotas.mk │ ├── lua-sailor │ │ ├── Config.in │ │ ├── lua-sailor.hash │ │ └── lua-sailor.mk │ ├── lua-sdl2 │ │ ├── 0001-Do-not-reference-host-directory-for-headers.patch │ │ ├── 0002-CMakeLists-do-not-require-C.patch │ │ ├── Config.in │ │ ├── lua-sdl2.hash │ │ └── lua-sdl2.mk │ ├── lua-silva │ │ ├── Config.in │ │ ├── lua-silva.hash │ │ └── lua-silva.mk │ ├── lua-std-debug │ │ ├── Config.in │ │ ├── lua-std-debug.hash │ │ └── lua-std-debug.mk │ ├── lua-std-normalize │ │ ├── Config.in │ │ ├── lua-std-normalize.hash │ │ └── lua-std-normalize.mk │ ├── lua-stdlib │ │ ├── Config.in │ │ ├── lua-stdlib.hash │ │ └── lua-stdlib.mk │ ├── lua-testmore │ │ ├── Config.in │ │ ├── lua-testmore.hash │ │ └── lua-testmore.mk │ ├── lua-utf8 │ │ ├── Config.in │ │ ├── lua-utf8.hash │ │ └── lua-utf8.mk │ ├── lua-valua │ │ ├── Config.in │ │ ├── lua-valua.hash │ │ └── lua-valua.mk │ ├── lua │ │ ├── 5.1.5 │ │ │ ├── 0001-root-path.patch │ │ │ ├── 0002-shared-libs-for-lua.patch │ │ │ ├── 0011-linenoise.patch │ │ │ └── 0012-fix-reader-at-eoz.patch │ │ ├── 5.3.5 │ │ │ ├── 0001-root-path.patch │ │ │ ├── 0002-shared-libs-for-lua.patch │ │ │ ├── 0003-fix-revision-number.patch │ │ │ └── 0011-linenoise.patch │ │ ├── Config.in │ │ ├── lua.hash │ │ ├── lua.mk │ │ └── lua.pc.in │ ├── luabitop │ │ ├── Config.in │ │ ├── luabitop.hash │ │ └── luabitop.mk │ ├── luadbi-sqlite3 │ │ ├── Config.in │ │ ├── luadbi-sqlite3.hash │ │ └── luadbi-sqlite3.mk │ ├── luadbi │ │ ├── Config.in │ │ ├── luadbi.hash │ │ └── luadbi.mk │ ├── luaexpat │ │ ├── 0001-restore-getcurrentbytecount.patch │ │ ├── Config.in │ │ ├── luaexpat.hash │ │ └── luaexpat.mk │ ├── luaexpatutils │ │ ├── Config.in │ │ ├── luaexpatutils.hash │ │ └── luaexpatutils.mk │ ├── luafilesystem │ │ ├── Config.in │ │ ├── luafilesystem.hash │ │ └── luafilesystem.mk │ ├── luainterpreter │ │ ├── Config.in │ │ └── luainterpreter.mk │ ├── luajit │ │ ├── 0001-no-bin-symlink.patch │ │ ├── 0002-install-inc.patch │ │ ├── Config.in │ │ ├── luajit.hash │ │ └── luajit.mk │ ├── luajson │ │ ├── Config.in │ │ ├── luajson.hash │ │ └── luajson.mk │ ├── lualogging │ │ ├── Config.in │ │ ├── lualogging.hash │ │ └── lualogging.mk │ ├── luaossl │ │ ├── Config.in │ │ ├── luaossl.hash │ │ └── luaossl.mk │ ├── luaposix │ │ ├── Config.in │ │ ├── luaposix.hash │ │ └── luaposix.mk │ ├── luarocks │ │ ├── buildroot.lua │ │ ├── luarocks-br-config.lua │ │ ├── luarocks.hash │ │ └── luarocks.mk │ ├── luasec │ │ ├── Config.in │ │ ├── luasec.hash │ │ └── luasec.mk │ ├── luasocket │ │ ├── Config.in │ │ ├── luasocket.hash │ │ └── luasocket.mk │ ├── luasql-sqlite3 │ │ ├── Config.in │ │ ├── luasql-sqlite3.hash │ │ └── luasql-sqlite3.mk │ ├── luasyslog │ │ ├── 0001-compat-Lua-5.3.patch │ │ ├── Config.in │ │ ├── luasyslog.hash │ │ └── luasyslog.mk │ ├── lugaru │ │ ├── 0001-ImageIO-fix-invalid-conversion.patch │ │ ├── 0002-Fix-mismatched-usage-length-build-fail-on-g.patch │ │ ├── Config.in │ │ ├── lugaru.hash │ │ └── lugaru.mk │ ├── luksmeta │ │ ├── Config.in │ │ ├── luksmeta.hash │ │ └── luksmeta.mk │ ├── lutok │ │ ├── Config.in │ │ ├── lutok.hash │ │ └── lutok.mk │ ├── luv │ │ ├── Config.in │ │ ├── luv.hash │ │ └── luv.mk │ ├── luvi │ │ ├── Config.in │ │ ├── luvi.hash │ │ └── luvi.mk │ ├── lvm2 │ │ ├── 0001-configure-Introduce-enable-symvers-option.patch │ │ ├── 0002-udev-remove-unsupported-options-event-timeout-rule.patch │ │ ├── Config.in │ │ ├── lvm2.hash │ │ └── lvm2.mk │ ├── lxc │ │ ├── 0001-syscall_wrappers-rename-internal-memfd_create-to-mem.patch │ │ ├── 0002-configure.ac-fix-build-on-toolchain-without-SSP.patch │ │ ├── Config.in │ │ ├── lxc.hash │ │ └── lxc.mk │ ├── lynx │ │ ├── Config.in │ │ ├── lynx.hash │ │ └── lynx.mk │ ├── lz4 │ │ ├── Config.in │ │ ├── lz4.hash │ │ └── lz4.mk │ ├── lzip │ │ ├── Config.in │ │ ├── lzip.hash │ │ └── lzip.mk │ ├── lzlib │ │ ├── Config.in │ │ ├── lzlib.hash │ │ └── lzlib.mk │ ├── lzma │ │ ├── 0001-Remove-static-from-LDFLAGS.patch │ │ ├── lzma.hash │ │ └── lzma.mk │ ├── lzo │ │ ├── Config.in │ │ ├── lzo.hash │ │ └── lzo.mk │ ├── lzop │ │ ├── 0001-build-with-gcc6.patch │ │ ├── 0002-use-static-inlines-as-the-external-inline-definition.patch │ │ ├── Config.in │ │ ├── lzop.hash │ │ └── lzop.mk │ ├── m4 │ │ ├── 0001-fflush-adjust-to-glibc-2.28-libio.h-removal.patch │ │ ├── 0002-fflush-be-more-paranoid-about-libio.h-change.patch │ │ ├── 0003-fix-sigstksz.patch │ │ ├── m4.hash │ │ └── m4.mk │ ├── macchanger │ │ ├── 0001-Fix-missing-include-for-caddr_t.patch │ │ ├── Config.in │ │ ├── macchanger.hash │ │ └── macchanger.mk │ ├── madplay │ │ ├── 0001-switch-to-new-alsa-api.patch │ │ ├── 0002-configure-ac-automake-foreign.patch │ │ ├── 0003-configure-ac-use-pkg-config-to-find-id3tag.patch │ │ ├── 0004-configure-ac-call-AM_MKINSTALLDIRS.patch │ │ ├── Config.in │ │ ├── madplay.hash │ │ └── madplay.mk │ ├── make │ │ ├── 0001-configure.ac-Support-GLIBC-glob-interface-version-2.patch │ │ ├── 0001-glob-Do-not-assume-glibc-glob-internals.patch │ │ ├── Config.in │ │ ├── make.hash │ │ └── make.mk │ ├── makedevs │ │ ├── README │ │ ├── makedevs.c │ │ └── makedevs.mk │ ├── mali-t76x │ │ ├── Config.in │ │ ├── egl.pc │ │ ├── glesv2.pc │ │ ├── mali-t76x.hash │ │ └── mali-t76x.mk │ ├── mariadb │ │ ├── 0001-add-extra-check-for-librt.patch │ │ ├── S97mysqld │ │ ├── mariadb.hash │ │ ├── mariadb.mk │ │ └── mysqld.service │ ├── matchbox-common │ │ ├── Config.in │ │ ├── matchbox-common.hash │ │ └── matchbox-common.mk │ ├── matchbox-desktop │ │ ├── Config.in │ │ ├── matchbox-desktop.hash │ │ └── matchbox-desktop.mk │ ├── matchbox-fakekey │ │ ├── Config.in │ │ ├── matchbox-fakekey.hash │ │ └── matchbox-fakekey.mk │ ├── matchbox-keyboard │ │ ├── Config.in │ │ ├── matchbox-keyboard.hash │ │ ├── matchbox-keyboard.mk │ │ └── mb-applet-kbd-wrapper.sh │ ├── matchbox-lib │ │ ├── 0001-index-is-legacy.patch │ │ ├── 0002-libpng15.patch │ │ ├── 0003-include-setjmp-h.patch │ │ ├── Config.in │ │ ├── matchbox-lib.hash │ │ └── matchbox-lib.mk │ ├── matchbox-panel │ │ ├── 0001-index-is-legacy.patch │ │ ├── 0002-mb-applet-wireless.patch │ │ ├── 0003-mb-applet-battery.patch │ │ ├── Config.in │ │ ├── matchbox-panel.hash │ │ └── matchbox-panel.mk │ ├── matchbox-startup-monitor │ │ ├── 0001-true-false.patch │ │ ├── Config.in │ │ ├── matchbox-startup-monitor.hash │ │ └── matchbox-startup-monitor.mk │ ├── matchbox │ │ ├── 0001-defaulttheme.patch │ │ ├── Config.in │ │ ├── matchbox.hash │ │ └── matchbox.mk │ ├── mbedtls │ │ ├── 0001-bn_mul.h-fix-x86-PIC-inline-ASM-compilation-with-GCC.patch │ │ ├── Config.in │ │ ├── mbedtls.hash │ │ └── mbedtls.mk │ ├── mc │ │ ├── Config.in │ │ ├── mc.hash │ │ └── mc.mk │ ├── mcelog │ │ ├── Config.in │ │ ├── mcelog.hash │ │ └── mcelog.mk │ ├── mcrypt │ │ ├── 0001-CVE-2012-4409.patch │ │ ├── 0002-CVE-2012-4426.patch │ │ ├── 0003-CVE-2012-4527.patch │ │ ├── 0004-no-rpath.patch │ │ ├── Config.in │ │ ├── mcrypt.hash │ │ └── mcrypt.mk │ ├── mdadm │ │ ├── 0001-add-install-targets-for-mdadm-and-mdmon.patch │ │ ├── 0002-mdadm.h-include-sysmacros.h-unconditionally.patch │ │ ├── Config.in │ │ ├── mdadm.hash │ │ └── mdadm.mk │ ├── mdevd │ │ ├── Config.in │ │ ├── mdevd.hash │ │ └── mdevd.mk │ ├── mediastreamer │ │ ├── 0001-fix-compilation-issue-with-latest-bctoobox.patch │ │ ├── 0002-Use-AV_INPUT_BUFFER_PADDING_SIZE-to-determine-paddin.patch │ │ ├── 0002-m4-fix-local-ffmpeg-and-avcodec-function-conflict.patch │ │ ├── Config.in │ │ ├── mediastreamer.hash │ │ └── mediastreamer.mk │ ├── memcached │ │ ├── 0001-configure-Fix-cross-compilation-errors.patch │ │ ├── 0002-configure-Simplify-pointer-size-check.patch │ │ ├── Config.in │ │ ├── memcached.hash │ │ └── memcached.mk │ ├── memstat │ │ ├── 0001-PATH_MAX.patch │ │ ├── Config.in │ │ ├── memstat.hash │ │ └── memstat.mk │ ├── memtest86 │ │ ├── Config.in │ │ ├── memtest86.hash │ │ └── memtest86.mk │ ├── memtester │ │ ├── 0001-makefile-fix.patch │ │ ├── Config.in │ │ ├── memtester.hash │ │ └── memtester.mk │ ├── memtool │ │ ├── Config.in │ │ ├── memtool.hash │ │ └── memtool.mk │ ├── mender-artifact │ │ ├── Config.in.host │ │ ├── mender-artifact.hash │ │ └── mender-artifact.mk │ ├── mender-grubenv │ │ ├── Config.in │ │ ├── mender-grubenv.hash │ │ └── mender-grubenv.mk │ ├── mender │ │ ├── Config.in │ │ ├── S42mender │ │ ├── artifact_info │ │ ├── device_type │ │ ├── mender.conf │ │ ├── mender.hash │ │ ├── mender.mk │ │ ├── mender.service │ │ ├── readme.txt │ │ └── server.crt │ ├── menu-cache │ │ ├── Config.in │ │ ├── menu-cache.hash │ │ └── menu-cache.mk │ ├── mesa3d-demos │ │ ├── 0001-demos-makes-opengl-an-optional-component.patch │ │ ├── Config.in │ │ ├── mesa3d-demos.hash │ │ └── mesa3d-demos.mk │ ├── mesa3d-headers │ │ ├── Config.in │ │ ├── mesa3d-headers.hash │ │ └── mesa3d-headers.mk │ ├── mesa3d │ │ ├── 0001-musl.patch │ │ ├── 0002-meson-use-wayland-scanner-provided-by-wayland-scanne.patch │ │ ├── 0003-meson-Set-proper-value-for-LIBCLC_INCLUDEDIR.patch │ │ ├── 0005-src-gallium-drivers-nouveau-codegen-nv50_ir_ra.cpp-p.patch │ │ ├── Config.in │ │ ├── mesa3d.hash │ │ └── mesa3d.mk │ ├── meson │ │ ├── 0001-Only-fix-RPATH-if-install_rpath-is-not-empty.patch │ │ ├── 0002-Prefer-ext-static-libs-when-default-library-static.patch │ │ ├── 0003-envconfig-add-pkg_config_libdir-property.patch │ │ ├── cross-compilation.conf.in │ │ ├── meson.hash │ │ └── meson.mk │ ├── metacity │ │ ├── 0001-add-libm-reference.patch │ │ ├── 0002-gconf.patch │ │ ├── 0003-mag-add-libm-reference.patch │ │ ├── Config.in │ │ ├── Xsession │ │ ├── metacity.hash │ │ └── metacity.mk │ ├── mfgtools │ │ ├── Config.in.host │ │ ├── mfgtools.hash │ │ ├── mfgtools.mk │ │ └── readme.txt │ ├── mfoc │ │ ├── Config.in │ │ ├── mfoc.hash │ │ └── mfoc.mk │ ├── micropython-lib │ │ ├── Config.in │ │ ├── micropython-lib.hash │ │ └── micropython-lib.mk │ ├── micropython │ │ ├── Config.in │ │ ├── micropython.hash │ │ └── micropython.mk │ ├── midori │ │ ├── 0001-fix-bug-1492932.patch │ │ ├── 0002-gcr-for-x11-only.patch │ │ ├── Config.in │ │ ├── midori.hash │ │ └── midori.mk │ ├── mii-diag │ │ ├── 0001-strchr.patch │ │ ├── Config.in │ │ ├── mii-diag.hash │ │ └── mii-diag.mk │ ├── mimic │ │ ├── Config.in │ │ ├── mimic.hash │ │ └── mimic.mk │ ├── minetest-game │ │ ├── Config.in │ │ ├── minetest-game.hash │ │ └── minetest-game.mk │ ├── minetest │ │ ├── Config.in │ │ ├── minetest.hash │ │ └── minetest.mk │ ├── mini-snmpd │ │ ├── 0001-Prepend-zero-byte-before-unsigned-integers.patch │ │ ├── 0002-mib.c-allow-unsigned-integers-to-have-an-extra-byte.patch │ │ ├── Config.in │ │ ├── mini-snmpd.hash │ │ ├── mini-snmpd.mk │ │ └── mini-snmpd.service │ ├── minicom │ │ ├── Config.in │ │ ├── minicom.hash │ │ └── minicom.mk │ ├── minidlna │ │ ├── Config.in │ │ ├── S60minidlnad │ │ ├── minidlna.hash │ │ ├── minidlna.mk │ │ └── minidlnad.service │ ├── minimodem │ │ ├── Config.in │ │ ├── minimodem.hash │ │ └── minimodem.mk │ ├── minissdpd │ │ ├── Config.in │ │ ├── S50minissdpd │ │ ├── minissdpd.hash │ │ ├── minissdpd.mk │ │ └── minissdpd.service │ ├── minizip │ │ ├── Config.in │ │ ├── minizip.hash │ │ └── minizip.mk │ ├── miraclecast │ │ ├── Config.in │ │ ├── miraclecast.hash │ │ └── miraclecast.mk │ ├── mjpegtools │ │ ├── 0001-PROGRAM_NOPIC-apparently-causes-problems-on-some-x86_64-systems.patch │ │ ├── Config.in │ │ ├── mjpegtools.hash │ │ └── mjpegtools.mk │ ├── mjpg-streamer │ │ ├── Config.in │ │ ├── mjpg-streamer.hash │ │ └── mjpg-streamer.mk │ ├── mkpasswd │ │ ├── Config.in.host │ │ ├── config.h │ │ ├── mkpasswd.c │ │ ├── mkpasswd.mk │ │ ├── utils.c │ │ └── utils.h │ ├── mkpimage │ │ ├── mkpimage.c │ │ └── mkpimage.mk │ ├── mksh │ │ ├── Config.in │ │ ├── mksh.hash │ │ └── mksh.mk │ ├── mmc-utils │ │ ├── 0001-mmc_cmds.c-fix-build-with-gcc-4.9.patch │ │ ├── Config.in │ │ ├── mmc-utils.hash │ │ └── mmc-utils.mk │ ├── moarvm │ │ ├── 0001-dynload-dynload_unix.c-don-t-use-RTLD_DI_LINKMAP-wit.patch │ │ ├── Config.in │ │ ├── moarvm.hash │ │ └── moarvm.mk │ ├── mobile-broadband-provider-info │ │ ├── Config.in │ │ ├── mobile-broadband-provider-info.hash │ │ └── mobile-broadband-provider-info.mk │ ├── modem-manager │ │ ├── Config.in │ │ ├── S44modem-manager │ │ ├── modem-manager.hash │ │ └── modem-manager.mk │ ├── modplugtools │ │ ├── Config.in │ │ ├── modplugtools.hash │ │ └── modplugtools.mk │ ├── mongodb │ │ ├── 0001-ssl_manager.cpp-fix-build-with-gcc-7-and-fpermissive.patch │ │ ├── Config.in │ │ ├── mongodb.hash │ │ └── mongodb.mk │ ├── mongoose │ │ ├── Config.in │ │ ├── mongoose.hash │ │ └── mongoose.mk │ ├── mongrel2 │ │ ├── 0002-Do-not-run-tests.patch │ │ ├── 0003-Fix-Makefiles-for-cross-compilation.patch │ │ ├── 0004-Rename-symbol-to-prevent-conflict.patch │ │ ├── Config.in │ │ ├── mongrel2.hash │ │ └── mongrel2.mk │ ├── monit │ │ ├── 0001-no-force-static.patch │ │ ├── Config.in │ │ ├── monit.hash │ │ └── monit.mk │ ├── monkey │ │ ├── Config.in │ │ ├── monkey.hash │ │ └── monkey.mk │ ├── mono-gtksharp3 │ │ ├── 0001-Fixes-MONO_PROFILE_ENTER_LEAVE-undeclared.patch │ │ ├── Config.in │ │ ├── mono-gtksharp3.hash │ │ └── mono-gtksharp3.mk │ ├── mono │ │ ├── 0001-Disable-backtrace-on-not-supported-uclibc.patch │ │ ├── 0002-Adjust-libc.so-path-depending-on-C-library-being-use.patch │ │ ├── 0003-configure.ac-checks-for-libunwind.patch │ │ ├── Config.in │ │ ├── mono.hash │ │ └── mono.mk │ ├── monolite │ │ ├── monolite.hash │ │ └── monolite.mk │ ├── mosh │ │ ├── Config.in │ │ ├── mosh.hash │ │ └── mosh.mk │ ├── mosquitto │ │ ├── Config.in │ │ ├── S50mosquitto │ │ ├── mosquitto.hash │ │ └── mosquitto.mk │ ├── most │ │ ├── Config.in │ │ ├── most.hash │ │ └── most.mk │ ├── motion │ │ ├── Config.in │ │ ├── S99motion │ │ ├── motion.hash │ │ ├── motion.mk │ │ └── motion.service │ ├── mp4v2 │ │ ├── 0001-Fix-GCC7-build.patch │ │ ├── Config.in │ │ ├── mp4v2.hash │ │ └── mp4v2.mk │ ├── mpc │ │ ├── Config.in │ │ ├── mpc.hash │ │ └── mpc.mk │ ├── mpd-mpc │ │ ├── Config.in │ │ ├── mpd-mpc.hash │ │ └── mpd-mpc.mk │ ├── mpd │ │ ├── 0001-src-event-meson.build-add-atomic-dependency-for-spar.patch │ │ ├── Config.in │ │ ├── S95mpd │ │ ├── mpd.conf │ │ ├── mpd.hash │ │ └── mpd.mk │ ├── mpdecimal │ │ ├── 0001-Add-minimal-support-for-enable-disable-shared-static.patch │ │ ├── Config.in │ │ ├── mpdecimal.hash │ │ └── mpdecimal.mk │ ├── mpfr │ │ ├── Config.in │ │ ├── mpfr.hash │ │ └── mpfr.mk │ ├── mpg123 │ │ ├── Config.in │ │ ├── mpg123.hash │ │ └── mpg123.mk │ ├── mpir │ │ ├── 0001-mpn-arm-udiv.asm-workaround-binutils-bug-14887.patch │ │ ├── Config.in │ │ ├── mpir.hash │ │ └── mpir.mk │ ├── mpv │ │ ├── 0001-wscript-don-t-check-for-fork-on-POSIX-checks.patch │ │ ├── 0002-fix-powerpc64-altivec.patch │ │ ├── Config.in │ │ ├── mpv.hash │ │ └── mpv.mk │ ├── mraa │ │ ├── Config.in │ │ ├── mraa.hash │ │ └── mraa.mk │ ├── mrouted │ │ ├── Config.in │ │ ├── mrouted.hash │ │ └── mrouted.mk │ ├── msgpack │ │ ├── Config.in │ │ ├── msgpack.hash │ │ └── msgpack.mk │ ├── msmtp │ │ ├── Config.in │ │ ├── msmtp.hash │ │ └── msmtp.mk │ ├── msr-tools │ │ ├── Config.in │ │ ├── msr-tools.hash │ │ └── msr-tools.mk │ ├── mtd │ │ ├── Config.in │ │ ├── Config.in.host │ │ ├── mtd.hash │ │ └── mtd.mk │ ├── mtdev │ │ ├── Config.in │ │ ├── mtdev.hash │ │ └── mtdev.mk │ ├── mtdev2tuio │ │ ├── 0001-Fix-build-with-musl-libc.patch │ │ ├── Config.in │ │ ├── mtdev2tuio.hash │ │ └── mtdev2tuio.mk │ ├── mtools │ │ ├── Config.in │ │ ├── Config.in.host │ │ ├── mtools.hash │ │ └── mtools.mk │ ├── mtr │ │ ├── Config.in │ │ ├── mtr.hash │ │ └── mtr.mk │ ├── multicat │ │ ├── Config.in │ │ ├── multicat.hash │ │ └── multicat.mk │ ├── murata-cyw-fw │ │ ├── Config.in │ │ ├── murata-cyw-fw.hash │ │ └── murata-cyw-fw.mk │ ├── musepack │ │ ├── 0001-shared.patch │ │ ├── 0002-cmake-use-the-standard-CMake-flag-to-drive-the-share.patch │ │ ├── 0003-include-fpu-control-with-glibc-only.patch │ │ ├── 0004-missing-sys-select.patch │ │ ├── Config.in │ │ ├── musepack.hash │ │ └── musepack.mk │ ├── musl-compat-headers │ │ ├── Config.in │ │ ├── cdefs.h │ │ ├── musl-compat-headers.hash │ │ └── musl-compat-headers.mk │ ├── musl-fts │ │ ├── Config.in │ │ ├── musl-fts.hash │ │ └── musl-fts.mk │ ├── musl │ │ ├── 0001-avoid-kernel-if_ether.h.patch │ │ ├── 0002-package-musl-Make-scheduler-functions-Linux-compatib.patch │ │ ├── 0003-move-riscv64-register-index-constants-to-signal.h.patch │ │ ├── Config.in │ │ ├── musl.hash │ │ └── musl.mk │ ├── mutt │ │ ├── 0001-Convert-makedoc-c-to-makedoc-pl.patch │ │ ├── 0002-Convert-hcachever-sh-in-to-hcachever-pl.patch │ │ ├── Config.in │ │ ├── mutt.hash │ │ └── mutt.mk │ ├── mxml │ │ ├── Config.in │ │ ├── mxml.hash │ │ └── mxml.mk │ ├── mxsldr │ │ ├── Config.in.host │ │ └── mxsldr.mk │ ├── mysql │ │ ├── Config.in │ │ └── mysql.mk │ ├── nano │ │ ├── Config.in │ │ ├── nano.hash │ │ └── nano.mk │ ├── nanocom │ │ ├── Config.in │ │ ├── nanocom.hash │ │ └── nanocom.mk │ ├── nanomsg │ │ ├── Config.in │ │ ├── nanomsg.hash │ │ └── nanomsg.mk │ ├── nasm │ │ ├── nasm.hash │ │ └── nasm.mk │ ├── nbd │ │ ├── 0001-Also-close-the-file-descriptor-before-returning.patch │ │ ├── Config.in │ │ ├── nbd.hash │ │ └── nbd.mk │ ├── ncdu │ │ ├── Config.in │ │ ├── ncdu.hash │ │ └── ncdu.mk │ ├── ncftp │ │ ├── Config.in │ │ ├── ncftp.hash │ │ └── ncftp.mk │ ├── ncmpc │ │ ├── 0001-meson.build-add-atomic-dependency-for-sparc.patch │ │ ├── 0002-meson.build-link-with-lintl-if-needed.patch │ │ ├── Config.in │ │ ├── ncmpc.hash │ │ └── ncmpc.mk │ ├── ncurses │ │ ├── 0001-gcc-5.x-MKlib_gen.patch │ │ ├── Config.in │ │ ├── ncurses.hash │ │ └── ncurses.mk │ ├── ndisc6 │ │ ├── 0001-Fix-musl-build.patch │ │ ├── Config.in │ │ ├── ndisc6.hash │ │ └── ndisc6.mk │ ├── ne10 │ │ ├── 0001-CMakeLists-don-t-hard-code-thumb-code-generation.patch │ │ ├── Config.in │ │ ├── ne10.hash │ │ └── ne10.mk │ ├── neard │ │ ├── Config.in │ │ ├── S53neard │ │ ├── neard.hash │ │ └── neard.mk │ ├── neardal │ │ ├── Config.in │ │ ├── neardal.hash │ │ └── neardal.mk │ ├── neon │ │ ├── Config.in │ │ ├── neon.hash │ │ └── neon.mk │ ├── net-tools │ │ ├── Config.in │ │ ├── net-tools.hash │ │ └── net-tools.mk │ ├── netatalk │ │ ├── 0001-Fix-setting-of-LD_LIBRARY_FLAGS-shlibpath_var.patch │ │ ├── Config.in │ │ ├── S50netatalk │ │ ├── netatalk.hash │ │ └── netatalk.mk │ ├── netcat-openbsd │ │ ├── Config.in │ │ ├── netcat-openbsd.hash │ │ └── netcat-openbsd.mk │ ├── netcat │ │ ├── 0001-signed-bit-counting.patch │ │ ├── Config.in │ │ ├── netcat.hash │ │ └── netcat.mk │ ├── netifrc │ │ ├── Config.in │ │ ├── netifrc.hash │ │ └── netifrc.mk │ ├── netperf │ │ ├── Config.in │ │ ├── netperf.hash │ │ └── netperf.mk │ ├── netplug │ │ ├── 0001-makefile-flags.patch │ │ ├── 0002-add-missing-time-include.patch │ │ ├── 0003-remove-assert-fail.patch │ │ ├── Config.in │ │ ├── S29netplug │ │ ├── netplug-script │ │ ├── netplug.hash │ │ ├── netplug.mk │ │ └── netplug.service │ ├── netsniff-ng │ │ ├── Config.in │ │ ├── netsniff-ng.hash │ │ └── netsniff-ng.mk │ ├── netsnmp │ │ ├── 0001-configure-static-linking-Fix-SSL-checks.patch │ │ ├── 0002-configure-Fix-lcrypto-lz-test.patch │ │ ├── 0003-configure-fix-AC_CHECK_FUNCS-EVP_sha224-EVP_sha384-..patch │ │ ├── 0004-configure-fix-AC_CHECK_FUNCS-TLS_method-TLSv1_method.patch │ │ ├── Config.in │ │ ├── S59snmpd │ │ ├── netsnmp.hash │ │ └── netsnmp.mk │ ├── netstat-nat │ │ ├── Config.in │ │ ├── netstat-nat.hash │ │ └── netstat-nat.mk │ ├── netsurf-buildsystem │ │ ├── netsurf-buildsystem.hash │ │ └── netsurf-buildsystem.mk │ ├── netsurf │ │ ├── 0001-avoid-system-perl-dependencies.patch │ │ ├── 0003-do-not-cross-compile-nsgenbind.patch │ │ ├── 0004-fix-compilation-without-curl.patch │ │ ├── Config.in │ │ ├── netsurf.hash │ │ └── netsurf.mk │ ├── nettle │ │ ├── 0001-disable-testsuite-examples.patch │ │ ├── Config.in │ │ ├── nettle.hash │ │ └── nettle.mk │ ├── network-manager-openvpn │ │ ├── Config.in │ │ ├── network-manager-openvpn.hash │ │ └── network-manager-openvpn.mk │ ├── network-manager │ │ ├── Config.in │ │ ├── S45network-manager │ │ ├── network-manager.hash │ │ └── network-manager.mk │ ├── newt │ │ ├── Config.in │ │ ├── newt.hash │ │ └── newt.mk │ ├── nfacct │ │ ├── Config.in │ │ ├── nfacct.hash │ │ └── nfacct.mk │ ├── nfs-utils │ │ ├── 0001-Patch-taken-from-Gentoo.patch │ │ ├── 0002-Switch-legacy-index-in-favour-of-strchr.patch │ │ ├── 0003-Let-the-configure-script-find-getrpcbynumber-in-libt.patch │ │ ├── 0004-mountd-Add-check-for-struct-file_handle.patch │ │ ├── 0005-nfs-utils-add-missing-include-of-stdint.h.patch │ │ ├── 0006-Include-sys-sysmacros.h-where-appropriate.patch │ │ ├── Config.in │ │ ├── S60nfs │ │ ├── nfs-utils.hash │ │ ├── nfs-utils.mk │ │ ├── nfs-utils_env.sh │ │ └── nfs-utils_tmpfiles.conf │ ├── nftables │ │ ├── Config.in │ │ ├── nftables.hash │ │ └── nftables.mk │ ├── nghttp2 │ │ ├── Config.in │ │ ├── nghttp2.hash │ │ └── nghttp2.mk │ ├── nginx-dav-ext │ │ ├── Config.in │ │ ├── nginx-dav-ext.hash │ │ └── nginx-dav-ext.mk │ ├── nginx-modsecurity │ │ ├── Config.in │ │ ├── nginx-modsecurity.hash │ │ └── nginx-modsecurity.mk │ ├── nginx-naxsi │ │ ├── Config.in │ │ ├── nginx-naxsi.hash │ │ └── nginx-naxsi.mk │ ├── nginx-upload │ │ ├── 0001-nginx-upload-module-add-openssl-lib-dependency.patch │ │ ├── Config.in │ │ ├── nginx-upload.hash │ │ └── nginx-upload.mk │ ├── nginx │ │ ├── 0001-auto-type-sizeof-rework-autotest-to-be-cross-compila.patch │ │ ├── 0002-auto-feature-add-mechanism-allowing-to-force-feature.patch │ │ ├── 0003-auto-set-ngx_feature_run_force_result-for-each-featu.patch │ │ ├── 0004-auto-lib-libxslt-conf-use-pkg-config.patch │ │ ├── 0005-auto-unix-make-sys_nerr-guessing-cross-friendly.patch │ │ ├── 0006-auto-lib-openssl-conf-use-pkg-config.patch │ │ ├── 0007-auto-lib-libgd-conf-use-pkg-config.patch │ │ ├── 0008-src-os-unix-ngx_linux_config.h-only-include-dlfcn.h-.patch │ │ ├── Config.in │ │ ├── S50nginx │ │ ├── nginx.hash │ │ ├── nginx.logrotate │ │ ├── nginx.mk │ │ └── nginx.service │ ├── ngircd │ │ ├── Config.in │ │ ├── ngircd.hash │ │ └── ngircd.mk │ ├── ngrep │ │ ├── 0001-Fix-typo-in-configure-in-when-testing-for-use_pcre.patch │ │ ├── 0002-Check-for-libnet_init-in-configure-in.patch │ │ ├── 0003-fix-disable-tcpkill.patch │ │ ├── Config.in │ │ ├── ngrep.hash │ │ └── ngrep.mk │ ├── nilfs-utils │ │ ├── 0001-nilfs_cleanerd-link-dynamically.patch │ │ ├── Config.in │ │ ├── nilfs-utils.hash │ │ └── nilfs-utils.mk │ ├── ninja │ │ ├── 0001-set-minimum-cmake-version-to-3.10.patch │ │ ├── 0002-remove-fdiagnostics-color-from-make-command.patch │ │ ├── 0003-CMake-fix-object-library-usage.patch │ │ ├── ninja.hash │ │ └── ninja.mk │ ├── nload │ │ ├── Config.in │ │ ├── nload.hash │ │ └── nload.mk │ ├── nmap │ │ ├── 0001-libdnet-wrapper-configure.patch │ │ ├── Config.in │ │ ├── nmap.hash │ │ └── nmap.mk │ ├── nmon │ │ ├── Config.in │ │ ├── nmon.hash │ │ └── nmon.mk │ ├── nodejs │ │ ├── 0001-check-if-uclibc-has-backtrace-support.patch │ │ ├── Config.in │ │ ├── nodejs.hash │ │ └── nodejs.mk │ ├── nodm │ │ ├── Config.in │ │ ├── S90nodm │ │ ├── nodm.hash │ │ ├── nodm.mk │ │ └── nodm.pam │ ├── noip │ │ ├── Config.in │ │ ├── noip.hash │ │ └── noip.mk │ ├── norm │ │ ├── 0001-protolib-drop-linux-version-check.patch │ │ ├── 0002-Use-print-as-function-call-for-Python3-compatibility.patch │ │ ├── 0003-Fix-mixed-tabs-spaces-in-protolib-wscript.patch │ │ ├── Config.in │ │ ├── norm.hash │ │ └── norm.mk │ ├── nss-mdns │ │ ├── Config.in │ │ ├── nss-mdns.hash │ │ └── nss-mdns.mk │ ├── nss-myhostname │ │ ├── Config.in │ │ ├── nss-myhostname.hash │ │ └── nss-myhostname.mk │ ├── nss-pam-ldapd │ │ ├── Config.in │ │ ├── S45nslcd │ │ ├── nslcd.service │ │ ├── nss-pam-ldapd.hash │ │ └── nss-pam-ldapd.mk │ ├── ntfs-3g │ │ ├── 0001-Fixed-reporting-an-error-when-failed-to-build-the-mo.patch │ │ ├── Config.in │ │ ├── ntfs-3g.hash │ │ └── ntfs-3g.mk │ ├── ntp │ │ ├── 0001-nano.patch │ │ ├── 0002-ntp-syscalls-fallback.patch │ │ ├── 0003-override-shell.patch │ │ ├── Config.in │ │ ├── S48sntp │ │ ├── S49ntp │ │ ├── ntp.hash │ │ ├── ntp.mk │ │ ├── ntpd.etc.conf │ │ └── ntpd.service │ ├── numactl │ │ ├── Config.in │ │ ├── numactl.hash │ │ └── numactl.mk │ ├── nut │ │ ├── 0001-Allow-to-customize-path-to-gdlib-config-and-net-snmp.patch │ │ ├── 0002-client-ups-add-missing-include.patch │ │ ├── 0003-Add-compatibility-with-openssl-1.1.0.patch │ │ ├── Config.in │ │ ├── nut.hash │ │ └── nut.mk │ ├── nuttcp │ │ ├── 0001-susv3-legacy.patch │ │ ├── Config.in │ │ ├── nuttcp.hash │ │ └── nuttcp.mk │ ├── nvidia-driver │ │ ├── 0001-use-LDFLAGS.patch │ │ ├── Config.in │ │ ├── egl.pc │ │ ├── gl.pc │ │ ├── nvidia-driver.hash │ │ └── nvidia-driver.mk │ ├── nvidia-tegra23 │ │ ├── Config.in │ │ ├── nvidia-tegra23-binaries │ │ │ ├── Config.in │ │ │ ├── egl.pc │ │ │ ├── gles.pc │ │ │ ├── glesv2.pc │ │ │ ├── nvidia-tegra23-binaries.hash │ │ │ └── nvidia-tegra23-binaries.mk │ │ ├── nvidia-tegra23-codecs │ │ │ ├── Config.in │ │ │ ├── nvidia-tegra23-codecs.hash │ │ │ └── nvidia-tegra23-codecs.mk │ │ └── nvidia-tegra23.mk │ ├── nvme │ │ ├── Config.in │ │ ├── nvme.hash │ │ └── nvme.mk │ ├── obsidian-cursors │ │ ├── Config.in │ │ ├── obsidian-cursors.hash │ │ └── obsidian-cursors.mk │ ├── ocf-linux │ │ ├── ocf-linux.hash │ │ └── ocf-linux.mk │ ├── ocrad │ │ ├── Config.in │ │ ├── ocrad.hash │ │ └── ocrad.mk │ ├── odhcp6c │ │ ├── Config.in │ │ ├── odhcp6c.hash │ │ └── odhcp6c.mk │ ├── odhcploc │ │ ├── Config.in │ │ ├── odhcploc.hash │ │ └── odhcploc.mk │ ├── ofono │ │ ├── 0001-uclibc-backtrace.patch │ │ ├── 0002-fix-musl-compile.patch │ │ ├── Config.in │ │ ├── S46ofono │ │ ├── ofono.hash │ │ └── ofono.mk │ ├── ogre │ │ ├── Config.in │ │ ├── ogre.hash │ │ └── ogre.mk │ ├── olsr │ │ ├── Config.in │ │ ├── S50olsr │ │ ├── olsr.hash │ │ ├── olsr.mk │ │ └── olsr.service │ ├── omap-u-boot-utils │ │ ├── Config.in.host │ │ ├── omap-u-boot-utils.hash │ │ └── omap-u-boot-utils.mk │ ├── omniorb │ │ ├── Config.in │ │ ├── omniorb.hash │ │ └── omniorb.mk │ ├── omxplayer │ │ ├── 0001-Update-Makefile-to-be-compatible-with-buildroot.patch │ │ ├── Config.in │ │ ├── omxplayer.hash │ │ └── omxplayer.mk │ ├── on2-8170-libs │ │ ├── Config.in │ │ ├── on2-8170-libs.hash │ │ └── on2-8170-libs.mk │ ├── on2-8170-modules │ │ ├── Config.in │ │ ├── on2-8170-modules.hash │ │ └── on2-8170-modules.mk │ ├── oniguruma │ │ ├── Config.in │ │ ├── oniguruma.hash │ │ └── oniguruma.mk │ ├── open-lldp │ │ ├── 0001-vdptool-fixed-compile-error-for-getline.patch │ │ ├── 0002-get-inline-functions-work-with-both-gnu11-and-gnu89.patch │ │ ├── 0003-Makefile.am-disable-Werror.patch │ │ ├── 0004-fixed-unknown-type-pid_t.patch │ │ ├── Config.in │ │ ├── open-lldp.hash │ │ └── open-lldp.mk │ ├── open-plc-utils │ │ ├── 0001-Remove-OWNER-and-GROUPS-parameters-to-install.patch │ │ ├── Config.in │ │ ├── open-plc-utils.hash │ │ └── open-plc-utils.mk │ ├── open2300 │ │ ├── 0001-fix-makefile.patch │ │ ├── Config.in │ │ ├── open2300.hash │ │ └── open2300.mk │ ├── openal │ │ ├── Config.in │ │ ├── openal.hash │ │ └── openal.mk │ ├── openblas │ │ ├── Config.in │ │ ├── openblas.hash │ │ └── openblas.mk │ ├── openbox │ │ ├── Config.in │ │ ├── openbox.hash │ │ └── openbox.mk │ ├── opencore-amr │ │ ├── Config.in │ │ ├── opencore-amr.hash │ │ └── opencore-amr.mk │ ├── opencv │ │ ├── 0001-atomic.patch │ │ ├── 0002-CMakeLists.txt-Do-not-add-libdl-to-LINKER_LIBS-for-s.patch │ │ ├── Config.in │ │ ├── opencv.hash │ │ └── opencv.mk │ ├── opencv3 │ │ ├── Config.in │ │ ├── opencv3.hash │ │ └── opencv3.mk │ ├── opengl │ │ ├── Config.in │ │ ├── libegl │ │ │ ├── Config.in │ │ │ └── libegl.mk │ │ ├── libgl │ │ │ ├── Config.in │ │ │ └── libgl.mk │ │ ├── libgles │ │ │ ├── Config.in │ │ │ └── libgles.mk │ │ ├── libopencl │ │ │ ├── Config.in │ │ │ └── libopencl.mk │ │ ├── libopenmax │ │ │ ├── Config.in │ │ │ └── libopenmax.mk │ │ ├── libopenvg │ │ │ ├── Config.in │ │ │ └── libopenvg.mk │ │ └── opengl.mk │ ├── openipmi │ │ ├── 0001-Avoid-searching-host-library-path.patch │ │ ├── 0002-sample-fix-readline-include-in-ipmi_serial_bmc_emu.c.patch │ │ ├── Config.in │ │ ├── openipmi.hash │ │ └── openipmi.mk │ ├── openjdk-bin │ │ ├── openjdk-bin.hash │ │ └── openjdk-bin.mk │ ├── openjdk │ │ ├── Config.in │ │ ├── openjdk.hash │ │ └── openjdk.mk │ ├── openjpeg │ │ ├── 0001-thirdparty-tiff-append-flags-found-by-pkg-config-if-.patch │ │ ├── 0002-thirdparty-lcms2-append-flags-found-by-pkg-config-if.patch │ │ ├── 0003-CMakeLists.txt-Don-t-require-a-C-compiler.patch │ │ ├── Config.in │ │ ├── openjpeg.hash │ │ └── openjpeg.mk │ ├── openlayers │ │ ├── Config.in │ │ ├── openlayers.hash │ │ └── openlayers.mk │ ├── openldap │ │ ├── 0001-fix_cross_strip.patch │ │ ├── 0002-fix-bignum.patch │ │ ├── 0003-disable-docs.patch │ │ ├── 0004-revert-ITS-3977-fix-libtool-static-behavior-to-match.patch │ │ ├── Config.in │ │ ├── openldap.hash │ │ └── openldap.mk │ ├── openmpi │ │ ├── Config.in │ │ ├── openmpi-mips32-fortran.cache │ │ ├── openmpi-mips64-fortran.cache │ │ ├── openmpi.hash │ │ └── openmpi.mk │ ├── openntpd │ │ ├── 0001-fix-musl.patch │ │ ├── Config.in │ │ ├── S49ntp │ │ ├── ntpd.service │ │ ├── openntpd.hash │ │ └── openntpd.mk │ ├── openobex │ │ ├── Config.in │ │ ├── openobex.hash │ │ └── openobex.mk │ ├── openocd │ │ ├── 0001-configure-enable-build-on-uclinux.patch │ │ ├── 0002-CVE-2018-5704-Prevent-some-forms-of-Cross-Protocol-S.patch │ │ ├── Config.in │ │ ├── Config.in.host │ │ ├── openocd.hash │ │ └── openocd.mk │ ├── openpgm │ │ ├── 0001-version_generator.py-make-it-python3-compliant.patch │ │ ├── 0002-cross-compile.patch │ │ ├── 0003-Rework-headers-includes-to-fix-build-with-musl-libc.patch │ │ ├── Config.in │ │ ├── openpgm.hash │ │ └── openpgm.mk │ ├── openpowerlink │ │ ├── 0001-install-the-stack-libraries-to-lib-subdirectory.patch │ │ ├── 0002-cmake-install-oplk-headers-files.patch │ │ ├── 0003-Add-top-level-CMakeLists.txt.patch │ │ ├── Config.in │ │ ├── openpowerlink.hash │ │ └── openpowerlink.mk │ ├── openrc │ │ ├── 0001-init.d-sysctl.in-add-support-for-busybox-sysctl.patch │ │ ├── 0002-sh-init.sh.Linux.in-change-run-lock-from-root-uucp-t.patch │ │ ├── Config.in │ │ ├── getty │ │ ├── openrc.hash │ │ ├── openrc.mk │ │ └── sysv-rcs │ ├── openresolv │ │ ├── Config.in │ │ ├── openresolv.hash │ │ └── openresolv.mk │ ├── openssh │ │ ├── Config.in │ │ ├── S50sshd │ │ ├── openssh.hash │ │ ├── openssh.mk │ │ ├── sshd-sysusers.conf │ │ └── sshd.service │ ├── openssl │ │ ├── Config.in │ │ └── openssl.mk │ ├── openswan │ │ ├── Config.in │ │ ├── openswan.hash │ │ └── openswan.mk │ ├── opentracing-cpp │ │ ├── Config.in │ │ ├── opentracing-cpp.hash │ │ └── opentracing-cpp.mk │ ├── opentyrian-data │ │ ├── Config.in │ │ ├── opentyrian-data.hash │ │ └── opentyrian-data.mk │ ├── opentyrian │ │ ├── Config.in │ │ └── opentyrian.mk │ ├── openvmtools │ │ ├── 0001-no_cflags_werror.patch │ │ ├── 0002-dont-force-cppflags.patch │ │ ├── 0003-Rename-poll-h-into-vm_poll-h-to-fix-build-failure-on-musl.patch │ │ ├── 0004-Remove-assumptions-about-glibc-being-only-libc-imple.patch │ │ ├── 0005-Use-configure-test-for-struct-timespec.patch │ │ ├── 0006-Fix-definition-of-ALLPERMS-and-ACCESSPERMS.patch │ │ ├── 0007-Use-configure-to-test-for-feature-instead-of-platfor.patch │ │ ├── 0008-Use-configure-test-for-sys-stat.h-include.patch │ │ ├── 0009-Set-permissions-on-rules-file.patch │ │ ├── 0010-Change-DEVPATH-to-devpath.patch │ │ ├── Config.in │ │ ├── S10vmtoolsd │ │ ├── openvmtools.hash │ │ ├── openvmtools.mk │ │ ├── shutdown │ │ └── vmtoolsd.service │ ├── openvpn │ │ ├── Config.in │ │ ├── S60openvpn │ │ ├── openvpn.hash │ │ └── openvpn.mk │ ├── openzwave │ │ ├── 0001-Fix-issue-1783-Most-Compilers-Get-it-Some-need-a-little-help.patch │ │ ├── 0002-update-spec-files.patch │ │ ├── Config.in │ │ ├── openzwave.hash │ │ └── openzwave.mk │ ├── opkg-utils │ │ ├── Config.in.host │ │ ├── opkg-utils.hash │ │ └── opkg-utils.mk │ ├── opkg │ │ ├── Config.in │ │ ├── opkg.hash │ │ └── opkg.mk │ ├── oprofile │ │ ├── 0001-musl.patch │ │ ├── Config.in │ │ ├── oprofile.hash │ │ └── oprofile.mk │ ├── optee-benchmark │ │ ├── Config.in │ │ ├── optee-benchmark.hash │ │ └── optee-benchmark.mk │ ├── optee-client │ │ ├── Config.in │ │ ├── S30optee │ │ ├── optee-client.hash │ │ └── optee-client.mk │ ├── optee-examples │ │ ├── Config.in │ │ ├── optee-examples.hash │ │ └── optee-examples.mk │ ├── optee-test │ │ ├── Config.in │ │ ├── optee-test.hash │ │ └── optee-test.mk │ ├── opus-tools │ │ ├── Config.in │ │ ├── opus-tools.hash │ │ └── opus-tools.mk │ ├── opus │ │ ├── Config.in │ │ ├── opus.hash │ │ └── opus.mk │ ├── opusfile │ │ ├── Config.in │ │ ├── opusfile.hash │ │ └── opusfile.mk │ ├── oracle-mysql │ │ ├── 0000-ac_cache_check.patch │ │ ├── 0001-configure-ps-cache-check.patch │ │ ├── 0002-use-new-readline-iface.patch │ │ ├── 0003-ac_stack_direction-is-unset.patch │ │ ├── 0004-Fix-gen_lex_hash-execution.patch │ │ ├── 0005-bison_3_breaks_mysql_server_build.patch │ │ ├── 0006-no-force-static-build.patch │ │ ├── 0007-dont-install-in-mysql-directory.patch │ │ ├── 0008-fix-type-conversion.patch │ │ ├── 0008-gcc7.patch │ │ ├── S97mysqld │ │ ├── mysqld.service │ │ ├── oracle-mysql.hash │ │ └── oracle-mysql.mk │ ├── orbit │ │ ├── Config.in │ │ ├── orbit.hash │ │ └── orbit.mk │ ├── orc │ │ ├── Config.in │ │ ├── orc.hash │ │ └── orc.mk │ ├── ortp │ │ ├── Config.in │ │ ├── ortp.hash │ │ └── ortp.mk │ ├── owfs │ │ ├── Config.in │ │ ├── S55owserver │ │ ├── S60owfs │ │ ├── owfs.hash │ │ └── owfs.mk │ ├── owl-linux │ │ ├── 0001-fix-for-linux-3.3.x.patch │ │ ├── Config.in │ │ ├── owl-linux.hash │ │ └── owl-linux.mk │ ├── p11-kit │ │ ├── Config.in │ │ ├── p11-kit.hash │ │ └── p11-kit.mk │ ├── p7zip │ │ ├── Config.in │ │ ├── p7zip.hash │ │ └── p7zip.mk │ ├── p910nd │ │ ├── Config.in │ │ ├── p910nd.hash │ │ └── p910nd.mk │ ├── paho-mqtt-c │ │ ├── Config.in │ │ ├── paho-mqtt-c.hash │ │ └── paho-mqtt-c.mk │ ├── paho-mqtt-cpp │ │ ├── Config.in │ │ ├── paho-mqtt-cpp.hash │ │ └── paho-mqtt-cpp.mk │ ├── pamtester │ │ ├── Config.in │ │ ├── pamtester.hash │ │ └── pamtester.mk │ ├── pango │ │ ├── Config.in │ │ ├── pango.hash │ │ └── pango.mk │ ├── pangomm │ │ ├── Config.in │ │ ├── pangomm.hash │ │ └── pangomm.mk │ ├── parted │ │ ├── Config.in │ │ ├── Config.in.host │ │ ├── parted.hash │ │ └── parted.mk │ ├── patch │ │ ├── 0001-Fix-segfault-with-mangled-rename-patch.patch │ │ ├── 0002-Allow-input-files-to-be-missing-for-ed-style-patches.patch │ │ ├── 0003-Fix-arbitrary-command-execution-in-ed-style-patches-.patch │ │ ├── Config.in │ │ ├── patch.hash │ │ └── patch.mk │ ├── patchelf │ │ ├── 0001-Remove-apparently-incorrect-usage-of-static.patch │ │ ├── 0002-Extract-a-function-for-splitting-a-colon-separated-s.patch │ │ ├── 0003-Add-option-to-make-the-rpath-relative-under-a-specif.patch │ │ ├── 0004-patchelf-Check-ELF-endianness-before-writing-new-run.patch │ │ ├── Config.in.host │ │ ├── patchelf.hash │ │ └── patchelf.mk │ ├── pax-utils │ │ ├── Config.in │ │ ├── pax-utils.hash │ │ └── pax-utils.mk │ ├── paxtest │ │ ├── 0001-genpaxtest-move-log-location.patch │ │ ├── 0002-paxtest-page-alignment-ARM-and-NIOS2-arch.patch │ │ ├── Config.in │ │ ├── paxtest.hash │ │ └── paxtest.mk │ ├── pciutils │ │ ├── Config.in │ │ ├── pciutils.hash │ │ └── pciutils.mk │ ├── pcm-tools │ │ ├── 0001-Look-for-pcm-core-at-the-default-path.patch │ │ ├── Config.in │ │ ├── pcm-tools.hash │ │ └── pcm-tools.mk │ ├── pcmanfm │ │ ├── Config.in │ │ ├── pcmanfm.hash │ │ └── pcmanfm.mk │ ├── pcre │ │ ├── 0001-Kill-compatibility-bits.patch │ │ ├── 0002-Disable-C-unit-tests.patch │ │ ├── Config.in │ │ ├── pcre.hash │ │ └── pcre.mk │ ├── pcre2 │ │ ├── Config.in │ │ ├── pcre2.hash │ │ └── pcre2.mk │ ├── pcsc-lite │ │ ├── Config.in │ │ ├── pcsc-lite.hash │ │ └── pcsc-lite.mk │ ├── pdbg │ │ ├── Config.in │ │ ├── pdbg.hash │ │ └── pdbg.mk │ ├── pdmenu │ │ ├── 0001-autoconf-makeinfo.in-link-with-INTLLIBS-if-needed.patch │ │ ├── 0002-Makefile-autoconf-makeinfo.in-support-build-install-.patch │ │ ├── Config.in │ │ ├── pdmenu.hash │ │ └── pdmenu.mk │ ├── perl-apache-logformat-compiler │ │ ├── Config.in │ │ ├── perl-apache-logformat-compiler.hash │ │ └── perl-apache-logformat-compiler.mk │ ├── perl-appconfig │ │ ├── Config.in │ │ ├── perl-appconfig.hash │ │ └── perl-appconfig.mk │ ├── perl-astro-suntime │ │ ├── Config.in │ │ ├── perl-astro-suntime.hash │ │ └── perl-astro-suntime.mk │ ├── perl-class-inspector │ │ ├── Config.in │ │ ├── perl-class-inspector.hash │ │ └── perl-class-inspector.mk │ ├── perl-class-load │ │ ├── Config.in │ │ ├── perl-class-load.hash │ │ └── perl-class-load.mk │ ├── perl-class-method-modifiers │ │ ├── Config.in │ │ ├── perl-class-method-modifiers.hash │ │ └── perl-class-method-modifiers.mk │ ├── perl-class-std-fast │ │ ├── Config.in │ │ ├── perl-class-std-fast.hash │ │ └── perl-class-std-fast.mk │ ├── perl-class-std │ │ ├── Config.in │ │ ├── perl-class-std.hash │ │ └── perl-class-std.mk │ ├── perl-convert-asn1 │ │ ├── Config.in │ │ ├── perl-convert-asn1.hash │ │ └── perl-convert-asn1.mk │ ├── perl-cookie-baker │ │ ├── Config.in │ │ ├── perl-cookie-baker.hash │ │ └── perl-cookie-baker.mk │ ├── perl-crypt-blowfish │ │ ├── Config.in │ │ ├── perl-crypt-blowfish.hash │ │ └── perl-crypt-blowfish.mk │ ├── perl-crypt-cbc │ │ ├── Config.in │ │ ├── perl-crypt-cbc.hash │ │ └── perl-crypt-cbc.mk │ ├── perl-crypt-openssl-aes │ │ ├── Config.in │ │ ├── perl-crypt-openssl-aes.hash │ │ └── perl-crypt-openssl-aes.mk │ ├── perl-crypt-openssl-guess │ │ ├── perl-crypt-openssl-guess.hash │ │ └── perl-crypt-openssl-guess.mk │ ├── perl-crypt-openssl-random │ │ ├── Config.in │ │ ├── perl-crypt-openssl-random.hash │ │ └── perl-crypt-openssl-random.mk │ ├── perl-crypt-openssl-rsa │ │ ├── Config.in │ │ ├── perl-crypt-openssl-rsa.hash │ │ └── perl-crypt-openssl-rsa.mk │ ├── perl-data-dump │ │ ├── Config.in │ │ ├── perl-data-dump.hash │ │ └── perl-data-dump.mk │ ├── perl-data-optlist │ │ ├── Config.in │ │ ├── perl-data-optlist.hash │ │ └── perl-data-optlist.mk │ ├── perl-data-uuid │ │ ├── Config.in │ │ ├── perl-data-uuid.hash │ │ └── perl-data-uuid.mk │ ├── perl-date-manip │ │ ├── Config.in │ │ ├── perl-date-manip.hash │ │ └── perl-date-manip.mk │ ├── perl-datetime-tiny │ │ ├── Config.in │ │ ├── perl-datetime-tiny.hash │ │ └── perl-datetime-tiny.mk │ ├── perl-dbd-mysql │ │ ├── Config.in │ │ ├── perl-dbd-mysql.hash │ │ └── perl-dbd-mysql.mk │ ├── perl-dbi │ │ ├── Config.in │ │ ├── perl-dbi.hash │ │ └── perl-dbi.mk │ ├── perl-devel-globaldestruction │ │ ├── Config.in │ │ ├── perl-devel-globaldestruction.hash │ │ └── perl-devel-globaldestruction.mk │ ├── perl-devel-stacktrace-ashtml │ │ ├── Config.in │ │ ├── perl-devel-stacktrace-ashtml.hash │ │ └── perl-devel-stacktrace-ashtml.mk │ ├── perl-devel-stacktrace │ │ ├── Config.in │ │ ├── perl-devel-stacktrace.hash │ │ └── perl-devel-stacktrace.mk │ ├── perl-device-serialport │ │ ├── Config.in │ │ ├── perl-device-serialport.hash │ │ └── perl-device-serialport.mk │ ├── perl-digest-hmac │ │ ├── Config.in │ │ ├── perl-digest-hmac.hash │ │ └── perl-digest-hmac.mk │ ├── perl-digest-sha1 │ │ ├── Config.in │ │ ├── perl-digest-sha1.hash │ │ └── perl-digest-sha1.mk │ ├── perl-dist-checkconflicts │ │ ├── Config.in │ │ ├── perl-dist-checkconflicts.hash │ │ └── perl-dist-checkconflicts.mk │ ├── perl-encode-detect │ │ ├── Config.in │ │ ├── perl-encode-detect.hash │ │ └── perl-encode-detect.mk │ ├── perl-encode-locale │ │ ├── Config.in │ │ ├── perl-encode-locale.hash │ │ └── perl-encode-locale.mk │ ├── perl-exporter-tiny │ │ ├── Config.in │ │ ├── perl-exporter-tiny.hash │ │ └── perl-exporter-tiny.mk │ ├── perl-extutils-config │ │ ├── perl-extutils-config.hash │ │ └── perl-extutils-config.mk │ ├── perl-extutils-helpers │ │ ├── perl-extutils-helpers.hash │ │ └── perl-extutils-helpers.mk │ ├── perl-extutils-installpaths │ │ ├── perl-extutils-installpaths.hash │ │ └── perl-extutils-installpaths.mk │ ├── perl-file-listing │ │ ├── Config.in │ │ ├── perl-file-listing.hash │ │ └── perl-file-listing.mk │ ├── perl-file-sharedir-install │ │ ├── perl-file-sharedir-install.hash │ │ └── perl-file-sharedir-install.mk │ ├── perl-file-sharedir │ │ ├── Config.in │ │ ├── perl-file-sharedir.hash │ │ └── perl-file-sharedir.mk │ ├── perl-file-slurp │ │ ├── Config.in │ │ ├── perl-file-slurp.hash │ │ └── perl-file-slurp.mk │ ├── perl-file-util │ │ ├── Config.in │ │ ├── perl-file-util.hash │ │ └── perl-file-util.mk │ ├── perl-filesys-notify-simple │ │ ├── Config.in │ │ ├── perl-filesys-notify-simple.hash │ │ └── perl-filesys-notify-simple.mk │ ├── perl-gd │ │ ├── Config.in │ │ ├── perl-gd.hash │ │ └── perl-gd.mk │ ├── perl-gdgraph │ │ ├── Config.in │ │ ├── perl-gdgraph.hash │ │ └── perl-gdgraph.mk │ ├── perl-gdtextutil │ │ ├── Config.in │ │ ├── perl-gdtextutil.hash │ │ └── perl-gdtextutil.mk │ ├── perl-hash-multivalue │ │ ├── Config.in │ │ ├── perl-hash-multivalue.hash │ │ └── perl-hash-multivalue.mk │ ├── perl-html-parser │ │ ├── Config.in │ │ ├── perl-html-parser.hash │ │ └── perl-html-parser.mk │ ├── perl-html-tagset │ │ ├── Config.in │ │ ├── perl-html-tagset.hash │ │ └── perl-html-tagset.mk │ ├── perl-http-cookies │ │ ├── Config.in │ │ ├── perl-http-cookies.hash │ │ └── perl-http-cookies.mk │ ├── perl-http-daemon │ │ ├── Config.in │ │ ├── perl-http-daemon.hash │ │ └── perl-http-daemon.mk │ ├── perl-http-date │ │ ├── Config.in │ │ ├── perl-http-date.hash │ │ └── perl-http-date.mk │ ├── perl-http-entity-parser │ │ ├── Config.in │ │ ├── perl-http-entity-parser.hash │ │ └── perl-http-entity-parser.mk │ ├── perl-http-headers-fast │ │ ├── Config.in │ │ ├── perl-http-headers-fast.hash │ │ └── perl-http-headers-fast.mk │ ├── perl-http-message │ │ ├── Config.in │ │ ├── perl-http-message.hash │ │ └── perl-http-message.mk │ ├── perl-http-multipartparser │ │ ├── Config.in │ │ ├── perl-http-multipartparser.hash │ │ └── perl-http-multipartparser.mk │ ├── perl-http-negotiate │ │ ├── Config.in │ │ ├── perl-http-negotiate.hash │ │ └── perl-http-negotiate.mk │ ├── perl-io-html │ │ ├── Config.in │ │ ├── perl-io-html.hash │ │ └── perl-io-html.mk │ ├── perl-io-interface │ │ ├── Config.in │ │ ├── perl-io-interface.hash │ │ └── perl-io-interface.mk │ ├── perl-io-socket-multicast │ │ ├── Config.in │ │ ├── perl-io-socket-multicast.hash │ │ └── perl-io-socket-multicast.mk │ ├── perl-io-socket-ssl │ │ ├── Config.in │ │ ├── perl-io-socket-ssl.hash │ │ └── perl-io-socket-ssl.mk │ ├── perl-json-maybexs │ │ ├── Config.in │ │ ├── perl-json-maybexs.hash │ │ └── perl-json-maybexs.mk │ ├── perl-json-tiny │ │ ├── Config.in │ │ ├── perl-json-tiny.hash │ │ └── perl-json-tiny.mk │ ├── perl-libwww-perl │ │ ├── Config.in │ │ ├── perl-libwww-perl.hash │ │ └── perl-libwww-perl.mk │ ├── perl-lwp-mediatypes │ │ ├── Config.in │ │ ├── perl-lwp-mediatypes.hash │ │ └── perl-lwp-mediatypes.mk │ ├── perl-mail-dkim │ │ ├── Config.in │ │ ├── perl-mail-dkim.hash │ │ └── perl-mail-dkim.mk │ ├── perl-mailtools │ │ ├── Config.in │ │ ├── perl-mailtools.hash │ │ └── perl-mailtools.mk │ ├── perl-math-prime-util │ │ ├── Config.in │ │ ├── perl-math-prime-util.hash │ │ └── perl-math-prime-util.mk │ ├── perl-mime-base64-urlsafe │ │ ├── Config.in │ │ ├── perl-mime-base64-urlsafe.hash │ │ └── perl-mime-base64-urlsafe.mk │ ├── perl-mime-tools │ │ ├── Config.in │ │ ├── perl-mime-tools.hash │ │ └── perl-mime-tools.mk │ ├── perl-module-build-tiny │ │ ├── perl-module-build-tiny.hash │ │ └── perl-module-build-tiny.mk │ ├── perl-module-build │ │ ├── perl-module-build.hash │ │ └── perl-module-build.mk │ ├── perl-module-implementation │ │ ├── Config.in │ │ ├── perl-module-implementation.hash │ │ └── perl-module-implementation.mk │ ├── perl-module-runtime │ │ ├── Config.in │ │ ├── perl-module-runtime.hash │ │ └── perl-module-runtime.mk │ ├── perl-mojolicious-plugin-authentication │ │ ├── Config.in │ │ ├── perl-mojolicious-plugin-authentication.hash │ │ └── perl-mojolicious-plugin-authentication.mk │ ├── perl-mojolicious │ │ ├── Config.in │ │ ├── perl-mojolicious.hash │ │ └── perl-mojolicious.mk │ ├── perl-moo │ │ ├── Config.in │ │ ├── perl-moo.hash │ │ └── perl-moo.mk │ ├── perl-net-dns │ │ ├── Config.in │ │ ├── perl-net-dns.hash │ │ └── perl-net-dns.mk │ ├── perl-net-http │ │ ├── Config.in │ │ ├── perl-net-http.hash │ │ └── perl-net-http.mk │ ├── perl-net-snmp │ │ ├── Config.in │ │ ├── perl-net-snmp.hash │ │ └── perl-net-snmp.mk │ ├── perl-net-ssh2 │ │ ├── Config.in │ │ ├── perl-net-ssh2.hash │ │ └── perl-net-ssh2.mk │ ├── perl-net-ssleay │ │ ├── 0001-fix-build-system.patch │ │ ├── Config.in │ │ ├── perl-net-ssleay.hash │ │ └── perl-net-ssleay.mk │ ├── perl-net-telnet │ │ ├── Config.in │ │ ├── perl-net-telnet.hash │ │ └── perl-net-telnet.mk │ ├── perl-netaddr-ip │ │ ├── Config.in │ │ ├── perl-netaddr-ip.hash │ │ └── perl-netaddr-ip.mk │ ├── perl-number-bytes-human │ │ ├── Config.in │ │ ├── perl-number-bytes-human.hash │ │ └── perl-number-bytes-human.mk │ ├── perl-package-stash │ │ ├── Config.in │ │ ├── perl-package-stash.hash │ │ └── perl-package-stash.mk │ ├── perl-params-util │ │ ├── Config.in │ │ ├── perl-params-util.hash │ │ └── perl-params-util.mk │ ├── perl-path-tiny │ │ ├── Config.in │ │ ├── perl-path-tiny.hash │ │ └── perl-path-tiny.mk │ ├── perl-plack │ │ ├── Config.in │ │ ├── perl-plack.hash │ │ └── perl-plack.mk │ ├── perl-posix-strftime-compiler │ │ ├── Config.in │ │ ├── perl-posix-strftime-compiler.hash │ │ └── perl-posix-strftime-compiler.mk │ ├── perl-role-tiny │ │ ├── Config.in │ │ ├── perl-role-tiny.hash │ │ └── perl-role-tiny.mk │ ├── perl-stream-buffered │ │ ├── Config.in │ │ ├── perl-stream-buffered.hash │ │ └── perl-stream-buffered.mk │ ├── perl-sub-exporter-progressive │ │ ├── Config.in │ │ ├── perl-sub-exporter-progressive.hash │ │ └── perl-sub-exporter-progressive.mk │ ├── perl-sub-install │ │ ├── Config.in │ │ ├── perl-sub-install.hash │ │ └── perl-sub-install.mk │ ├── perl-sub-quote │ │ ├── Config.in │ │ ├── perl-sub-quote.hash │ │ └── perl-sub-quote.mk │ ├── perl-sys-cpu │ │ ├── 0001-remove-extraneous-include.patch │ │ ├── Config.in │ │ ├── perl-sys-cpu.hash │ │ └── perl-sys-cpu.mk │ ├── perl-sys-meminfo │ │ ├── Config.in │ │ ├── perl-sys-meminfo.hash │ │ └── perl-sys-meminfo.mk │ ├── perl-sys-mmap │ │ ├── Config.in │ │ ├── perl-sys-mmap.hash │ │ └── perl-sys-mmap.mk │ ├── perl-time-parsedate │ │ ├── Config.in │ │ ├── perl-time-parsedate.hash │ │ └── perl-time-parsedate.mk │ ├── perl-timedate │ │ ├── Config.in │ │ ├── perl-timedate.hash │ │ └── perl-timedate.mk │ ├── perl-try-tiny │ │ ├── Config.in │ │ ├── perl-try-tiny.hash │ │ └── perl-try-tiny.mk │ ├── perl-type-tiny │ │ ├── Config.in │ │ ├── perl-type-tiny.hash │ │ └── perl-type-tiny.mk │ ├── perl-uri │ │ ├── Config.in │ │ ├── perl-uri.hash │ │ └── perl-uri.mk │ ├── perl-www-form-urlencoded │ │ ├── Config.in │ │ ├── perl-www-form-urlencoded.hash │ │ └── perl-www-form-urlencoded.mk │ ├── perl-www-robotrules │ │ ├── Config.in │ │ ├── perl-www-robotrules.hash │ │ └── perl-www-robotrules.mk │ ├── perl-x10 │ │ ├── Config.in │ │ ├── perl-x10.hash │ │ └── perl-x10.mk │ ├── perl-xml-libxml │ │ ├── 0001-Makefile-PL.patch │ │ ├── Config.in │ │ ├── perl-xml-libxml.hash │ │ └── perl-xml-libxml.mk │ ├── perl-xml-namespacesupport │ │ ├── Config.in │ │ ├── perl-xml-namespacesupport.hash │ │ └── perl-xml-namespacesupport.mk │ ├── perl-xml-sax-base │ │ ├── Config.in │ │ ├── perl-xml-sax-base.hash │ │ └── perl-xml-sax-base.mk │ ├── perl-xml-sax │ │ ├── Config.in │ │ ├── perl-xml-sax.hash │ │ └── perl-xml-sax.mk │ ├── perl │ │ ├── 0001-fix-the-generated-subdirectory-Makefiles.patch │ │ ├── Config.in │ │ ├── perl.hash │ │ └── perl.mk │ ├── phidgetwebservice │ │ ├── Config.in │ │ ├── phidgetwebservice.hash │ │ └── phidgetwebservice.mk │ ├── php-amqp │ │ ├── Config.in │ │ ├── php-amqp.hash │ │ └── php-amqp.mk │ ├── php-geoip │ │ ├── Config.in │ │ ├── php-geoip.hash │ │ └── php-geoip.mk │ ├── php-gnupg │ │ ├── Config.in │ │ ├── php-gnupg.hash │ │ └── php-gnupg.mk │ ├── php-imagick │ │ ├── Config.in │ │ ├── php-imagick.hash │ │ └── php-imagick.mk │ ├── php-memcached │ │ ├── Config.in │ │ ├── php-memcached.hash │ │ └── php-memcached.mk │ ├── php-ssh2 │ │ ├── 0001-fix-php_url-fields-usage-for-PHP-7-3.patch │ │ ├── 0002-dstogov-Fixed-PHP7-port-Restored-commented-reference-counting.patch │ │ ├── Config.in │ │ ├── php-ssh2.hash │ │ └── php-ssh2.mk │ ├── php-yaml │ │ ├── Config.in │ │ ├── php-yaml.hash │ │ └── php-yaml.mk │ ├── php-zmq │ │ ├── 0001-PHP-7.3-compatibility-and-bugfixes.patch │ │ ├── Config.in │ │ ├── php-zmq.hash │ │ └── php-zmq.mk │ ├── php │ │ ├── 0001-acinclude.m4-don-t-unset-variables.patch │ │ ├── 0002-iconv-tweak-iconv-detection.patch │ │ ├── 0003-configure-disable-the-phar-tool.patch │ │ ├── 0004-Call-apxs-with-correct-prefix.patch │ │ ├── 0005-fix-cross-compilation-failure-due-to-size_t-typecast.patch │ │ ├── Config.ext │ │ ├── Config.in │ │ ├── php-fpm.conf │ │ ├── php.hash │ │ └── php.mk │ ├── physfs │ │ ├── Config.in │ │ ├── physfs.hash │ │ └── physfs.mk │ ├── phytool │ │ ├── Config.in │ │ ├── phytool.hash │ │ └── phytool.mk │ ├── picocom │ │ ├── 0001-Compile-with-libc-s-without-cispeed-cospeed.patch │ │ ├── Config.in │ │ ├── picocom.hash │ │ └── picocom.mk │ ├── pifmrds │ │ ├── 0001-Makefile-cross-compile-friendly.patch │ │ ├── 0002-Makefile-use-LDFLAGS.patch │ │ ├── 0003-Makefile-fix-static-link.patch │ │ ├── Config.in │ │ ├── pifmrds.hash │ │ └── pifmrds.mk │ ├── piglit │ │ ├── Config.in │ │ ├── piglit.hash │ │ └── piglit.mk │ ├── pigpio │ │ ├── Config.in │ │ ├── pigpio.hash │ │ └── pigpio.mk │ ├── pigz │ │ ├── Config.in │ │ ├── pigz.hash │ │ └── pigz.mk │ ├── pimd │ │ ├── Config.in │ │ ├── pimd.hash │ │ └── pimd.mk │ ├── pinentry │ │ ├── Config.in │ │ ├── pinentry.hash │ │ └── pinentry.mk │ ├── pipewire │ │ ├── Config.in │ │ ├── pipewire.hash │ │ └── pipewire.mk │ ├── pixiewps │ │ ├── Config.in │ │ ├── pixiewps.hash │ │ └── pixiewps.mk │ ├── pixman │ │ ├── 0001-Disable-tests.patch │ │ ├── Config.in │ │ ├── pixman.hash │ │ └── pixman.mk │ ├── pixz │ │ ├── Config.in │ │ ├── pixz.hash │ │ └── pixz.mk │ ├── pkg-autotools.mk │ ├── pkg-cmake.mk │ ├── pkg-download.mk │ ├── pkg-generic.mk │ ├── pkg-golang.mk │ ├── pkg-kconfig.mk │ ├── pkg-kernel-module.mk │ ├── pkg-luarocks.mk │ ├── pkg-meson.mk │ ├── pkg-perl.mk │ ├── pkg-python.mk │ ├── pkg-rebar.mk │ ├── pkg-utils.mk │ ├── pkg-virtual.mk │ ├── pkg-waf.mk │ ├── pkgconf │ │ ├── 0001-Only-prefix-with-the-sysroot-a-subset-of-variables.patch │ │ ├── 0002-Revert-main-assume-modversion-insted-of-version-if-o.patch │ │ ├── Config.in │ │ ├── Config.in.host │ │ ├── pkg-config.in │ │ ├── pkgconf.hash │ │ └── pkgconf.mk │ ├── pngquant │ │ ├── Config.in │ │ ├── pngquant.hash │ │ └── pngquant.mk │ ├── poco │ │ ├── 0001-poco-add-the-staging-path-to-search-path.patch │ │ ├── 0002-Add-support-for-m68000-1856.patch │ │ ├── 0003-Foundation-src-utils.h-backport-double-conversion-ch.patch │ │ ├── Config.in │ │ ├── poco.hash │ │ └── poco.mk │ ├── policycoreutils │ │ ├── 0001-Add-DESTDIR-to-all-paths-that-use-an-absolute-path.patch │ │ ├── 0002-Add-PREFIX-to-host-paths.patch │ │ ├── Config.in │ │ ├── policycoreutils.hash │ │ └── policycoreutils.mk │ ├── polkit │ │ ├── 0001-make-netgroup-support-optional.patch │ │ ├── Config.in │ │ ├── polkit.hash │ │ └── polkit.mk │ ├── poppler │ │ ├── Config.in │ │ ├── poppler.hash │ │ └── poppler.mk │ ├── popt │ │ ├── 0001-no-wchar.patch │ │ ├── 0002-fix-autoreconf.patch │ │ ├── 0003-glob-detection.patch │ │ ├── 0004-add-libiconv-to-popt.pc.patch │ │ ├── Config.in │ │ ├── popt.hash │ │ └── popt.mk │ ├── portaudio │ │ ├── Config.in │ │ ├── portaudio.hash │ │ └── portaudio.mk │ ├── postgresql │ │ ├── Config.in │ │ ├── S50postgresql │ │ ├── pg_config │ │ ├── postgresql.hash │ │ ├── postgresql.mk │ │ └── postgresql.service │ ├── pound │ │ ├── 0001-fix-openssl-1.0.2.patch │ │ ├── 0002-fix-openssl-1.1.0.patch │ │ ├── 0003-Support-for-libressl-coexisting-with-openssl-1.1.x.patch │ │ ├── Config.in │ │ ├── pound.hash │ │ └── pound.mk │ ├── powerpc-utils │ │ ├── Config.in │ │ ├── powerpc-utils.hash │ │ └── powerpc-utils.mk │ ├── powertop │ │ ├── 0001-dont-force-stack-smashing-protection.patch │ │ ├── Config.in │ │ ├── powertop.hash │ │ └── powertop.mk │ ├── powervr │ │ ├── Config.in │ │ └── powervr.mk │ ├── pppd │ │ ├── Config.in │ │ ├── pppd.hash │ │ └── pppd.mk │ ├── pps-tools │ │ ├── Config.in │ │ ├── pps-tools.hash │ │ └── pps-tools.mk │ ├── pptp-linux │ │ ├── 0001-susv3-legacy.patch │ │ ├── 0002-fix-parallel-build.patch │ │ ├── Config.in │ │ ├── pptp-linux.hash │ │ └── pptp-linux.mk │ ├── prboom │ │ ├── 0001-libpng-1.4.patch │ │ ├── 0002-configure-remove-predefined-O2-optimization-flag.patch │ │ ├── Config.in │ │ ├── prboom.hash │ │ └── prboom.mk │ ├── privoxy │ │ ├── Config.in │ │ ├── privoxy.hash │ │ └── privoxy.mk │ ├── procps-ng │ │ ├── Config.in │ │ ├── S02sysctl │ │ ├── procps-ng.hash │ │ └── procps-ng.mk │ ├── procrank_linux │ │ ├── Config.in │ │ ├── procrank_linux.hash │ │ └── procrank_linux.mk │ ├── proftpd │ │ ├── 0001-fix-kernel-header-capability-version.patch │ │ ├── Config.in │ │ ├── S50proftpd │ │ ├── proftpd.hash │ │ ├── proftpd.mk │ │ └── proftpd.service │ ├── proj │ │ ├── Config.in │ │ ├── proj.hash │ │ └── proj.mk │ ├── prosody │ │ ├── 0001-enable-syslog.patch │ │ ├── 0002-add-pidfile.patch │ │ ├── Config.in │ │ ├── S50prosody │ │ ├── prosody.hash │ │ └── prosody.mk │ ├── protobuf-c │ │ ├── Config.in │ │ ├── protobuf-c.hash │ │ └── protobuf-c.mk │ ├── protobuf │ │ ├── Config.in │ │ ├── protobuf.hash │ │ └── protobuf.mk │ ├── proxychains-ng │ │ ├── Config.in │ │ ├── proxychains-ng.hash │ │ └── proxychains-ng.mk │ ├── pru-software-support │ │ ├── Config.in │ │ ├── Config.in.host │ │ ├── pru-software-support.hash │ │ ├── pru-software-support.mk │ │ └── readme.txt │ ├── psmisc │ │ ├── Config.in │ │ ├── psmisc.hash │ │ └── psmisc.mk │ ├── psplash │ │ ├── Config.in │ │ ├── psplash-quit.service │ │ ├── psplash-start.service │ │ ├── psplash.hash │ │ └── psplash.mk │ ├── ptm2human │ │ ├── Config.in │ │ ├── ptm2human.hash │ │ └── ptm2human.mk │ ├── ptpd │ │ ├── Config.in │ │ ├── S65ptpd │ │ ├── ptpd.hash │ │ ├── ptpd.mk │ │ └── ptpd.service │ ├── ptpd2 │ │ ├── 0001-musl.patch │ │ ├── 0002-ntp_isc_md5-rename-EVP_MD_CTX-into-PTPD_EVP_MD_CTX.patch │ │ ├── 0003-Solve-issue-25-Removing-type-U64-from-net-snmp-relat.patch │ │ ├── Config.in │ │ ├── S65ptpd2 │ │ ├── ptpd2.hash │ │ ├── ptpd2.mk │ │ └── ptpd2.service │ ├── pugixml │ │ ├── Config.in │ │ ├── pugixml.hash │ │ └── pugixml.mk │ ├── pulseaudio │ │ ├── Config.in │ │ ├── S50pulseaudio │ │ ├── pulseaudio.hash │ │ ├── pulseaudio.mk │ │ └── pulseaudio.service │ ├── pulseview │ │ ├── 0001-mainbar-fix-build-without-libsigrokdecode.patch │ │ ├── Config.in │ │ ├── pulseview.hash │ │ └── pulseview.mk │ ├── pure-ftpd │ │ ├── Config.in │ │ ├── pure-ftpd.hash │ │ └── pure-ftpd.mk │ ├── putty │ │ ├── Config.in │ │ ├── putty.hash │ │ └── putty.mk │ ├── pv │ │ ├── 0001-configure.in-tighten-AIX-test.patch │ │ ├── Config.in │ │ ├── pv.hash │ │ └── pv.mk │ ├── pwgen │ │ ├── Config.in │ │ ├── Config.in.host │ │ ├── pwgen.hash │ │ └── pwgen.mk │ ├── python-aenum │ │ ├── Config.in │ │ ├── python-aenum.hash │ │ └── python-aenum.mk │ ├── python-aioblescan │ │ ├── Config.in │ │ ├── python-aioblescan.hash │ │ └── python-aioblescan.mk │ ├── python-aiocoap │ │ ├── Config.in │ │ ├── python-aiocoap.hash │ │ └── python-aiocoap.mk │ ├── python-aioconsole │ │ ├── Config.in │ │ ├── python-aioconsole.hash │ │ └── python-aioconsole.mk │ ├── python-aiodns │ │ ├── Config.in │ │ ├── python-aiodns.hash │ │ └── python-aiodns.mk │ ├── python-aiohttp-cors │ │ ├── Config.in │ │ ├── python-aiohttp-cors.hash │ │ └── python-aiohttp-cors.mk │ ├── python-aiohttp-debugtoolbar │ │ ├── Config.in │ │ ├── python-aiohttp-debugtoolbar.hash │ │ └── python-aiohttp-debugtoolbar.mk │ ├── python-aiohttp-jinja2 │ │ ├── Config.in │ │ ├── python-aiohttp-jinja2.hash │ │ └── python-aiohttp-jinja2.mk │ ├── python-aiohttp-mako │ │ ├── Config.in │ │ ├── python-aiohttp-mako.hash │ │ └── python-aiohttp-mako.mk │ ├── python-aiohttp-remotes │ │ ├── Config.in │ │ ├── python-aiohttp-remotes.hash │ │ └── python-aiohttp-remotes.mk │ ├── python-aiohttp-security │ │ ├── Config.in │ │ ├── python-aiohttp-security.hash │ │ └── python-aiohttp-security.mk │ ├── python-aiohttp-session │ │ ├── Config.in │ │ ├── python-aiohttp-session.hash │ │ └── python-aiohttp-session.mk │ ├── python-aiohttp-sse │ │ ├── Config.in │ │ ├── python-aiohttp-sse.hash │ │ └── python-aiohttp-sse.mk │ ├── python-aiohttp │ │ ├── Config.in │ │ ├── python-aiohttp.hash │ │ └── python-aiohttp.mk │ ├── python-aiojobs │ │ ├── Config.in │ │ ├── python-aiojobs.hash │ │ └── python-aiojobs.mk │ ├── python-aiologstash │ │ ├── Config.in │ │ ├── python-aiologstash.hash │ │ └── python-aiologstash.mk │ ├── python-aiomonitor │ │ ├── Config.in │ │ ├── python-aiomonitor.hash │ │ └── python-aiomonitor.mk │ ├── python-aioredis │ │ ├── Config.in │ │ ├── python-aioredis.hash │ │ └── python-aioredis.mk │ ├── python-aiorwlock │ │ ├── Config.in │ │ ├── python-aiorwlock.hash │ │ └── python-aiorwlock.mk │ ├── python-aiosignal │ │ ├── Config.in │ │ ├── python-aiosignal.hash │ │ └── python-aiosignal.mk │ ├── python-aiozipkin │ │ ├── Config.in │ │ ├── python-aiozipkin.hash │ │ └── python-aiozipkin.mk │ ├── python-alsaaudio │ │ ├── Config.in │ │ ├── python-alsaaudio.hash │ │ └── python-alsaaudio.mk │ ├── python-argh │ │ ├── Config.in │ │ ├── python-argh.hash │ │ └── python-argh.mk │ ├── python-arrow │ │ ├── Config.in │ │ ├── python-arrow.hash │ │ └── python-arrow.mk │ ├── python-asgiref │ │ ├── Config.in │ │ ├── python-asgiref.hash │ │ └── python-asgiref.mk │ ├── python-asn1crypto │ │ ├── Config.in │ │ ├── python-asn1crypto.hash │ │ └── python-asn1crypto.mk │ ├── python-async-lru │ │ ├── Config.in │ │ ├── python-async-lru.hash │ │ └── python-async-lru.mk │ ├── python-async-timeout │ │ ├── Config.in │ │ ├── python-async-timeout.hash │ │ └── python-async-timeout.mk │ ├── python-attrs │ │ ├── Config.in │ │ ├── python-attrs.hash │ │ └── python-attrs.mk │ ├── python-autobahn │ │ ├── Config.in │ │ ├── python-autobahn.hash │ │ └── python-autobahn.mk │ ├── python-automat │ │ ├── Config.in │ │ ├── python-automat.hash │ │ └── python-automat.mk │ ├── python-avro │ │ ├── Config.in │ │ ├── python-avro.hash │ │ └── python-avro.mk │ ├── python-babel │ │ ├── Config.in │ │ ├── python-babel.hash │ │ └── python-babel.mk │ ├── python-backcall │ │ ├── Config.in │ │ ├── python-backcall.hash │ │ └── python-backcall.mk │ ├── python-backports-abc │ │ ├── Config.in │ │ ├── python-backports-abc.hash │ │ └── python-backports-abc.mk │ ├── python-backports-functools-lru-cache │ │ ├── Config.in │ │ ├── python-backports-functools-lru-cache.hash │ │ └── python-backports-functools-lru-cache.mk │ ├── python-backports-shutil-get-terminal-size │ │ ├── Config.in │ │ ├── python-backports-shutil-get-terminal-size.hash │ │ └── python-backports-shutil-get-terminal-size.mk │ ├── python-backports-ssl-match-hostname │ │ ├── Config.in │ │ ├── python-backports-ssl-match-hostname.hash │ │ └── python-backports-ssl-match-hostname.mk │ ├── python-bcrypt │ │ ├── Config.in │ │ ├── python-bcrypt.hash │ │ └── python-bcrypt.mk │ ├── python-beautifulsoup4 │ │ ├── Config.in │ │ ├── python-beautifulsoup4.hash │ │ └── python-beautifulsoup4.mk │ ├── python-bitstring │ │ ├── Config.in │ │ ├── python-bitstring.hash │ │ └── python-bitstring.mk │ ├── python-bluezero │ │ ├── Config.in │ │ ├── python-bluezero.hash │ │ └── python-bluezero.mk │ ├── python-bottle │ │ ├── Config.in │ │ ├── python-bottle.hash │ │ └── python-bottle.mk │ ├── python-brotli │ │ ├── Config.in │ │ ├── python-brotli.hash │ │ └── python-brotli.mk │ ├── python-bunch │ │ ├── Config.in │ │ ├── python-bunch.hash │ │ └── python-bunch.mk │ ├── python-cached-property │ │ ├── Config.in │ │ ├── python-cached-property.hash │ │ └── python-cached-property.mk │ ├── python-can │ │ ├── Config.in │ │ ├── python-can.hash │ │ └── python-can.mk │ ├── python-cbor │ │ ├── Config.in │ │ ├── python-cbor.hash │ │ └── python-cbor.mk │ ├── python-cchardet │ │ ├── Config.in │ │ ├── python-cchardet.hash │ │ └── python-cchardet.mk │ ├── python-certifi │ │ ├── Config.in │ │ ├── python-certifi.hash │ │ └── python-certifi.mk │ ├── python-cffi │ │ ├── Config.in │ │ ├── python-cffi.hash │ │ └── python-cffi.mk │ ├── python-channels-redis │ │ ├── Config.in │ │ ├── python-channels-redis.hash │ │ └── python-channels-redis.mk │ ├── python-channels │ │ ├── Config.in │ │ ├── python-channels.hash │ │ └── python-channels.mk │ ├── python-characteristic │ │ ├── Config.in │ │ ├── python-characteristic.hash │ │ └── python-characteristic.mk │ ├── python-chardet │ │ ├── Config.in │ │ ├── python-chardet.hash │ │ └── python-chardet.mk │ ├── python-cheetah │ │ ├── Config.in │ │ ├── python-cheetah.hash │ │ └── python-cheetah.mk │ ├── python-cheroot │ │ ├── Config.in │ │ ├── python-cheroot.hash │ │ └── python-cheroot.mk │ ├── python-cherrypy │ │ ├── Config.in │ │ ├── python-cherrypy.hash │ │ └── python-cherrypy.mk │ ├── python-click │ │ ├── Config.in │ │ ├── python-click.hash │ │ └── python-click.mk │ ├── python-coherence │ │ ├── 0001-Fix-twisted-detection.patch │ │ ├── Config.in │ │ ├── python-coherence.hash │ │ └── python-coherence.mk │ ├── python-colorama │ │ ├── Config.in │ │ ├── python-colorama.hash │ │ └── python-colorama.mk │ ├── python-colorlog │ │ ├── Config.in │ │ ├── python-colorlog.hash │ │ └── python-colorlog.mk │ ├── python-configobj │ │ ├── Config.in │ │ ├── python-configobj.hash │ │ └── python-configobj.mk │ ├── python-configshell-fb │ │ ├── Config.in │ │ ├── python-configshell-fb.hash │ │ └── python-configshell-fb.mk │ ├── python-constantly │ │ ├── Config.in │ │ ├── python-constantly.hash │ │ └── python-constantly.mk │ ├── python-couchdb │ │ ├── Config.in │ │ ├── python-couchdb.hash │ │ └── python-couchdb.mk │ ├── python-crc16 │ │ ├── Config.in │ │ ├── python-crc16.hash │ │ └── python-crc16.mk │ ├── python-crcmod │ │ ├── Config.in │ │ ├── python-crcmod.hash │ │ └── python-crcmod.mk │ ├── python-crontab │ │ ├── Config.in │ │ ├── python-crontab.hash │ │ └── python-crontab.mk │ ├── python-crossbar │ │ ├── 0001-Avoid-intentional-syntax-error.patch │ │ ├── 0002-Remove-idna-requirement.patch │ │ ├── Config.in │ │ ├── python-crossbar.hash │ │ └── python-crossbar.mk │ ├── python-cryptography │ │ ├── Config.in │ │ ├── python-cryptography.hash │ │ └── python-cryptography.mk │ ├── python-cssselect │ │ ├── Config.in │ │ ├── python-cssselect.hash │ │ └── python-cssselect.mk │ ├── python-cssutils │ │ ├── Config.in │ │ ├── python-cssutils.hash │ │ └── python-cssutils.mk │ ├── python-cycler │ │ ├── Config.in │ │ ├── python-cycler.hash │ │ └── python-cycler.mk │ ├── python-cython │ │ ├── Config.in.host │ │ ├── python-cython.hash │ │ └── python-cython.mk │ ├── python-daemon │ │ ├── Config.in │ │ ├── python-daemon.hash │ │ └── python-daemon.mk │ ├── python-daemonize │ │ ├── Config.in │ │ ├── python-daemonize.hash │ │ └── python-daemonize.mk │ ├── python-daphne │ │ ├── 0001-remove-pytest-runner-requirement.patch │ │ ├── Config.in │ │ ├── python-daphne.hash │ │ └── python-daphne.mk │ ├── python-dataproperty │ │ ├── Config.in │ │ ├── python-dataproperty.hash │ │ └── python-dataproperty.mk │ ├── python-dateutil │ │ ├── Config.in │ │ ├── python-dateutil.hash │ │ └── python-dateutil.mk │ ├── python-decorator │ │ ├── Config.in │ │ ├── python-decorator.hash │ │ └── python-decorator.mk │ ├── python-dialog │ │ ├── Config.in │ │ ├── python-dialog.hash │ │ └── python-dialog.mk │ ├── python-dialog3 │ │ ├── Config.in │ │ ├── python-dialog3.hash │ │ └── python-dialog3.mk │ ├── python-dicttoxml │ │ ├── Config.in │ │ ├── python-dicttoxml.hash │ │ └── python-dicttoxml.mk │ ├── python-django-enumfields │ │ ├── Config.in │ │ ├── python-django-enumfields.hash │ │ └── python-django-enumfields.mk │ ├── python-django │ │ ├── Config.in │ │ ├── python-django.hash │ │ └── python-django.mk │ ├── python-dnspython │ │ ├── Config.in │ │ ├── python-dnspython.hash │ │ └── python-dnspython.mk │ ├── python-docker-pycreds │ │ ├── Config.in │ │ ├── python-docker-pycreds.hash │ │ └── python-docker-pycreds.mk │ ├── python-docker │ │ ├── Config.in │ │ ├── python-docker.hash │ │ └── python-docker.mk │ ├── python-dockerpty │ │ ├── Config.in │ │ ├── python-dockerpty.hash │ │ └── python-dockerpty.mk │ ├── python-docopt │ │ ├── Config.in │ │ ├── python-docopt.hash │ │ └── python-docopt.mk │ ├── python-docutils │ │ ├── 0001-Update-setup.py.patch │ │ ├── Config.in │ │ ├── python-docutils.hash │ │ └── python-docutils.mk │ ├── python-dominate │ │ ├── Config.in │ │ ├── python-dominate.hash │ │ └── python-dominate.mk │ ├── python-dpkt │ │ ├── Config.in │ │ ├── python-dpkt.hash │ │ └── python-dpkt.mk │ ├── python-ecdsa │ │ ├── Config.in │ │ ├── python-ecdsa.hash │ │ └── python-ecdsa.mk │ ├── python-engineio │ │ ├── Config.in │ │ ├── python-engineio.hash │ │ └── python-engineio.mk │ ├── python-entrypoints │ │ ├── Config.in │ │ ├── python-entrypoints.hash │ │ └── python-entrypoints.mk │ ├── python-enum │ │ ├── Config.in │ │ ├── python-enum.hash │ │ └── python-enum.mk │ ├── python-enum34 │ │ ├── Config.in │ │ ├── python-enum34.hash │ │ └── python-enum34.mk │ ├── python-esptool │ │ ├── Config.in │ │ ├── python-esptool.hash │ │ └── python-esptool.mk │ ├── python-falcon │ │ ├── Config.in │ │ ├── python-falcon.hash │ │ └── python-falcon.mk │ ├── python-fastentrypoints │ │ ├── Config.in.host │ │ ├── python-fastentrypoints.hash │ │ └── python-fastentrypoints.mk │ ├── python-fire │ │ ├── Config.in │ │ ├── python-fire.hash │ │ └── python-fire.mk │ ├── python-flask-babel │ │ ├── Config.in │ │ ├── python-flask-babel.hash │ │ └── python-flask-babel.mk │ ├── python-flask-cors │ │ ├── Config.in │ │ ├── python-flask-cors.hash │ │ └── python-flask-cors.mk │ ├── python-flask-jsonrpc │ │ ├── Config.in │ │ ├── python-flask-jsonrpc.hash │ │ └── python-flask-jsonrpc.mk │ ├── python-flask-login │ │ ├── Config.in │ │ ├── python-flask-login.hash │ │ └── python-flask-login.mk │ ├── python-flask-sqlalchemy │ │ ├── Config.in │ │ ├── python-flask-sqlalchemy.hash │ │ └── python-flask-sqlalchemy.mk │ ├── python-flask │ │ ├── Config.in │ │ ├── python-flask.hash │ │ └── python-flask.mk │ ├── python-flup │ │ ├── Config.in │ │ ├── python-flup.hash │ │ └── python-flup.mk │ ├── python-frozenlist │ │ ├── Config.in │ │ ├── python-frozenlist.hash │ │ └── python-frozenlist.mk │ ├── python-functools32 │ │ ├── Config.in │ │ ├── python-functools32.hash │ │ └── python-functools32.mk │ ├── python-future │ │ ├── Config.in │ │ ├── python-future.hash │ │ └── python-future.mk │ ├── python-futures │ │ ├── Config.in │ │ ├── python-futures.hash │ │ └── python-futures.mk │ ├── python-gitdb2 │ │ ├── Config.in │ │ ├── python-gitdb2.hash │ │ └── python-gitdb2.mk │ ├── python-gobject │ │ ├── 0001-add-PYTHON_INCLUDES-override.patch │ │ ├── Config.in │ │ ├── python-gobject.hash │ │ └── python-gobject.mk │ ├── python-gunicorn │ │ ├── Config.in │ │ ├── python-gunicorn.hash │ │ └── python-gunicorn.mk │ ├── python-h2 │ │ ├── Config.in │ │ ├── python-h2.hash │ │ └── python-h2.mk │ ├── python-hiredis │ │ ├── Config.in │ │ ├── python-hiredis.hash │ │ └── python-hiredis.mk │ ├── python-hpack │ │ ├── 0001-Convert-HISTORY.rst-from-UTF-8-format-to-ASCII.patch │ │ ├── Config.in │ │ ├── python-hpack.hash │ │ └── python-hpack.mk │ ├── python-html5lib │ │ ├── Config.in │ │ ├── python-html5lib.hash │ │ └── python-html5lib.mk │ ├── python-httplib2 │ │ ├── Config.in │ │ ├── python-httplib2.hash │ │ └── python-httplib2.mk │ ├── python-huepy │ │ ├── 0001-fix-import-with-python3.patch │ │ ├── Config.in │ │ ├── python-huepy.hash │ │ └── python-huepy.mk │ ├── python-humanize │ │ ├── Config.in │ │ ├── python-humanize.hash │ │ └── python-humanize.mk │ ├── python-hyperframe │ │ ├── Config.in │ │ ├── python-hyperframe.hash │ │ └── python-hyperframe.mk │ ├── python-hyperlink │ │ ├── Config.in │ │ ├── python-hyperlink.hash │ │ └── python-hyperlink.mk │ ├── python-ibmiotf │ │ ├── Config.in │ │ ├── python-ibmiotf.hash │ │ └── python-ibmiotf.mk │ ├── python-id3 │ │ ├── Config.in │ │ ├── python-id3.hash │ │ └── python-id3.mk │ ├── python-idna │ │ ├── Config.in │ │ ├── python-idna.hash │ │ └── python-idna.mk │ ├── python-ifaddr │ │ ├── Config.in │ │ ├── python-ifaddr.hash │ │ └── python-ifaddr.mk │ ├── python-incremental │ │ ├── Config.in │ │ ├── python-incremental.hash │ │ └── python-incremental.mk │ ├── python-inflection │ │ ├── Config.in │ │ ├── python-inflection.hash │ │ └── python-inflection.mk │ ├── python-influxdb │ │ ├── Config.in │ │ ├── python-influxdb.hash │ │ └── python-influxdb.mk │ ├── python-iniparse │ │ ├── Config.in │ │ ├── python-iniparse.hash │ │ └── python-iniparse.mk │ ├── python-iowait │ │ ├── Config.in │ │ ├── python-iowait.hash │ │ └── python-iowait.mk │ ├── python-ipaddr │ │ ├── Config.in │ │ ├── python-ipaddr.hash │ │ └── python-ipaddr.mk │ ├── python-ipaddress │ │ ├── Config.in │ │ ├── python-ipaddress.hash │ │ └── python-ipaddress.mk │ ├── python-iptables │ │ ├── Config.in │ │ ├── python-iptables.hash │ │ └── python-iptables.mk │ ├── python-ipy │ │ ├── Config.in │ │ ├── python-ipy.hash │ │ └── python-ipy.mk │ ├── python-ipython-genutils │ │ ├── Config.in │ │ ├── python-ipython-genutils.hash │ │ └── python-ipython-genutils.mk │ ├── python-ipython │ │ ├── 0001-set-correct-python-executable-path.patch │ │ ├── Config.in │ │ ├── python-ipython.hash │ │ └── python-ipython.mk │ ├── python-iso8601 │ │ ├── Config.in │ │ ├── python-iso8601.hash │ │ └── python-iso8601.mk │ ├── python-itsdangerous │ │ ├── Config.in │ │ ├── python-itsdangerous.hash │ │ └── python-itsdangerous.mk │ ├── python-janus │ │ ├── Config.in │ │ ├── python-janus.hash │ │ └── python-janus.mk │ ├── python-jaraco-classes │ │ ├── Config.in │ │ ├── python-jaraco-classes.hash │ │ └── python-jaraco-classes.mk │ ├── python-jaraco-functools │ │ ├── Config.in │ │ ├── python-jaraco-functools.hash │ │ └── python-jaraco-functools.mk │ ├── python-jedi │ │ ├── Config.in │ │ ├── python-jedi.hash │ │ └── python-jedi.mk │ ├── python-jinja2 │ │ ├── Config.in │ │ ├── python-jinja2.hash │ │ └── python-jinja2.mk │ ├── python-json-schema-validator │ │ ├── Config.in │ │ ├── python-json-schema-validator.hash │ │ └── python-json-schema-validator.mk │ ├── python-jsonmodels │ │ ├── Config.in │ │ ├── python-jsonmodels.hash │ │ └── python-jsonmodels.mk │ ├── python-jsonschema │ │ ├── Config.in │ │ ├── python-jsonschema.hash │ │ └── python-jsonschema.mk │ ├── python-keyring │ │ ├── Config.in │ │ ├── python-keyring.hash │ │ └── python-keyring.mk │ ├── python-kiwisolver │ │ ├── Config.in │ │ ├── python-kiwisolver.hash │ │ └── python-kiwisolver.mk │ ├── python-libconfig │ │ ├── Config.in │ │ ├── python-libconfig.hash │ │ └── python-libconfig.mk │ ├── python-libusb1 │ │ ├── Config.in │ │ ├── python-libusb1.hash │ │ └── python-libusb1.mk │ ├── python-lmdb │ │ ├── Config.in │ │ ├── python-lmdb.hash │ │ └── python-lmdb.mk │ ├── python-lockfile │ │ ├── Config.in │ │ ├── python-lockfile.hash │ │ └── python-lockfile.mk │ ├── python-logbook │ │ ├── Config.in │ │ ├── python-logbook.hash │ │ └── python-logbook.mk │ ├── python-logstash │ │ ├── Config.in │ │ ├── python-logstash.hash │ │ └── python-logstash.mk │ ├── python-lxml │ │ ├── Config.in │ │ ├── Config.in.host │ │ ├── python-lxml.hash │ │ └── python-lxml.mk │ ├── python-m2r │ │ ├── Config.in │ │ ├── python-m2r.hash │ │ └── python-m2r.mk │ ├── python-mad │ │ ├── Config.in │ │ ├── python-mad.hash │ │ └── python-mad.mk │ ├── python-mako │ │ ├── Config.in │ │ ├── python-mako.hash │ │ └── python-mako.mk │ ├── python-markdown │ │ ├── Config.in │ │ ├── python-markdown.hash │ │ └── python-markdown.mk │ ├── python-markdown2 │ │ ├── Config.in │ │ ├── python-markdown2.hash │ │ └── python-markdown2.mk │ ├── python-markupsafe │ │ ├── Config.in │ │ ├── python-markupsafe.hash │ │ └── python-markupsafe.mk │ ├── python-matplotlib │ │ ├── 0001-Fix-invalid-inclusion-headers.patch │ │ ├── Config.in │ │ ├── python-matplotlib.hash │ │ └── python-matplotlib.mk │ ├── python-mbstrdecoder │ │ ├── Config.in │ │ ├── python-mbstrdecoder.hash │ │ └── python-mbstrdecoder.mk │ ├── python-meld3 │ │ ├── Config.in │ │ ├── python-meld3.hash │ │ └── python-meld3.mk │ ├── python-mimeparse │ │ ├── Config.in │ │ ├── python-mimeparse.hash │ │ └── python-mimeparse.mk │ ├── python-mistune │ │ ├── Config.in │ │ ├── python-mistune.hash │ │ └── python-mistune.mk │ ├── python-more-itertools │ │ ├── Config.in │ │ ├── python-more-itertools.hash │ │ └── python-more-itertools.mk │ ├── python-msgfy │ │ ├── Config.in │ │ ├── python-msgfy.hash │ │ └── python-msgfy.mk │ ├── python-msgpack │ │ ├── Config.in │ │ ├── python-msgpack.hash │ │ └── python-msgpack.mk │ ├── python-multidict │ │ ├── Config.in │ │ ├── python-multidict.hash │ │ └── python-multidict.mk │ ├── python-mutagen │ │ ├── Config.in │ │ ├── python-mutagen.hash │ │ └── python-mutagen.mk │ ├── python-mwclient │ │ ├── Config.in │ │ ├── python-mwclient.hash │ │ └── python-mwclient.mk │ ├── python-mwscrape │ │ ├── Config.in │ │ ├── python-mwscrape.hash │ │ └── python-mwscrape.mk │ ├── python-mwscrape2slob │ │ ├── Config.in │ │ ├── python-mwscrape2slob.hash │ │ └── python-mwscrape2slob.mk │ ├── python-nested-dict │ │ ├── Config.in │ │ ├── python-nested-dict.hash │ │ └── python-nested-dict.mk │ ├── python-netaddr │ │ ├── Config.in │ │ ├── python-netaddr.hash │ │ └── python-netaddr.mk │ ├── python-netifaces │ │ ├── Config.in │ │ ├── python-netifaces.hash │ │ └── python-netifaces.mk │ ├── python-networkmanager │ │ ├── Config.in │ │ ├── python-networkmanager.hash │ │ └── python-networkmanager.mk │ ├── python-networkx │ │ ├── Config.in │ │ ├── python-networkx.hash │ │ └── python-networkx.mk │ ├── python-nfc │ │ ├── Config.in │ │ ├── python-nfc.hash │ │ └── python-nfc.mk │ ├── python-numpy │ │ ├── Config.in │ │ ├── python-numpy.hash │ │ └── python-numpy.mk │ ├── python-oauthlib │ │ ├── Config.in │ │ ├── python-oauthlib.hash │ │ └── python-oauthlib.mk │ ├── python-paho-mqtt │ │ ├── Config.in │ │ ├── python-paho-mqtt.hash │ │ └── python-paho-mqtt.mk │ ├── python-pam │ │ ├── 0001-dealloc.patch │ │ ├── 0002-nofree.patch │ │ ├── 0003-memory-errors-CVE2012-1502.patch │ │ ├── Config.in │ │ ├── python-pam.hash │ │ └── python-pam.mk │ ├── python-paramiko │ │ ├── Config.in │ │ ├── python-paramiko.hash │ │ └── python-paramiko.mk │ ├── python-parso │ │ ├── Config.in │ │ ├── python-parso.hash │ │ └── python-parso.mk │ ├── python-passlib │ │ ├── Config.in │ │ ├── python-passlib.hash │ │ └── python-passlib.mk │ ├── python-pathlib2 │ │ ├── Config.in │ │ ├── python-pathlib2.hash │ │ └── python-pathlib2.mk │ ├── python-pathpy │ │ ├── Config.in │ │ ├── python-pathpy.hash │ │ └── python-pathpy.mk │ ├── python-pathtools │ │ ├── Config.in │ │ ├── python-pathtools.hash │ │ └── python-pathtools.mk │ ├── python-pathvalidate │ │ ├── Config.in │ │ ├── python-pathvalidate.hash │ │ └── python-pathvalidate.mk │ ├── python-pbr │ │ ├── python-pbr.hash │ │ └── python-pbr.mk │ ├── python-periphery │ │ ├── Config.in │ │ ├── python-periphery.hash │ │ └── python-periphery.mk │ ├── python-pexpect │ │ ├── Config.in │ │ ├── python-pexpect.hash │ │ └── python-pexpect.mk │ ├── python-pickleshare │ │ ├── Config.in │ │ ├── python-pickleshare.hash │ │ └── python-pickleshare.mk │ ├── python-pigpio │ │ ├── Config.in │ │ ├── python-pigpio.hash │ │ └── python-pigpio.mk │ ├── python-pillow │ │ ├── Config.in │ │ ├── python-pillow.hash │ │ └── python-pillow.mk │ ├── python-pip │ │ ├── Config.in │ │ ├── python-pip.hash │ │ └── python-pip.mk │ ├── python-ply │ │ ├── Config.in │ │ ├── python-ply.hash │ │ └── python-ply.mk │ ├── python-portend │ │ ├── Config.in │ │ ├── python-portend.hash │ │ └── python-portend.mk │ ├── python-posix-ipc │ │ ├── Config.in │ │ ├── python-posix-ipc.hash │ │ └── python-posix-ipc.mk │ ├── python-priority │ │ ├── Config.in │ │ ├── python-priority.hash │ │ └── python-priority.mk │ ├── python-prompt-toolkit │ │ ├── Config.in │ │ ├── python-prompt-toolkit.hash │ │ └── python-prompt-toolkit.mk │ ├── python-protobuf │ │ ├── Config.in │ │ ├── python-protobuf.hash │ │ └── python-protobuf.mk │ ├── python-psutil │ │ ├── Config.in │ │ ├── python-psutil.hash │ │ └── python-psutil.mk │ ├── python-psycopg2 │ │ ├── Config.in │ │ ├── python-psycopg2.hash │ │ └── python-psycopg2.mk │ ├── python-ptyprocess │ │ ├── Config.in │ │ ├── python-ptyprocess.hash │ │ └── python-ptyprocess.mk │ ├── python-pudb │ │ ├── Config.in │ │ ├── python-pudb.hash │ │ └── python-pudb.mk │ ├── python-py │ │ ├── Config.in │ │ ├── python-py.hash │ │ └── python-py.mk │ ├── python-pyaes │ │ ├── Config.in │ │ ├── python-pyaes.hash │ │ └── python-pyaes.mk │ ├── python-pyasn-modules │ │ ├── Config.in │ │ ├── python-pyasn-modules.hash │ │ └── python-pyasn-modules.mk │ ├── python-pyasn │ │ ├── Config.in │ │ ├── python-pyasn.hash │ │ └── python-pyasn.mk │ ├── python-pyasn1-modules │ │ ├── Config.in │ │ ├── python-pyasn1-modules.hash │ │ └── python-pyasn1-modules.mk │ ├── python-pyasn1 │ │ ├── Config.in │ │ ├── python-pyasn1.hash │ │ └── python-pyasn1.mk │ ├── python-pycairo │ │ ├── Config.in │ │ ├── python-pycairo.hash │ │ └── python-pycairo.mk │ ├── python-pycares │ │ ├── Config.in │ │ ├── python-pycares.hash │ │ └── python-pycares.mk │ ├── python-pycli │ │ ├── Config.in │ │ ├── python-pycli.hash │ │ └── python-pycli.mk │ ├── python-pycparser │ │ ├── Config.in │ │ ├── python-pycparser.hash │ │ └── python-pycparser.mk │ ├── python-pycrypto │ │ ├── 0001-remove-incorrect-header-path.patch │ │ ├── Config.in │ │ ├── python-pycrypto.hash │ │ └── python-pycrypto.mk │ ├── python-pycryptodomex │ │ ├── Config.in │ │ ├── python-pycryptodomex.hash │ │ └── python-pycryptodomex.mk │ ├── python-pydal │ │ ├── Config.in │ │ ├── python-pydal.hash │ │ └── python-pydal.mk │ ├── python-pydantic │ │ ├── Config.in │ │ ├── python-pydantic.hash │ │ └── python-pydantic.mk │ ├── python-pyelftools │ │ ├── Config.in │ │ ├── python-pyelftools.hash │ │ └── python-pyelftools.mk │ ├── python-pyftpdlib │ │ ├── Config.in │ │ ├── python-pyftpdlib.hash │ │ └── python-pyftpdlib.mk │ ├── python-pygame │ │ ├── Config.in │ │ ├── python-pygame.hash │ │ └── python-pygame.mk │ ├── python-pygments │ │ ├── Config.in │ │ ├── python-pygments.hash │ │ └── python-pygments.mk │ ├── python-pyhamcrest │ │ ├── Config.in │ │ ├── python-pyhamcrest.hash │ │ └── python-pyhamcrest.mk │ ├── python-pyicu │ │ ├── Config.in │ │ ├── python-pyicu.hash │ │ └── python-pyicu.mk │ ├── python-pyinotify │ │ ├── Config.in │ │ ├── python-pyinotify.hash │ │ └── python-pyinotify.mk │ ├── python-pyjwt │ │ ├── Config.in │ │ ├── python-pyjwt.hash │ │ └── python-pyjwt.mk │ ├── python-pylibftdi │ │ ├── 0001-do-not-use-find-library.patch │ │ ├── Config.in │ │ ├── python-pylibftdi.hash │ │ └── python-pylibftdi.mk │ ├── python-pylru │ │ ├── Config.in │ │ ├── python-pylru.hash │ │ └── python-pylru.mk │ ├── python-pymodbus │ │ ├── Config.in │ │ ├── python-pymodbus.hash │ │ └── python-pymodbus.mk │ ├── python-pymysql │ │ ├── Config.in │ │ ├── python-pymysql.hash │ │ └── python-pymysql.mk │ ├── python-pynacl │ │ ├── Config.in │ │ ├── python-pynacl.hash │ │ └── python-pynacl.mk │ ├── python-pyopenssl │ │ ├── Config.in │ │ ├── python-pyopenssl.hash │ │ └── python-pyopenssl.mk │ ├── python-pyparsing │ │ ├── Config.in │ │ ├── python-pyparsing.hash │ │ └── python-pyparsing.mk │ ├── python-pyparted │ │ ├── Config.in │ │ ├── python-pyparted.hash │ │ └── python-pyparted.mk │ ├── python-pypcap │ │ ├── Config.in │ │ ├── python-pypcap.hash │ │ └── python-pypcap.mk │ ├── python-pyqrcode │ │ ├── Config.in │ │ ├── python-pyqrcode.hash │ │ └── python-pyqrcode.mk │ ├── python-pyqt5 │ │ ├── 0001-configure-skip-qtdetail.patch │ │ ├── 0002-fix-qt-5.6.2.patch │ │ ├── 0003-remove-WindowOkButtonHint-and-WindowCancelButtonHint.patch │ │ ├── 0004-drop-qttest-qtestmouse-waitforevents.patch │ │ ├── Config.in │ │ ├── python-pyqt5.hash │ │ └── python-pyqt5.mk │ ├── python-pyratemp │ │ ├── Config.in │ │ ├── python-pyratemp.hash │ │ └── python-pyratemp.mk │ ├── python-pyrex │ │ ├── python-pyrex.hash │ │ └── python-pyrex.mk │ ├── python-pyro │ │ ├── Config.in │ │ ├── python-pyro.hash │ │ └── python-pyro.mk │ ├── python-pyroute2 │ │ ├── Config.in │ │ ├── python-pyroute2.hash │ │ └── python-pyroute2.mk │ ├── python-pysendfile │ │ ├── Config.in │ │ ├── python-pysendfile.hash │ │ └── python-pysendfile.mk │ ├── python-pysmb │ │ ├── Config.in │ │ ├── python-pysmb.hash │ │ └── python-pysmb.mk │ ├── python-pysmi │ │ ├── Config.in │ │ ├── python-pysmi.hash │ │ └── python-pysmi.mk │ ├── python-pysnmp-mibs │ │ ├── Config.in │ │ ├── python-pysnmp-mibs.hash │ │ └── python-pysnmp-mibs.mk │ ├── python-pysnmp │ │ ├── Config.in │ │ ├── python-pysnmp.hash │ │ └── python-pysnmp.mk │ ├── python-pysocks │ │ ├── Config.in │ │ ├── python-pysocks.hash │ │ └── python-pysocks.mk │ ├── python-pytablereader │ │ ├── Config.in │ │ ├── python-pytablereader.hash │ │ └── python-pytablereader.mk │ ├── python-pytablewriter │ │ ├── Config.in │ │ ├── python-pytablewriter.hash │ │ └── python-pytablewriter.mk │ ├── python-pytrie │ │ ├── Config.in │ │ ├── python-pytrie.hash │ │ └── python-pytrie.mk │ ├── python-pytz │ │ ├── Config.in │ │ ├── python-pytz.hash │ │ └── python-pytz.mk │ ├── python-pyudev │ │ ├── 0001-Workaround-finding-libudev-on-systems-without-ldconf.patch │ │ ├── Config.in │ │ ├── python-pyudev.hash │ │ └── python-pyudev.mk │ ├── python-pyusb │ │ ├── Config.in │ │ ├── python-pyusb.hash │ │ └── python-pyusb.mk │ ├── python-pyxb │ │ ├── Config.in │ │ ├── python-pyxb.hash │ │ └── python-pyxb.mk │ ├── python-pyyaml │ │ ├── Config.in │ │ ├── python-pyyaml.hash │ │ └── python-pyyaml.mk │ ├── python-pyzmq │ │ ├── 0001-use-buildroot-zmq-version-instead-of-detect.patch │ │ ├── Config.in │ │ ├── python-pyzmq.hash │ │ └── python-pyzmq.mk │ ├── python-raven │ │ ├── Config.in │ │ ├── python-raven.hash │ │ └── python-raven.mk │ ├── python-redis │ │ ├── Config.in │ │ ├── python-redis.hash │ │ └── python-redis.mk │ ├── python-reentry │ │ ├── Config.in │ │ ├── python-reentry.hash │ │ └── python-reentry.mk │ ├── python-remi │ │ ├── Config.in │ │ ├── python-remi.hash │ │ └── python-remi.mk │ ├── python-request-id │ │ ├── Config.in │ │ ├── python-request-id.hash │ │ └── python-request-id.mk │ ├── python-requests-oauthlib │ │ ├── Config.in │ │ ├── python-requests-oauthlib.hash │ │ └── python-requests-oauthlib.mk │ ├── python-requests-toolbelt │ │ ├── Config.in │ │ ├── python-requests-toolbelt.hash │ │ └── python-requests-toolbelt.mk │ ├── python-requests │ │ ├── Config.in │ │ ├── python-requests.hash │ │ └── python-requests.mk │ ├── python-rpi-gpio │ │ ├── Config.in │ │ ├── python-rpi-gpio.hash │ │ └── python-rpi-gpio.mk │ ├── python-rpi-ws281x │ │ ├── 0001-Fix-cross-compilation.patch │ │ ├── Config.in │ │ ├── python-rpi-ws281x.hash │ │ └── python-rpi-ws281x.mk │ ├── python-rtslib-fb │ │ ├── Config.in │ │ ├── python-rtslib-fb.hash │ │ └── python-rtslib-fb.mk │ ├── python-scandir │ │ ├── Config.in │ │ ├── python-scandir.hash │ │ └── python-scandir.mk │ ├── python-scapy │ │ ├── Config.in │ │ ├── python-scapy.hash │ │ └── python-scapy.mk │ ├── python-schedule │ │ ├── Config.in │ │ ├── python-schedule.hash │ │ └── python-schedule.mk │ ├── python-sdnotify │ │ ├── Config.in │ │ ├── python-sdnotify.hash │ │ └── python-sdnotify.mk │ ├── python-secretstorage │ │ ├── Config.in │ │ ├── python-secretstorage.hash │ │ └── python-secretstorage.mk │ ├── python-see │ │ ├── Config.in │ │ ├── python-see.hash │ │ └── python-see.mk │ ├── python-semver │ │ ├── Config.in │ │ ├── python-semver.hash │ │ └── python-semver.mk │ ├── python-sentry-sdk │ │ ├── Config.in │ │ ├── python-sentry-sdk.hash │ │ └── python-sentry-sdk.mk │ ├── python-serial-asyncio │ │ ├── Config.in │ │ ├── python-serial-asyncio.hash │ │ └── python-serial-asyncio.mk │ ├── python-serial │ │ ├── Config.in │ │ ├── python-serial.hash │ │ └── python-serial.mk │ ├── python-service-identity │ │ ├── Config.in │ │ ├── python-service-identity.hash │ │ └── python-service-identity.mk │ ├── python-setproctitle │ │ ├── Config.in │ │ ├── python-setproctitle.hash │ │ └── python-setproctitle.mk │ ├── python-setuptools-scm-git-archive │ │ ├── python-setuptools-scm-git-archive.hash │ │ └── python-setuptools-scm-git-archive.mk │ ├── python-setuptools-scm │ │ ├── python-setuptools-scm.hash │ │ └── python-setuptools-scm.mk │ ├── python-setuptools │ │ ├── 0001-add-executable.patch │ │ ├── Config.in │ │ ├── python-setuptools.hash │ │ └── python-setuptools.mk │ ├── python-sh │ │ ├── Config.in │ │ ├── python-sh.hash │ │ └── python-sh.mk │ ├── python-shutilwhich │ │ ├── Config.in │ │ ├── python-shutilwhich.hash │ │ └── python-shutilwhich.mk │ ├── python-simpleaudio │ │ ├── Config.in │ │ ├── python-simpleaudio.hash │ │ └── python-simpleaudio.mk │ ├── python-simplegeneric │ │ ├── Config.in │ │ ├── python-simplegeneric.hash │ │ └── python-simplegeneric.mk │ ├── python-simplejson │ │ ├── Config.in │ │ ├── python-simplejson.hash │ │ └── python-simplejson.mk │ ├── python-simplelogging │ │ ├── Config.in │ │ ├── python-simplelogging.hash │ │ └── python-simplelogging.mk │ ├── python-simplesqlite │ │ ├── Config.in │ │ ├── python-simplesqlite.hash │ │ └── python-simplesqlite.mk │ ├── python-singledispatch │ │ ├── Config.in │ │ ├── python-singledispatch.hash │ │ └── python-singledispatch.mk │ ├── python-sip │ │ ├── Config.in │ │ ├── python-sip.hash │ │ └── python-sip.mk │ ├── python-six │ │ ├── Config.in │ │ ├── Config.in.host │ │ ├── python-six.hash │ │ └── python-six.mk │ ├── python-slob │ │ ├── Config.in │ │ ├── python-slob.hash │ │ └── python-slob.mk │ ├── python-smbus-cffi │ │ ├── Config.in │ │ ├── python-smbus-cffi.hash │ │ └── python-smbus-cffi.mk │ ├── python-smmap2 │ │ ├── Config.in │ │ ├── python-smmap2.hash │ │ └── python-smmap2.mk │ ├── python-socketio │ │ ├── Config.in │ │ ├── python-socketio.hash │ │ └── python-socketio.mk │ ├── python-sockjs │ │ ├── Config.in │ │ ├── python-sockjs.hash │ │ └── python-sockjs.mk │ ├── python-sortedcontainers │ │ ├── Config.in │ │ ├── python-sortedcontainers.hash │ │ └── python-sortedcontainers.mk │ ├── python-soupsieve │ │ ├── Config.in │ │ ├── python-soupsieve.hash │ │ └── python-soupsieve.mk │ ├── python-spidev │ │ ├── Config.in │ │ ├── python-spidev.hash │ │ └── python-spidev.mk │ ├── python-sqlalchemy │ │ ├── Config.in │ │ ├── python-sqlalchemy.hash │ │ └── python-sqlalchemy.mk │ ├── python-sqliteschema │ │ ├── Config.in │ │ ├── python-sqliteschema.hash │ │ └── python-sqliteschema.mk │ ├── python-sqlparse │ │ ├── Config.in │ │ ├── python-sqlparse.hash │ │ └── python-sqlparse.mk │ ├── python-subprocess32 │ │ ├── Config.in │ │ ├── python-subprocess32.hash │ │ └── python-subprocess32.mk │ ├── python-systemd │ │ ├── Config.in │ │ ├── python-systemd.hash │ │ └── python-systemd.mk │ ├── python-tabledata │ │ ├── Config.in │ │ ├── python-tabledata.hash │ │ └── python-tabledata.mk │ ├── python-tempora │ │ ├── Config.in │ │ ├── python-tempora.hash │ │ └── python-tempora.mk │ ├── python-termcolor │ │ ├── Config.in │ │ ├── python-termcolor.hash │ │ └── python-termcolor.mk │ ├── python-terminaltables │ │ ├── Config.in │ │ ├── python-terminaltables.hash │ │ └── python-terminaltables.mk │ ├── python-texttable │ │ ├── Config.in │ │ ├── python-texttable.hash │ │ └── python-texttable.mk │ ├── python-thrift │ │ ├── Config.in │ │ ├── python-thrift.hash │ │ └── python-thrift.mk │ ├── python-tinyrpc │ │ ├── Config.in │ │ ├── python-tinyrpc.hash │ │ └── python-tinyrpc.mk │ ├── python-tomako │ │ ├── Config.in │ │ ├── python-tomako.hash │ │ └── python-tomako.mk │ ├── python-toml │ │ ├── Config.in │ │ ├── python-toml.hash │ │ └── python-toml.mk │ ├── python-tornado │ │ ├── Config.in │ │ ├── python-tornado.hash │ │ └── python-tornado.mk │ ├── python-tqdm │ │ ├── Config.in │ │ ├── python-tqdm.hash │ │ └── python-tqdm.mk │ ├── python-traitlets │ │ ├── Config.in │ │ ├── python-traitlets.hash │ │ └── python-traitlets.mk │ ├── python-treq │ │ ├── Config.in │ │ ├── python-treq.hash │ │ └── python-treq.mk │ ├── python-twisted │ │ ├── Config.in │ │ ├── python-twisted.hash │ │ └── python-twisted.mk │ ├── python-txaio │ │ ├── Config.in │ │ ├── python-txaio.hash │ │ └── python-txaio.mk │ ├── python-txdbus │ │ ├── Config.in │ │ ├── python-txdbus.hash │ │ └── python-txdbus.mk │ ├── python-txtorcon │ │ ├── Config.in │ │ ├── python-txtorcon.hash │ │ └── python-txtorcon.mk │ ├── python-typepy │ │ ├── Config.in │ │ ├── python-typepy.hash │ │ └── python-typepy.mk │ ├── python-typing │ │ ├── Config.in │ │ ├── python-typing.hash │ │ └── python-typing.mk │ ├── python-u-msgpack │ │ ├── Config.in │ │ ├── python-u-msgpack.hash │ │ └── python-u-msgpack.mk │ ├── python-ubjson │ │ ├── Config.in │ │ ├── python-ubjson.hash │ │ └── python-ubjson.mk │ ├── python-ujson │ │ ├── Config.in │ │ ├── python-ujson.hash │ │ └── python-ujson.mk │ ├── python-urllib3 │ │ ├── Config.in │ │ ├── python-urllib3.hash │ │ └── python-urllib3.mk │ ├── python-urwid │ │ ├── Config.in │ │ ├── python-urwid.hash │ │ └── python-urwid.mk │ ├── python-uvloop │ │ ├── Config.in │ │ ├── python-uvloop.hash │ │ └── python-uvloop.mk │ ├── python-validators │ │ ├── Config.in │ │ ├── python-validators.hash │ │ └── python-validators.mk │ ├── python-vcversioner │ │ ├── python-vcversioner.hash │ │ └── python-vcversioner.mk │ ├── python-versiontools │ │ ├── Config.in │ │ ├── python-versiontools.hash │ │ └── python-versiontools.mk │ ├── python-visitor │ │ ├── Config.in │ │ ├── python-visitor.hash │ │ └── python-visitor.mk │ ├── python-watchdog │ │ ├── Config.in │ │ ├── python-watchdog.hash │ │ └── python-watchdog.mk │ ├── python-wcwidth │ │ ├── Config.in │ │ ├── python-wcwidth.hash │ │ └── python-wcwidth.mk │ ├── python-web2py │ │ ├── 0001-gluon-languages.py-import-escape-from-html-instead-o.patch │ │ ├── Config.in │ │ ├── S51web2py │ │ ├── python-web2py.hash │ │ ├── python-web2py.mk │ │ └── web2py.service │ ├── python-webencodings │ │ ├── Config.in │ │ ├── python-webencodings.hash │ │ └── python-webencodings.mk │ ├── python-webob │ │ ├── Config.in │ │ ├── python-webob.hash │ │ └── python-webob.mk │ ├── python-webpy │ │ ├── Config.in │ │ ├── python-webpy.hash │ │ └── python-webpy.mk │ ├── python-websocket-client │ │ ├── Config.in │ │ ├── python-websocket-client.hash │ │ └── python-websocket-client.mk │ ├── python-websockets │ │ ├── Config.in │ │ ├── python-websockets.hash │ │ └── python-websockets.mk │ ├── python-werkzeug │ │ ├── Config.in │ │ ├── python-werkzeug.hash │ │ └── python-werkzeug.mk │ ├── python-whoosh │ │ ├── Config.in │ │ ├── python-whoosh.hash │ │ └── python-whoosh.mk │ ├── python-wrapt │ │ ├── Config.in │ │ ├── python-wrapt.hash │ │ └── python-wrapt.mk │ ├── python-ws4py │ │ ├── 0001-Adjust-ws4py-for-Python-3.7-syntax.patch │ │ ├── Config.in │ │ ├── python-ws4py.hash │ │ └── python-ws4py.mk │ ├── python-wsaccel │ │ ├── Config.in │ │ ├── python-wsaccel.hash │ │ └── python-wsaccel.mk │ ├── python-wtforms │ │ ├── Config.in │ │ ├── python-wtforms.hash │ │ └── python-wtforms.mk │ ├── python-xlib │ │ ├── Config.in │ │ ├── python-xlib.hash │ │ └── python-xlib.mk │ ├── python-xlrd │ │ ├── Config.in │ │ ├── Config.in.host │ │ ├── python-xlrd.hash │ │ └── python-xlrd.mk │ ├── python-xlsxwriter │ │ ├── Config.in │ │ ├── python-xlsxwriter.hash │ │ └── python-xlsxwriter.mk │ ├── python-xlutils │ │ ├── Config.in │ │ ├── python-xlutils.hash │ │ └── python-xlutils.mk │ ├── python-xlwt │ │ ├── Config.in │ │ ├── python-xlwt.hash │ │ └── python-xlwt.mk │ ├── python-xmltodict │ │ ├── Config.in │ │ ├── python-xmltodict.hash │ │ └── python-xmltodict.mk │ ├── python-yarl │ │ ├── Config.in │ │ ├── python-yarl.hash │ │ └── python-yarl.mk │ ├── python-yieldfrom │ │ ├── Config.in │ │ ├── python-yieldfrom.hash │ │ └── python-yieldfrom.mk │ ├── python-zc-lockfile │ │ ├── Config.in │ │ ├── python-zc-lockfile.hash │ │ └── python-zc-lockfile.mk │ ├── python-zeroconf │ │ ├── Config.in │ │ ├── python-zeroconf.hash │ │ └── python-zeroconf.mk │ ├── python-zope-interface │ │ ├── Config.in │ │ ├── python-zope-interface.hash │ │ └── python-zope-interface.mk │ ├── python │ │ ├── 0001-setup.py-do-not-add-invalid-header-locations.patch │ │ ├── 0002-Fix-get_python_inc-for-cross-compilation.patch │ │ ├── 0003-Change-the-install-location-of-_sysconfigdata.py.patch │ │ ├── 0004-Make-the-compilation-of-.pyc-and-.pyo-conditional.patch │ │ ├── 0005-Adjust-getaddrinfo-test-for-cross-compilation.patch │ │ ├── 0006-Add-minimal-infrastructure-to-be-able-to-disable-ext.patch │ │ ├── 0007-Adjust-library-header-paths-for-cross-compilation.patch │ │ ├── 0008-Don-t-look-in-usr-lib-termcap-for-libraries.patch │ │ ├── 0009-Fix-python-config-for-cross-builds.patch │ │ ├── 0010-Remove-the-python-symlink-install-rules.patch │ │ ├── 0011-Don-t-add-multiarch-paths.patch │ │ ├── 0012-Abort-on-failed-module-build.patch │ │ ├── 0013-sqlite3-fix-build-when-threads-are-not-used-availabl.patch │ │ ├── 0014-Serial-ioctl-workaround.patch │ │ ├── 0015-Do-not-adjust-the-shebang-of-Python-scripts-for-cros.patch │ │ ├── 0016-Add-an-option-to-disable-installation-of-test-module.patch │ │ ├── 0017-Add-an-option-to-disable-pydoc.patch │ │ ├── 0018-Add-an-option-to-disable-lib2to3.patch │ │ ├── 0019-Add-option-to-disable-the-sqlite3-module.patch │ │ ├── 0020-Add-an-option-to-disable-the-tk-module.patch │ │ ├── 0021-Add-an-option-to-disable-the-curses-module.patch │ │ ├── 0022-Add-an-option-to-disable-expat.patch │ │ ├── 0023-Add-an-option-to-disable-CJK-codecs.patch │ │ ├── 0024-Add-an-option-to-disable-NIS.patch │ │ ├── 0025-Add-an-option-to-disable-unicodedata.patch │ │ ├── 0026-Add-an-option-to-disable-bsddb.patch │ │ ├── 0027-Add-an-option-to-disable-the-ssl-module.patch │ │ ├── 0028-Add-an-option-to-disable-the-bz2-module.patch │ │ ├── 0029-Add-an-option-to-disable-the-zlib-module.patch │ │ ├── 0030-Do-not-install-the-idle-editor.patch │ │ ├── 0031-Add-an-option-to-disable-the-ossaudiodev-module.patch │ │ ├── 0032-Add-option-to-disable-the-hashlib-module.patch │ │ ├── 0033-Add-an-option-to-disable-readline-module.patch │ │ ├── 0034-Override-system-locale-and-set-to-default-when-addin.patch │ │ ├── Config.in │ │ ├── Config.in.host │ │ ├── python.hash │ │ └── python.mk │ ├── python3-mako │ │ ├── python3-mako.hash │ │ └── python3-mako.mk │ ├── python3-setuptools │ │ ├── 0001-add-executable.patch │ │ ├── python3-setuptools.hash │ │ └── python3-setuptools.mk │ ├── python3 │ │ ├── 0001-Make-the-build-of-pyc-files-conditional.patch │ │ ├── 0002-Disable-buggy_getaddrinfo-configure-test-when-cross-.patch │ │ ├── 0003-Add-infrastructure-to-disable-the-build-of-certain-e.patch │ │ ├── 0004-Adjust-library-header-paths-for-cross-compilation.patch │ │ ├── 0005-Don-t-look-in-usr-lib-termcap-for-libraries.patch │ │ ├── 0006-Don-t-add-multiarch-paths.patch │ │ ├── 0007-Abort-on-failed-module-build.patch │ │ ├── 0008-Serial-ioctl-workaround.patch │ │ ├── 0009-Do-not-adjust-the-shebang-of-Python-scripts-for-cros.patch │ │ ├── 0010-Misc-python-config.sh.in-ensure-sed-invocations-only.patch │ │ ├── 0011-Override-system-locale-and-set-to-default-when-addin.patch │ │ ├── 0012-Add-importlib-fix-for-PEP-3147-issue.patch │ │ ├── 0013-Add-an-option-to-disable-installation-of-test-module.patch │ │ ├── 0014-Add-an-option-to-disable-pydoc.patch │ │ ├── 0015-Add-an-option-to-disable-lib2to3.patch │ │ ├── 0016-Add-option-to-disable-the-sqlite3-module.patch │ │ ├── 0017-Add-an-option-to-disable-the-tk-module.patch │ │ ├── 0018-Add-an-option-to-disable-the-curses-module.patch │ │ ├── 0019-Add-an-option-to-disable-expat.patch │ │ ├── 0020-Add-an-option-to-disable-CJK-codecs.patch │ │ ├── 0021-Add-an-option-to-disable-NIS.patch │ │ ├── 0022-Add-an-option-to-disable-unicodedata.patch │ │ ├── 0023-Add-an-option-to-disable-IDLE.patch │ │ ├── 0024-Add-an-option-to-disable-decimal.patch │ │ ├── 0025-Add-an-option-to-disable-the-ossaudiodev-module.patch │ │ ├── 0026-Add-an-option-to-disable-openssl-support.patch │ │ ├── 0027-Add-an-option-to-disable-the-readline-module.patch │ │ ├── 0028-Add-options-to-disable-zlib-bzip2-and-xz-modules.patch │ │ ├── 0029-python-config.sh-don-t-reassign-prefix.patch │ │ ├── 0030-Fix-cross-compiling-the-uuid-module.patch │ │ ├── 0031-Add-an-option-to-disable-uuid-module.patch │ │ ├── 0032-fix-building-on-older-distributions.patch │ │ ├── 0033-configure.ac-fixup-CC-print-multiarch-output-for-mus.patch │ │ ├── Config.in │ │ ├── Config.in.host │ │ ├── python3.hash │ │ └── python3.mk │ ├── qdecoder │ │ ├── Config.in │ │ ├── qdecoder.hash │ │ └── qdecoder.mk │ ├── qemu │ │ ├── 3.1.1.1 │ │ │ ├── 0001-user-exec-fix-usage-of-mcontext-structure-on-ARM-uCl.patch │ │ │ ├── 0002-linux-user-fix-to-handle-variably-sized-SIOCGSTAMP-with-new-kernels.patch │ │ │ ├── 0003-util-cacheinfo-fix-crash-when-compiling-with-uClibc.patch │ │ │ ├── 0004-linux-user-assume-__NR_gettid-always-exists.patch │ │ │ └── 0005-linux-user-rename-gettid-to-sys_gettid-to-avoid-clas.patch │ │ ├── Config.in │ │ ├── Config.in.host │ │ ├── qemu.hash │ │ └── qemu.mk │ ├── qextserialport │ │ ├── 0001-Create-a-main-include-file-QExtSerialPort.patch │ │ ├── 0002-Tell-qmake-to-add-a-pkgconfig-file-to-ease-usage-wit.patch │ │ ├── Config.in │ │ ├── qextserialport.hash │ │ └── qextserialport.mk │ ├── qhull │ │ ├── Config.in │ │ ├── qhull.hash │ │ └── qhull.mk │ ├── qjson │ │ ├── Config.in │ │ ├── qjson.hash │ │ └── qjson.mk │ ├── qlibc │ │ ├── Config.in │ │ ├── qlibc.hash │ │ └── qlibc.mk │ ├── qpdf │ │ ├── Config.in │ │ ├── qpdf.hash │ │ └── qpdf.mk │ ├── qpid-proton │ │ ├── 0001-PROTON-1381-PROTON-1326-Modify-openssl-DH-code-to-wo.patch │ │ ├── 0002-PROTON-1326-restore-anonymous-cyphers-by-lowering-Op.patch │ │ ├── 0003-PROTON-1587-fix-openssl-error-handling-causing-spuri.patch │ │ ├── 0004-src-ssl-openssl-add-libressl-compatibility.patch │ │ ├── Config.in │ │ ├── qpid-proton.hash │ │ └── qpid-proton.mk │ ├── qt-webkit-kiosk │ │ ├── Config.in │ │ ├── qt-webkit-kiosk.hash │ │ └── qt-webkit-kiosk.mk │ ├── qt5 │ │ ├── Config.in │ │ ├── qt5.mk │ │ ├── qt53d │ │ │ ├── Config.in │ │ │ ├── qt53d.hash │ │ │ └── qt53d.mk │ │ ├── qt5base │ │ │ ├── 5.12.7 │ │ │ │ ├── 0001-qtbase-Fix-build-error-when-using-EGL.patch │ │ │ │ ├── 0002-double-conversion-enable-for-microblaze.patch │ │ │ │ └── qt5base.hash │ │ │ ├── 5.6.3 │ │ │ │ ├── 0001-eglfs-rasp-pi-header-inclusion.patch │ │ │ │ ├── 0002-qtbase-Fix-build-error-when-using-EGL.patch │ │ │ │ ├── 0003-libressl-add-fpermissive-gcc-flag-to-allow-compilati.patch │ │ │ │ ├── 0004-fix-icu-build-for-qt5webkit.patch │ │ │ │ ├── 0005-Do-not-load-plugin-from-the-PWD.patch │ │ │ │ └── qt5base.hash │ │ │ ├── Config.in │ │ │ ├── qmake.conf.in │ │ │ ├── qplatformdefs.h │ │ │ ├── qt.conf.in │ │ │ ├── qt5base.hash │ │ │ └── qt5base.mk │ │ ├── qt5canvas3d │ │ │ ├── Config.in │ │ │ ├── qt5canvas3d.hash │ │ │ └── qt5canvas3d.mk │ │ ├── qt5charts │ │ │ ├── Config.in │ │ │ ├── qt5charts.hash │ │ │ └── qt5charts.mk │ │ ├── qt5connectivity │ │ │ ├── 5.12.7 │ │ │ │ └── qt5connectivity.hash │ │ │ ├── 5.6.3 │ │ │ │ └── qt5connectivity.hash │ │ │ ├── Config.in │ │ │ ├── qt5connectivity.hash │ │ │ └── qt5connectivity.mk │ │ ├── qt5declarative │ │ │ ├── 5.12.7 │ │ │ │ └── 0001-qsgtexture-fix-debug-build-with-uclibc.patch │ │ │ ├── 5.6.3 │ │ │ │ ├── 0001-examples-photoviewer-needs-widgets-support.patch │ │ │ │ └── 0002-examples-qquickviewcomparison-and-quickwidget-needs-.patch │ │ │ ├── Config.in │ │ │ ├── qt5declarative.hash │ │ │ └── qt5declarative.mk │ │ ├── qt5enginio │ │ │ ├── Config.in │ │ │ ├── qt5enginio.hash │ │ │ └── qt5enginio.mk │ │ ├── qt5graphicaleffects │ │ │ ├── Config.in │ │ │ ├── qt5graphicaleffects.hash │ │ │ └── qt5graphicaleffects.mk │ │ ├── qt5imageformats │ │ │ ├── Config.in │ │ │ ├── qt5imageformats.hash │ │ │ └── qt5imageformats.mk │ │ ├── qt5location │ │ │ ├── Config.in │ │ │ ├── qt5location.hash │ │ │ └── qt5location.mk │ │ ├── qt5multimedia │ │ │ ├── Config.in │ │ │ ├── qt5multimedia.hash │ │ │ └── qt5multimedia.mk │ │ ├── qt5quickcontrols │ │ │ ├── Config.in │ │ │ ├── qt5quickcontrols.hash │ │ │ └── qt5quickcontrols.mk │ │ ├── qt5quickcontrols2 │ │ │ ├── 5.12.7 │ │ │ │ └── qt5quickcontrols2.hash │ │ │ ├── 5.6.3 │ │ │ │ └── qt5quickcontrols2.hash │ │ │ ├── Config.in │ │ │ ├── qt5quickcontrols2.hash │ │ │ └── qt5quickcontrols2.mk │ │ ├── qt5script │ │ │ ├── 0001-Detect-32-bits-armv8-a-architecture.patch │ │ │ ├── Config.in │ │ │ ├── qt5script.hash │ │ │ └── qt5script.mk │ │ ├── qt5scxml │ │ │ ├── Config.in │ │ │ ├── qt5scxml.hash │ │ │ └── qt5scxml.mk │ │ ├── qt5sensors │ │ │ ├── Config.in │ │ │ ├── qt5sensors.hash │ │ │ └── qt5sensors.mk │ │ ├── qt5serialbus │ │ │ ├── 5.12.7 │ │ │ │ └── qt5serialbus.hash │ │ │ ├── 5.6.3 │ │ │ │ ├── 0001-SocketCAN-Fix-compiler-error-SIOCGSTAMP-was-not-declared.patch │ │ │ │ └── qt5serialbus.hash │ │ │ ├── Config.in │ │ │ ├── qt5serialbus.hash │ │ │ └── qt5serialbus.mk │ │ ├── qt5serialport │ │ │ ├── 5.12.7 │ │ │ │ └── qt5serialport.hash │ │ │ ├── 5.6.3 │ │ │ │ └── qt5serialport.hash │ │ │ ├── Config.in │ │ │ ├── qt5serialport.hash │ │ │ └── qt5serialport.mk │ │ ├── qt5svg │ │ │ ├── Config.in │ │ │ ├── qt5svg.hash │ │ │ └── qt5svg.mk │ │ ├── qt5tools │ │ │ ├── Config.in │ │ │ ├── qt5tools.hash │ │ │ └── qt5tools.mk │ │ ├── qt5virtualkeyboard │ │ │ ├── 2.0 │ │ │ │ ├── 0001-remove-weird-install-path-for-example.patch │ │ │ │ └── qt5virtualkeyboard.hash │ │ │ ├── 5.12.7 │ │ │ │ └── qt5virtualkeyboard.hash │ │ │ ├── Config.in │ │ │ ├── qt5virtualkeyboard.hash │ │ │ └── qt5virtualkeyboard.mk │ │ ├── qt5wayland │ │ │ ├── Config.in │ │ │ ├── qt5wayland.hash │ │ │ └── qt5wayland.mk │ │ ├── qt5webchannel │ │ │ ├── Config.in │ │ │ ├── qt5webchannel.hash │ │ │ └── qt5webchannel.mk │ │ ├── qt5webengine │ │ │ ├── 5.12.7 │ │ │ │ ├── 0001-pkg_config-Fixes-when-use_sysroot-false.patch │ │ │ │ └── qt5webengine.hash │ │ │ ├── 5.6.3 │ │ │ │ ├── 0001-Change-default-SSL-directory.patch │ │ │ │ ├── 0002-Load-libEGL-and-libGLES2-symbols-implicitly.patch │ │ │ │ └── qt5webengine.hash │ │ │ ├── Config.in │ │ │ ├── chromium-latest.inc │ │ │ ├── chromium-lts.inc │ │ │ ├── host-pkg-config.in │ │ │ └── qt5webengine.mk │ │ ├── qt5webkit-examples │ │ │ ├── 0001-Build-examples.patch │ │ │ ├── 0002-Fix-QWebView-path.patch │ │ │ ├── Config.in │ │ │ ├── qt5webkit-examples.hash │ │ │ └── qt5webkit-examples.mk │ │ ├── qt5webkit │ │ │ ├── 5.6.3 │ │ │ │ ├── 0001-qtwebkit-fix-QA-issue-bad-RPATH.patch │ │ │ │ ├── 0002-Remove-TEXTREL-tag-in-x86.patch │ │ │ │ ├── 0003-Exclude-backtrace-API-for-non-glibc-libraries.patch │ │ │ │ ├── 0004-Fix-compilation-with-ICU-59.patch │ │ │ │ └── 0005-Detect-32-bits-armv8-a-architecture.patch │ │ │ ├── 5.9.1 │ │ │ │ ├── 0001-qtwebkit-fix-QA-issue-bad-RPATH.patch │ │ │ │ ├── 0002-Exclude-backtrace-API-for-non-glibc-libraries.patch │ │ │ │ ├── 0003-Detect-32-bits-armv8-a-architecture.patch │ │ │ │ ├── 0004-Fix-installation-of-class-headers.patch │ │ │ │ └── 0005-Fix-ICU-related-compile-failures.patch │ │ │ ├── Config.in │ │ │ ├── qt5webkit.hash │ │ │ └── qt5webkit.mk │ │ ├── qt5websockets │ │ │ ├── Config.in │ │ │ ├── qt5websockets.hash │ │ │ └── qt5websockets.mk │ │ ├── qt5webview │ │ │ ├── Config.in │ │ │ ├── qt5webview.hash │ │ │ └── qt5webview.mk │ │ ├── qt5x11extras │ │ │ ├── 5.12.7 │ │ │ │ └── qt5x11extras.hash │ │ │ ├── 5.6.3 │ │ │ │ └── qt5x11extras.hash │ │ │ ├── Config.in │ │ │ └── qt5x11extras.mk │ │ └── qt5xmlpatterns │ │ │ ├── Config.in │ │ │ ├── qt5xmlpatterns.hash │ │ │ └── qt5xmlpatterns.mk │ ├── qt5cinex │ │ ├── 0001-Fix-execution-problem-with-Qt5.3.patch │ │ ├── CinematicExperience-demo │ │ ├── Config.in │ │ ├── qt5cinex.hash │ │ └── qt5cinex.mk │ ├── quagga │ │ ├── 0001-fix-ipctl-forwarding.patch │ │ ├── Config.in │ │ ├── quagga.hash │ │ ├── quagga.mk │ │ ├── quagga@.service │ │ └── quagga_tmpfiles.conf │ ├── quazip │ │ ├── 0001-fix-qztest-build-error.patch │ │ ├── Config.in │ │ ├── quazip.hash │ │ └── quazip.mk │ ├── quota │ │ ├── 0001-configure.ac-add-disable-pie-option.patch │ │ ├── Config.in │ │ ├── quota.hash │ │ └── quota.mk │ ├── quotatool │ │ ├── 0001-fix-missing-__P-definition-for-musl-compile.patch │ │ ├── Config.in │ │ ├── quotatool.hash │ │ └── quotatool.mk │ ├── qwt │ │ ├── Config.in │ │ ├── qwt.hash │ │ └── qwt.mk │ ├── rabbitmq-c │ │ ├── Config.in │ │ ├── rabbitmq-c.hash │ │ └── rabbitmq-c.mk │ ├── rabbitmq-server │ │ ├── Config.in │ │ ├── S50rabbitmq-server │ │ ├── rabbitmq-server.hash │ │ ├── rabbitmq-server.mk │ │ └── rabbitmq-server.service │ ├── racehound │ │ ├── 0001-Fix-module-install-path-lib-instead-of-usr-lib-prefi.patch │ │ ├── Config.in │ │ ├── racehound.hash │ │ └── racehound.mk │ ├── radvd │ │ ├── 0002-Don-t-force-fstack-protector-the-toolchain-might-lac.patch │ │ ├── Config.in │ │ ├── S50radvd │ │ ├── radvd.hash │ │ └── radvd.mk │ ├── ramsmp │ │ ├── Config.in │ │ ├── Makefile │ │ ├── ramsmp.hash │ │ └── ramsmp.mk │ ├── ramspeed │ │ ├── Config.in │ │ ├── Makefile │ │ ├── ramspeed.hash │ │ └── ramspeed.mk │ ├── ranger │ │ ├── 0001-colorscheme-check-for-compiled-python-files.patch │ │ ├── Config.in │ │ ├── ranger.hash │ │ └── ranger.mk │ ├── rapidjson │ │ ├── Config.in │ │ ├── rapidjson.hash │ │ └── rapidjson.mk │ ├── rapidxml │ │ ├── 0001-ensure-internal-print-operations-are-declared-before.patch │ │ ├── Config.in │ │ ├── rapidxml.hash │ │ └── rapidxml.mk │ ├── raptor │ │ ├── 0001-configure.ac-remove-conditional-lib-inclusion.patch │ │ ├── Config.in │ │ ├── raptor.hash │ │ └── raptor.mk │ ├── raspberrypi-usbboot │ │ ├── 0001-Makefile-allow-passing-CFLAGS-LDFLAGS.patch │ │ ├── 0002-Makefile-add-DESTDIR-support.patch │ │ ├── 0003-main.c-rework-logic-to-find-def1-def2-and-def3-files.patch │ │ ├── Config.in.host │ │ ├── raspberrypi-usbboot.hash │ │ └── raspberrypi-usbboot.mk │ ├── raspi-gpio │ │ ├── Config.in │ │ ├── raspi-gpio.hash │ │ └── raspi-gpio.mk │ ├── ratpoison │ │ ├── Config.in │ │ ├── ratpoison.hash │ │ └── ratpoison.mk │ ├── rauc │ │ ├── Config.in │ │ ├── Config.in.host │ │ ├── rauc.hash │ │ └── rauc.mk │ ├── rcw │ │ ├── Config.in.host │ │ ├── rcw.hash │ │ └── rcw.mk │ ├── rdesktop │ │ ├── 0001-8bit-colors.patch │ │ ├── Config.in │ │ ├── rdesktop.hash │ │ └── rdesktop.mk │ ├── read-edid │ │ ├── 0001-Fix-install-file-list.patch │ │ ├── 0002-Fix-compiler-check.patch │ │ ├── Config.in │ │ ├── read-edid.hash │ │ └── read-edid.mk │ ├── readline │ │ ├── 0000-curses-link.patch │ │ ├── Config.in │ │ ├── inputrc │ │ ├── readline.hash │ │ └── readline.mk │ ├── reaver │ │ ├── 0001-fix-271.patch │ │ ├── Config.in │ │ ├── reaver.hash │ │ └── reaver.mk │ ├── redis │ │ ├── 0001-uclibc.patch │ │ ├── 0002-largefile-conditional-define.patch │ │ ├── 0003-redis.conf-adjust-defauts-for-buildroot.patch │ │ ├── Config.in │ │ ├── S50redis │ │ ├── redis.hash │ │ ├── redis.mk │ │ └── redis.service │ ├── refpolicy │ │ ├── Config.in │ │ ├── config │ │ ├── refpolicy.hash │ │ └── refpolicy.mk │ ├── restclient-cpp │ │ ├── Config.in │ │ ├── restclient-cpp.hash │ │ └── restclient-cpp.mk │ ├── restorecond │ │ ├── Config.in │ │ ├── restorecond.hash │ │ └── restorecond.mk │ ├── rhash │ │ ├── Config.in │ │ ├── rhash.hash │ │ └── rhash.mk │ ├── riemann-c-client │ │ ├── Config.in │ │ ├── riemann-c-client.hash │ │ └── riemann-c-client.mk │ ├── rings │ │ ├── Config.in │ │ ├── rings.hash │ │ └── rings.mk │ ├── ripgrep │ │ ├── Config.in │ │ ├── ripgrep.hash │ │ └── ripgrep.mk │ ├── rng-tools │ │ ├── Config.in │ │ ├── S21rngd │ │ ├── rng-tools.hash │ │ ├── rng-tools.mk │ │ └── rngd.service │ ├── rocksdb │ │ ├── 0001-Check-for-sys-auxv.h.patch │ │ ├── 0002-Add-an-option-to-the-CMake-build-to-disable-building-shared-libraries.patch │ │ ├── Config.in │ │ ├── rocksdb.hash │ │ └── rocksdb.mk │ ├── rp-pppoe │ │ ├── 0002-krn-plugin.patch │ │ ├── Config.in │ │ ├── rp-pppoe.hash │ │ └── rp-pppoe.mk │ ├── rpcbind │ │ ├── 0001-Remove-yellow-pages-support.patch │ │ ├── Config.in │ │ ├── S30rpcbind │ │ ├── rpcbind.hash │ │ ├── rpcbind.mk │ │ ├── rpcbind.service │ │ └── rpcbind.socket │ ├── rpi-bt-firmware │ │ ├── Config.in │ │ ├── rpi-bt-firmware.hash │ │ └── rpi-bt-firmware.mk │ ├── rpi-firmware │ │ ├── Config.in │ │ ├── cmdline.txt │ │ ├── config.txt │ │ ├── rpi-firmware.hash │ │ └── rpi-firmware.mk │ ├── rpi-userland │ │ ├── 0001-Add-.pc-files-for-the-OpenGLESv2-EGL-and-bcm_host-li.patch │ │ ├── 0002-interface-remove-faulty-assert-to-make-weston-happy-.patch │ │ ├── 0003-Disable-Werror-everywhere.patch │ │ ├── 0004-host-applications-disable-missing-applications.patch │ │ ├── 0005-dtmerge-add-missing-include-for-va_list.patch │ │ ├── Config.in │ │ ├── rpi-userland.hash │ │ └── rpi-userland.mk │ ├── rpi-wifi-firmware │ │ ├── Config.in │ │ ├── rpi-wifi-firmware.hash │ │ └── rpi-wifi-firmware.mk │ ├── rpm │ │ ├── 0001-configure-ac-prefer-pkg-config-to-find-libgcrypt.patch │ │ ├── Config.in │ │ ├── rpm.hash │ │ └── rpm.mk │ ├── rrdtool │ │ ├── Config.in │ │ ├── rrdtool.hash │ │ └── rrdtool.mk │ ├── rs485conf │ │ ├── Config.in │ │ ├── rs485conf.hash │ │ └── rs485conf.mk │ ├── rsh-redone │ │ ├── Config.in │ │ ├── rsh-redone.hash │ │ └── rsh-redone.mk │ ├── rsync │ │ ├── Config.in │ │ ├── rsync.hash │ │ └── rsync.mk │ ├── rsyslog │ │ ├── Config.in │ │ ├── S01rsyslogd │ │ ├── rsyslog.hash │ │ └── rsyslog.mk │ ├── rt-tests │ │ ├── 0001-Fix-various-minor-issues-with-rt-tests-build-system.patch │ │ ├── 0002-Fix-a-build-issue-with-uClibc-ng.patch │ │ ├── 0003-Add-syscall-number-for-sched_-gs-etattr-for-SH4.patch │ │ ├── Config.in │ │ ├── rt-tests.hash │ │ └── rt-tests.mk │ ├── rtai │ │ ├── Config.in │ │ ├── rtai.hash │ │ └── rtai.mk │ ├── rtc-tools │ │ ├── Config.in │ │ ├── rtc-tools.hash │ │ └── rtc-tools.mk │ ├── rtl8188eu │ │ ├── Config.in │ │ ├── rtl8188eu.hash │ │ └── rtl8188eu.mk │ ├── rtl8189fs │ │ ├── Config.in │ │ ├── rtl8189fs.hash │ │ └── rtl8189fs.mk │ ├── rtl8723bs │ │ ├── 0001-rtl8723bs-add-debug-level-modparam.patch │ │ ├── Config.in │ │ └── rtl8723bs.mk │ ├── rtl8723bu │ │ ├── Config.in │ │ ├── rtl8723bu.hash │ │ └── rtl8723bu.mk │ ├── rtl8821au │ │ ├── Config.in │ │ ├── rtl8821au.hash │ │ └── rtl8821au.mk │ ├── rtmpdump │ │ ├── 0001-include-limits.h.patch │ │ ├── Config.in │ │ ├── rtmpdump.hash │ │ └── rtmpdump.mk │ ├── rtorrent │ │ ├── Config.in │ │ ├── rtorrent.hash │ │ └── rtorrent.mk │ ├── rtptools │ │ ├── Config.in │ │ ├── rtptools.hash │ │ └── rtptools.mk │ ├── rubix │ │ ├── 0001-dont-use-legacy-functions.patch │ │ ├── 0002-misc-fixes.patch │ │ ├── Config.in │ │ ├── rubix.hash │ │ └── rubix.mk │ ├── ruby │ │ ├── Config.in │ │ ├── ruby.hash │ │ └── ruby.mk │ ├── runc │ │ ├── Config.in │ │ ├── runc.hash │ │ └── runc.mk │ ├── rust-bin │ │ ├── rust-bin.hash │ │ └── rust-bin.mk │ ├── rust │ │ ├── 0001-Workaround-presence-of-LLVM-library-in-stage0-lib.patch │ │ ├── rust.hash │ │ └── rust.mk │ ├── rustc │ │ ├── Config.in.host │ │ └── rustc.mk │ ├── rygel │ │ ├── Config.in │ │ ├── S99rygel │ │ ├── rygel.hash │ │ ├── rygel.mk │ │ └── rygel.service │ ├── s6-dns │ │ ├── Config.in │ │ ├── s6-dns.hash │ │ └── s6-dns.mk │ ├── s6-linux-init │ │ ├── Config.in │ │ ├── s6-linux-init.hash │ │ └── s6-linux-init.mk │ ├── s6-linux-utils │ │ ├── Config.in │ │ ├── s6-linux-utils.hash │ │ └── s6-linux-utils.mk │ ├── s6-networking │ │ ├── Config.in │ │ ├── s6-networking.hash │ │ └── s6-networking.mk │ ├── s6-portable-utils │ │ ├── Config.in │ │ ├── s6-portable-utils.hash │ │ └── s6-portable-utils.mk │ ├── s6-rc │ │ ├── Config.in │ │ ├── Config.in.host │ │ ├── s6-rc.hash │ │ └── s6-rc.mk │ ├── s6 │ │ ├── Config.in │ │ ├── s6.hash │ │ └── s6.mk │ ├── safeclib │ │ ├── Config.in │ │ ├── safeclib.hash │ │ └── safeclib.mk │ ├── sam-ba │ │ ├── Config.in.host │ │ ├── sam-ba.hash │ │ └── sam-ba.mk │ ├── samba4 │ │ ├── 0001-libreplace-disable-libbsd-support.patch │ │ ├── 0002-build-find-pre-built-heimdal-build-tools-in-case-of-.patch │ │ ├── 0003-Fix-unistd.h-include.patch │ │ ├── Config.in │ │ ├── S91smb │ │ ├── samba4-cache.txt │ │ ├── samba4.hash │ │ └── samba4.mk │ ├── sane-backends │ │ ├── 0001-sane_backend-add-missing-config.h.patch │ │ ├── Config.in │ │ ├── sane-backends.hash │ │ ├── sane-backends.mk │ │ ├── saned.socket │ │ └── saned@.service │ ├── sbc │ │ ├── Config.in │ │ ├── sbc.hash │ │ └── sbc.mk │ ├── sconeserver │ │ ├── Config.in │ │ ├── sconeserver.hash │ │ └── sconeserver.mk │ ├── scons │ │ ├── scons.hash │ │ └── scons.mk │ ├── screen │ │ ├── 0001-no-memcpy-fallback.patch │ │ ├── 0002-install-no-backup-binary.patch │ │ ├── 0003-install-always-chmod.patch │ │ ├── 0004-install-nonversioned-binary.patch │ │ ├── 0005-rename-sched_h.patch │ │ ├── 0006-comm-h-now-depends-on-term-h.patch │ │ ├── 0007-comm.h-needed-for-list_-display-generic-.o.patch │ │ ├── Config.in │ │ ├── screen.hash │ │ └── screen.mk │ ├── scrub │ │ ├── 0001-configure-ac-make-sure-m4-macros-are-included-in-the-build.patch │ │ ├── Config.in │ │ ├── scrub.hash │ │ └── scrub.mk │ ├── scrypt │ │ ├── Config.in │ │ ├── scrypt.hash │ │ └── scrypt.mk │ ├── sdbusplus │ │ ├── Config.in │ │ ├── Config.in.host │ │ ├── sdbusplus.hash │ │ └── sdbusplus.mk │ ├── sdl │ │ ├── 0001-use-correct-directfb-config.patch │ │ ├── 0002-fix-compilation-with-libx11.patch │ │ ├── Config.in │ │ ├── sdl.hash │ │ └── sdl.mk │ ├── sdl2 │ │ ├── 0001-fix-build-with-disable-threads.patch │ │ ├── 0002-fix-busy-loop-in-dlopen.patch │ │ ├── Config.in │ │ ├── sdl2.hash │ │ └── sdl2.mk │ ├── sdl2_gfx │ │ ├── Config.in │ │ ├── sdl2_gfx.hash │ │ └── sdl2_gfx.mk │ ├── sdl2_image │ │ ├── Config.in │ │ ├── sdl2_image.hash │ │ └── sdl2_image.mk │ ├── sdl2_mixer │ │ ├── Config.in │ │ ├── sdl2_mixer.hash │ │ └── sdl2_mixer.mk │ ├── sdl2_net │ │ ├── Config.in │ │ ├── sdl2_net.hash │ │ └── sdl2_net.mk │ ├── sdl2_ttf │ │ ├── Config.in │ │ ├── sdl2_ttf.hash │ │ └── sdl2_ttf.mk │ ├── sdl_gfx │ │ ├── Config.in │ │ ├── sdl_gfx.hash │ │ └── sdl_gfx.mk │ ├── sdl_image │ │ ├── Config.in │ │ ├── sdl_image.hash │ │ └── sdl_image.mk │ ├── sdl_mixer │ │ ├── 0001-Add-Libs.private-field-to-pkg-config-file.patch │ │ ├── 0002-add-LDFLAGS-while-linking.patch │ │ ├── 0003-Fix-include-of-modplug.h.patch │ │ ├── 0004-configure__set_macro_directory.patch │ │ ├── Config.in │ │ ├── sdl_mixer.hash │ │ └── sdl_mixer.mk │ ├── sdl_net │ │ ├── Config.in │ │ ├── sdl_net.hash │ │ └── sdl_net.mk │ ├── sdl_sound │ │ ├── 0001-fix-constness.patch │ │ ├── 0002-remove-werror.patch │ │ ├── 0003-renamed-physfs-export.patch │ │ ├── Config.in │ │ ├── sdl_sound.hash │ │ └── sdl_sound.mk │ ├── sdl_ttf │ │ ├── Config.in │ │ ├── sdl_ttf.hash │ │ └── sdl_ttf.mk │ ├── sdparm │ │ ├── Config.in │ │ ├── sdparm.hash │ │ └── sdparm.mk │ ├── sed │ │ ├── Config.in │ │ ├── sed.hash │ │ └── sed.mk │ ├── sedutil │ │ ├── 0001-Common-log.h-time-2-needs-time.h.patch │ │ ├── Config.in │ │ ├── sedutil.hash │ │ └── sedutil.mk │ ├── selinux-python │ │ ├── Config.in │ │ ├── selinux-python.hash │ │ └── selinux-python.mk │ ├── semodule-utils │ │ ├── Config.in │ │ ├── semodule-utils.hash │ │ └── semodule-utils.mk │ ├── ser2net │ │ ├── Config.in │ │ ├── S50ser2net │ │ ├── ser2net.hash │ │ └── ser2net.mk │ ├── setools │ │ ├── 0001-remove-werror-flag-from-setup.patch │ │ ├── 0002-Do-not-export-use-setools.InfoFlowAnalysis-and-setoo.patch │ │ ├── 0003-setup.py-drop-path-prefix-from-man-install.patch │ │ ├── Config.in │ │ ├── setools.hash │ │ └── setools.mk │ ├── setserial │ │ ├── 0001-build-system-fix.patch │ │ ├── 0002-tiocghayesesp-build-fix.patch │ │ ├── Config.in │ │ ├── setserial.hash │ │ └── setserial.mk │ ├── sg3_utils │ │ ├── 0001-support-uclinux-as-a-linux.patch │ │ ├── 0002-src-Makefile.am-add-missing-RT_LIB-for-sg_turs.patch │ │ ├── Config.in │ │ ├── sg3_utils.hash │ │ └── sg3_utils.mk │ ├── shadowsocks-libev │ │ ├── Config.in │ │ ├── shadowsocks-libev.hash │ │ └── shadowsocks-libev.mk │ ├── shairport-sync │ │ ├── Config.in │ │ ├── S99shairport-sync │ │ ├── shairport-sync.hash │ │ └── shairport-sync.mk │ ├── shapelib │ │ ├── Config.in │ │ ├── shapelib.hash │ │ └── shapelib.mk │ ├── shared-mime-info │ │ ├── 0001-Remove-incorrect-dependency-from-install-data-hook.patch │ │ ├── Config.in │ │ ├── shared-mime-info.hash │ │ └── shared-mime-info.mk │ ├── shellinabox │ │ ├── 0001-Makefile-disable-always-building-statically.patch │ │ ├── Config.in │ │ ├── shellinabox.hash │ │ └── shellinabox.mk │ ├── sigrok-cli │ │ ├── Config.in │ │ ├── sigrok-cli.hash │ │ └── sigrok-cli.mk │ ├── sispmctl │ │ ├── Config.in │ │ ├── sispmctl.hash │ │ └── sispmctl.mk │ ├── skalibs │ │ ├── 0001-Make-linker-use-dummy-file-when-testing-libs.patch │ │ ├── Config.in │ │ ├── skalibs.hash │ │ └── skalibs.mk │ ├── skeleton-custom │ │ ├── Config.in │ │ └── skeleton-custom.mk │ ├── skeleton-init-common │ │ ├── Config.in │ │ └── skeleton-init-common.mk │ ├── skeleton-init-none │ │ ├── Config.in │ │ └── skeleton-init-none.mk │ ├── skeleton-init-openrc │ │ ├── Config.in │ │ ├── skeleton-init-openrc.mk │ │ └── skeleton │ │ │ ├── dev │ │ │ └── log │ │ │ ├── etc │ │ │ ├── conf.d │ │ │ │ └── .empty │ │ │ ├── fstab │ │ │ └── runlevels │ │ │ │ └── default │ │ │ │ ├── .empty │ │ │ │ └── sysv-rcs │ │ │ └── var │ │ │ ├── cache │ │ │ ├── lib │ │ │ └── misc │ │ │ ├── lock │ │ │ ├── log │ │ │ ├── run │ │ │ ├── spool │ │ │ └── tmp │ ├── skeleton-init-systemd │ │ ├── Config.in │ │ └── skeleton-init-systemd.mk │ ├── skeleton-init-sysv │ │ ├── Config.in │ │ ├── skeleton-init-sysv.mk │ │ └── skeleton │ │ │ ├── dev │ │ │ ├── log │ │ │ ├── pts │ │ │ │ └── .empty │ │ │ └── shm │ │ │ │ └── .empty │ │ │ ├── etc │ │ │ └── fstab │ │ │ └── var │ │ │ ├── cache │ │ │ ├── lib │ │ │ └── misc │ │ │ ├── lock │ │ │ ├── log │ │ │ ├── run │ │ │ ├── spool │ │ │ └── tmp │ ├── skeleton │ │ ├── Config.in │ │ └── skeleton.mk │ ├── sl │ │ ├── Config.in │ │ ├── sl.hash │ │ └── sl.mk │ ├── slang │ │ ├── 0001-slsh-libs.patch │ │ ├── Config.in │ │ ├── slang.hash │ │ └── slang.mk │ ├── slirp │ │ ├── Config.in │ │ └── slirp.mk │ ├── smack │ │ ├── Config.in │ │ ├── smack.hash │ │ └── smack.mk │ ├── smartmontools │ │ ├── Config.in │ │ ├── smartmontools.hash │ │ └── smartmontools.mk │ ├── smcroute │ │ ├── Config.in │ │ ├── smcroute.hash │ │ └── smcroute.mk │ ├── smstools3 │ │ ├── 0001-fix-Makefile.patch │ │ ├── Config.in │ │ ├── S50smsd │ │ ├── smstools3.hash │ │ └── smstools3.mk │ ├── snappy │ │ ├── Config.in │ │ ├── snappy.hash │ │ └── snappy.mk │ ├── sngrep │ │ ├── 0001-capture-fix-typo-in-FILE-object.patch │ │ ├── Config.in │ │ ├── sngrep.hash │ │ └── sngrep.mk │ ├── snmpclitools │ │ ├── Config.in │ │ ├── snmpclitools.hash │ │ └── snmpclitools.mk │ ├── snmppp │ │ ├── Config.in │ │ ├── snmppp.hash │ │ └── snmppp.mk │ ├── snort │ │ ├── 0001-configure.in-Avoid-path-poisoning-with-libpcap.patch │ │ ├── 0002-configure.in-Allow-to-override-the-INADDR_NONE-check.patch │ │ ├── 0003-configure.in-convert-AC_RUN_IFELSE-to-AC_CHECK_MEMBE.patch │ │ ├── 0004-configure.in-convert-AC_RUN_IFELSE-to-AC_COMPILE_IFE.patch │ │ ├── 0005-fix-sparc.patch │ │ ├── 0006-Fix-compile-error-when-building-against-uclibc-or-mu.patch │ │ ├── 0007-Fix-error-when-building-on-a-Fedora-host-machine.patch │ │ ├── Config.in │ │ ├── snort.hash │ │ └── snort.mk │ ├── socat │ │ ├── 0001-no-documentation.patch │ │ ├── 0002-compat-set-NETDB_INTERNAL.patch │ │ ├── Config.in │ │ ├── socat.hash │ │ └── socat.mk │ ├── socketcand │ │ ├── Config.in │ │ ├── socketcand.hash │ │ └── socketcand.mk │ ├── sofia-sip │ │ ├── 0001-soa_tag.h-reintroduce-soatag_local_sdp_str_ref.patch │ │ ├── Config.in │ │ ├── sofia-sip.hash │ │ └── sofia-sip.mk │ ├── softether │ │ ├── 0001-Create-autotools-plumbing-for-SoftEther.patch │ │ ├── 0002-Create-libsoftether.so-and-dynamically-link.patch │ │ ├── 0003-use-fhs-install-directories.patch │ │ ├── 0004-create-non-forking-softetherd-for-upstart-and-systemd.patch │ │ ├── 0005-change-GetExeDir-to-GetStateDir-in-Cedar-and-Mayaqua.patch │ │ ├── 0006-cross-compile.patch │ │ ├── 0007-iconv.patch │ │ ├── 0008-librt.patch │ │ ├── 0009-uclibc-ai-addrconfig.patch │ │ ├── Config.in │ │ ├── softether.hash │ │ └── softether.mk │ ├── solarus │ │ ├── 0001-cmake-remove-Werror.patch │ │ ├── Config.in │ │ ├── solarus.hash │ │ └── solarus.mk │ ├── sound-theme-borealis │ │ ├── Config.in │ │ ├── sound-theme-borealis.hash │ │ └── sound-theme-borealis.mk │ ├── sound-theme-freedesktop │ │ ├── Config.in │ │ ├── sound-theme-freedesktop.hash │ │ └── sound-theme-freedesktop.mk │ ├── sox │ │ ├── 0001-uclibc.patch │ │ ├── Config.in │ │ ├── sox.hash │ │ └── sox.mk │ ├── sp-oops-extract │ │ ├── 0001-Make-the-Makefile-more-cross-compiler-friendly.patch │ │ ├── 0002-stdint-cleanup.patch │ │ ├── Config.in │ │ ├── sp-oops-extract.hash │ │ └── sp-oops-extract.mk │ ├── spandsp │ │ ├── Config.in │ │ ├── spandsp.hash │ │ └── spandsp.mk │ ├── spawn-fcgi │ │ ├── Config.in │ │ ├── spawn-fcgi.hash │ │ └── spawn-fcgi.mk │ ├── spdlog │ │ ├── Config.in │ │ ├── spdlog.hash │ │ └── spdlog.mk │ ├── speex │ │ ├── 0001-thumb2-support.patch │ │ ├── Config.in │ │ ├── speex.hash │ │ └── speex.mk │ ├── speexdsp │ │ ├── Config.in │ │ ├── speexdsp.hash │ │ └── speexdsp.mk │ ├── sphinxbase │ │ ├── Config.in │ │ ├── sphinxbase.hash │ │ └── sphinxbase.mk │ ├── spi-tools │ │ ├── Config.in │ │ ├── spi-tools.hash │ │ └── spi-tools.mk │ ├── spice-protocol │ │ ├── Config.in │ │ ├── spice-protocol.hash │ │ └── spice-protocol.mk │ ├── spice │ │ ├── 0001-configure.ac-add-enable-tests.patch │ │ ├── Config.in │ │ ├── spice.hash │ │ └── spice.mk │ ├── spidermonkey │ │ ├── 0001-allow-newer-autoconf-versions.patch │ │ ├── 0002-allow-building-in-tree.patch │ │ ├── 0003-allow-unknown-configuration-options.patch │ │ ├── 0004-fix-building-with-musl.patch │ │ ├── 0005-add-riscv-support.patch │ │ ├── 0006-copy-headers-on-install-instead-of-symlinking.patch │ │ ├── 0007-ensure-proper-running-on-64-bit-and-32-bit-be-platforms.patch │ │ ├── 0008-save-and-restore-non-volatile-x28-on-ARM64-for-generated-unboxed-obje.patch │ │ ├── 0009-save-x28-before-clobbering-it-in-the-regex-compiler.patch │ │ ├── 0010-always-use-the-equivalent-year-to-determine-the-time-zone.patch │ │ ├── Config.in │ │ ├── spidermonkey.hash │ │ └── spidermonkey.mk │ ├── spidev_test │ │ ├── Config.in │ │ ├── spidev_test.hash │ │ └── spidev_test.mk │ ├── sqlcipher │ │ ├── Config.in │ │ ├── sqlcipher.hash │ │ └── sqlcipher.mk │ ├── sqlite │ │ ├── Config.in │ │ ├── sqlite.hash │ │ └── sqlite.mk │ ├── squashfs │ │ ├── Config.in │ │ ├── Config.in.host │ │ ├── squashfs.hash │ │ └── squashfs.mk │ ├── squeezelite │ │ ├── Config.in │ │ ├── squeezelite.hash │ │ └── squeezelite.mk │ ├── squid │ │ ├── 0001-acinclude-os-deps.m4-fix-cross-compilation.patch │ │ ├── Config.in │ │ ├── S97squid │ │ ├── squid.hash │ │ └── squid.mk │ ├── sredird │ │ ├── 0001-termio.patch │ │ ├── Config.in │ │ ├── sredird.hash │ │ └── sredird.mk │ ├── sshfs │ │ ├── Config.in │ │ ├── sshfs.hash │ │ └── sshfs.mk │ ├── sshguard │ │ ├── Config.in │ │ ├── S49sshguard │ │ ├── sshguard.hash │ │ └── sshguard.mk │ ├── sshpass │ │ ├── Config.in │ │ ├── sshpass.hash │ │ └── sshpass.mk │ ├── sslh │ │ ├── 0001-secure-version-while-building-sslh-in-a-larger-git-t.patch │ │ ├── Config.in │ │ ├── S35sslh │ │ ├── sslh.hash │ │ └── sslh.mk │ ├── start-stop-daemon │ │ ├── 0001-add-uclibc-alias-and-musl.patch │ │ ├── 0002-just-warn-on-missing-arch.patch │ │ ├── Config.in │ │ ├── start-stop-daemon.hash │ │ └── start-stop-daemon.mk │ ├── startup-notification │ │ ├── Config.in │ │ ├── startup-notification.hash │ │ └── startup-notification.mk │ ├── statserial │ │ ├── 0001-ncurses-link.patch │ │ ├── Config.in │ │ ├── statserial.hash │ │ └── statserial.mk │ ├── stella │ │ ├── 0001-Add-cross-compilation-support.patch │ │ ├── 0002-Do-not-strip-when-installing.patch │ │ ├── 0003-undef-PAGE_SIZE.patch │ │ ├── Config.in │ │ ├── stella.hash │ │ └── stella.mk │ ├── stellarium │ │ ├── Config.in │ │ ├── stellarium.hash │ │ └── stellarium.mk │ ├── stm32flash │ │ ├── Config.in │ │ ├── stm32flash.hash │ │ └── stm32flash.mk │ ├── strace │ │ ├── 0001-filter_seccomp-fix-no-MMU-build.patch │ │ ├── Config.in │ │ ├── strace.hash │ │ └── strace.mk │ ├── stress-ng │ │ ├── Config.in │ │ ├── stress-ng.hash │ │ └── stress-ng.mk │ ├── stress │ │ ├── Config.in │ │ ├── stress.hash │ │ └── stress.mk │ ├── strongswan │ │ ├── Config.in │ │ ├── strongswan.hash │ │ └── strongswan.mk │ ├── stunnel │ │ ├── Config.in │ │ ├── S50stunnel │ │ ├── stunnel.hash │ │ └── stunnel.mk │ ├── subversion │ │ ├── 0001-dont-mangle-cflags.patch │ │ ├── 0002-workaround-ac-run-ifelse.patch │ │ ├── Config.in │ │ ├── subversion.hash │ │ └── subversion.mk │ ├── sudo │ │ ├── Config.in │ │ ├── sudo.hash │ │ ├── sudo.mk │ │ └── sudo.pam │ ├── sunwait │ │ ├── Config.in │ │ ├── sunwait.hash │ │ └── sunwait.mk │ ├── sunxi-boards │ │ ├── Config.in │ │ ├── sunxi-boards.hash │ │ └── sunxi-boards.mk │ ├── sunxi-cedarx │ │ ├── Config.in │ │ ├── sunxi-cedarx.hash │ │ └── sunxi-cedarx.mk │ ├── sunxi-mali-mainline-driver │ │ ├── Config.in │ │ ├── sunxi-mali-mainline-driver.hash │ │ └── sunxi-mali-mainline-driver.mk │ ├── sunxi-mali-mainline │ │ ├── Config.in │ │ ├── egl.pc │ │ ├── glesv2.pc │ │ ├── sunxi-mali-mainline.hash │ │ └── sunxi-mali-mainline.mk │ ├── sunxi-tools │ │ ├── 0001-meminfo-Access-to-io-memory-via-pointers.patch │ │ ├── Config.in │ │ ├── Config.in.host │ │ ├── sunxi-tools.hash │ │ └── sunxi-tools.mk │ ├── supertux │ │ ├── 0001-Fix-build-on-PowerPC.patch │ │ ├── Config.in │ │ ├── supertux.hash │ │ └── supertux.mk │ ├── supertuxkart │ │ ├── Config.in │ │ ├── supertuxkart.hash │ │ └── supertuxkart.mk │ ├── supervisor │ │ ├── Config.in │ │ ├── S99supervisord │ │ ├── supervisor.hash │ │ ├── supervisor.mk │ │ ├── supervisord.conf │ │ └── supervisord.service │ ├── suricata │ │ ├── 0001-configure.ac-fix-static-build-with-pcap.patch │ │ ├── 0002-configure.ac-fix-disable-geoip.patch │ │ ├── 0003-python-ensure-proper-shabang-on-python-scripts.patch │ │ ├── Config.in │ │ ├── S99suricata │ │ ├── suricata.hash │ │ ├── suricata.mk │ │ └── suricata.service │ ├── swig │ │ ├── Config.in.host │ │ ├── swig.hash │ │ └── swig.mk │ ├── swupdate │ │ ├── Config.in │ │ ├── swupdate.config │ │ ├── swupdate.hash │ │ └── swupdate.mk │ ├── sylpheed │ │ ├── Config.in │ │ ├── sylpheed.hash │ │ └── sylpheed.mk │ ├── synergy │ │ ├── Config.in │ │ ├── synergy.hash │ │ └── synergy.mk │ ├── sysdig │ │ ├── Config.in │ │ ├── sysdig.hash │ │ └── sysdig.mk │ ├── sysklogd │ │ ├── Config.in │ │ ├── S01syslogd │ │ ├── S02klogd │ │ ├── klogd.service │ │ ├── sysklogd.hash │ │ ├── sysklogd.mk │ │ ├── syslog.conf │ │ └── syslogd.service │ ├── syslog-ng │ │ ├── 0001-fix-build-on-uclibc.patch │ │ ├── Config.in │ │ ├── S01syslog-ng │ │ ├── syslog-ng.conf │ │ ├── syslog-ng.hash │ │ ├── syslog-ng.mk │ │ └── syslog-ng@default │ ├── sysprof │ │ ├── 0001-define-NT_GNU_BUILD_ID.patch │ │ ├── Config.in │ │ ├── sysprof.hash │ │ └── sysprof.mk │ ├── sysrepo │ │ ├── 0001-sysrepo-plugind-CHANGE-create-plugins-dir-if-it-does.patch │ │ ├── 0002-sysrpeo-plugind-BUGFIX-create-plugins-dir-recursivel.patch │ │ ├── Config.in │ │ ├── S51sysrepo-plugind │ │ ├── sysrepo.hash │ │ └── sysrepo.mk │ ├── sysstat │ │ ├── Config.in │ │ ├── sysstat.hash │ │ └── sysstat.mk │ ├── systemd-bootchart │ │ ├── Config.in │ │ ├── systemd-bootchart.hash │ │ └── systemd-bootchart.mk │ ├── systemd │ │ ├── 80-buildroot.preset │ │ ├── Config.in │ │ ├── Config.in.host │ │ ├── boot-files │ │ │ ├── buildroot.conf │ │ │ └── loader.conf │ │ ├── dhcp.network │ │ ├── systemd.hash │ │ └── systemd.mk │ ├── sysvinit │ │ ├── Config.in │ │ ├── inittab │ │ ├── sysvinit.hash │ │ └── sysvinit.mk │ ├── szip │ │ ├── Config.in │ │ ├── szip.hash │ │ └── szip.mk │ ├── taglib │ │ ├── 0001-fix-taglib-config-file-for-cross-compiling-906.patch │ │ ├── Config.in │ │ ├── taglib.hash │ │ └── taglib.mk │ ├── tar │ │ ├── Config.in │ │ ├── tar.hash │ │ └── tar.mk │ ├── targetcli-fb │ │ ├── Config.in │ │ ├── S50target │ │ ├── target.service │ │ ├── targetcli-fb.hash │ │ └── targetcli-fb.mk │ ├── taskd │ │ ├── 0001-Fix-missing-cmakedefine-HAVE_GET_CURRENT_DIR_NAME.patch │ │ ├── 0002-Use-correct-variables-for-GnuTLS-detection.patch │ │ ├── 0003-CMakeLists-use-pkg-config-uuid-detection.patch │ │ ├── Config.in │ │ ├── taskd.hash │ │ └── taskd.mk │ ├── tcf-agent │ │ ├── Config.in │ │ ├── S55tcf-agent │ │ ├── tcf-agent.hash │ │ ├── tcf-agent.mk │ │ └── tcf-agent.service │ ├── tcl │ │ ├── 0001-dont-build-compat.patch │ │ ├── Config.in │ │ ├── tcl.hash │ │ └── tcl.mk │ ├── tclap │ │ ├── Config.in │ │ ├── tclap.hash │ │ └── tclap.mk │ ├── tcllib │ │ ├── Config.in │ │ ├── tcllib.hash │ │ └── tcllib.mk │ ├── tcpdump │ │ ├── Config.in │ │ ├── tcpdump.hash │ │ └── tcpdump.mk │ ├── tcping │ │ ├── Config.in │ │ ├── tcping.hash │ │ └── tcping.mk │ ├── tcpreplay │ │ ├── 0001-configure-ac-fix-without-libdnet.patch │ │ ├── Config.in │ │ ├── tcpreplay.hash │ │ └── tcpreplay.mk │ ├── tegrarcm │ │ ├── Config.in.host │ │ ├── tegrarcm.hash │ │ └── tegrarcm.mk │ ├── tekui │ │ ├── Config.in │ │ ├── tekui.hash │ │ └── tekui.mk │ ├── terminology │ │ ├── Config.in │ │ ├── terminology.hash │ │ └── terminology.mk │ ├── tesseract-ocr │ │ ├── 0001-Fix-timeval-structure-build-failure.patch │ │ ├── Config.in │ │ ├── tesseract-ocr.hash │ │ └── tesseract-ocr.mk │ ├── tftpd │ │ ├── Config.in │ │ ├── S80tftpd-hpa │ │ ├── tftpd.hash │ │ └── tftpd.mk │ ├── thermald │ │ ├── Config.in │ │ ├── thermald.hash │ │ └── thermald.mk │ ├── thrift │ │ ├── 0001-Force-to-keep-TPipedTransport-peek-to-avoid-linker-e.patch │ │ ├── Config.in │ │ ├── thrift.hash │ │ └── thrift.mk │ ├── thttpd │ │ ├── Config.in │ │ ├── S90thttpd │ │ ├── thttpd.hash │ │ ├── thttpd.mk │ │ └── thttpd.service │ ├── ti-cgt-pru │ │ ├── Config.in.host │ │ ├── ti-cgt-pru.hash │ │ └── ti-cgt-pru.mk │ ├── ti-gfx │ │ ├── 0001-newclkapi.patch │ │ ├── 0002-fix-build-omaplfb-linux.patch │ │ ├── 0003-km_install_modules.patch │ │ ├── Config.in │ │ ├── S80ti-gfx │ │ ├── egl.pc │ │ ├── esrev.sh │ │ ├── glesv2.pc │ │ ├── powervr.ini │ │ ├── ti-gfx.hash │ │ ├── ti-gfx.mk │ │ └── ti-gfx.service │ ├── ti-sgx-demos │ │ ├── Config.in │ │ ├── ti-sgx-demos.hash │ │ └── ti-sgx-demos.mk │ ├── ti-sgx-km │ │ ├── Config.in │ │ ├── ti-sgx-km.hash │ │ └── ti-sgx-km.mk │ ├── ti-sgx-libgbm │ │ ├── 0001-Add-missing-sys-sysmacros.h-include.patch │ │ ├── Config.in │ │ ├── ti-sgx-libgbm.hash │ │ └── ti-sgx-libgbm.mk │ ├── ti-sgx-um │ │ ├── 0001-Makefile-do-not-install-init-script.patch │ │ ├── Config.in │ │ ├── S80ti-sgx │ │ ├── ti-sgx-um.hash │ │ └── ti-sgx-um.mk │ ├── ti-uim │ │ ├── Config.in │ │ ├── ti-uim.hash │ │ └── ti-uim.mk │ ├── ti-utils │ │ ├── Config.in │ │ ├── ti-utils.hash │ │ └── ti-utils.mk │ ├── tiff │ │ ├── Config.in │ │ ├── tiff.hash │ │ └── tiff.mk │ ├── time │ │ ├── Config.in │ │ ├── time.hash │ │ └── time.mk │ ├── tinc │ │ ├── Config.in │ │ ├── tinc.hash │ │ └── tinc.mk │ ├── tini │ │ ├── Config.in │ │ ├── tini.hash │ │ └── tini.mk │ ├── tinyalsa │ │ ├── 0001-disable-doxygen-usage.patch │ │ ├── 0002-interval.h-add-missing-header.patch │ │ ├── Config.in │ │ ├── tinyalsa.hash │ │ └── tinyalsa.mk │ ├── tinycbor │ │ ├── Config.in │ │ ├── tinycbor.hash │ │ └── tinycbor.mk │ ├── tinydtls │ │ ├── 0001-Update-Makefile.in-to-allow-cross-compilation.patch │ │ ├── 0002-Fix-compilation-of-tests-directory.patch │ │ ├── Config.in │ │ ├── tinydtls.hash │ │ └── tinydtls.mk │ ├── tinyhttpd │ │ ├── 0001-misc-fixes.patch │ │ ├── Config.in │ │ ├── S85tinyhttpd │ │ ├── tinyhttpd.hash │ │ ├── tinyhttpd.mk │ │ └── tinyhttpd.service │ ├── tinymembench │ │ ├── 0001-arm-fix-build-on-Thumb-only-architectures.patch │ │ ├── Config.in │ │ ├── tinymembench.hash │ │ └── tinymembench.mk │ ├── tinyssh │ │ ├── Config.in │ │ ├── tinyssh.hash │ │ └── tinyssh.mk │ ├── tinyxml │ │ ├── Config.in │ │ ├── tinyxml.hash │ │ └── tinyxml.mk │ ├── tinyxml2 │ │ ├── Config.in │ │ ├── tinyxml2.hash │ │ └── tinyxml2.mk │ ├── tio │ │ ├── Config.in │ │ ├── tio.hash │ │ └── tio.mk │ ├── tk │ │ ├── Config.in │ │ ├── tk.hash │ │ └── tk.mk │ ├── tmux │ │ ├── Config.in │ │ ├── tmux.hash │ │ └── tmux.mk │ ├── tor │ │ ├── 0001-Fix-static-linking-with-OpenSSL.patch │ │ ├── Config.in │ │ ├── tor.hash │ │ └── tor.mk │ ├── tovid │ │ ├── 0001-manpage.patch │ │ ├── Config.in │ │ ├── tovid.hash │ │ └── tovid.mk │ ├── tpm-tools │ │ ├── Config.in │ │ ├── tpm-tools.hash │ │ └── tpm-tools.mk │ ├── tpm2-abrmd │ │ ├── Config.in │ │ ├── S80tpm2-abrmd │ │ ├── tpm2-abrmd.hash │ │ └── tpm2-abrmd.mk │ ├── tpm2-tools │ │ ├── Config.in │ │ ├── tpm2-tools.hash │ │ └── tpm2-tools.mk │ ├── tpm2-totp │ │ ├── Config.in │ │ ├── tpm2-totp.hash │ │ └── tpm2-totp.mk │ ├── tpm2-tss │ │ ├── 0001-Temporary-fix-for-build-without-C.patch │ │ ├── Config.in │ │ ├── tpm2-tss.hash │ │ └── tpm2-tss.mk │ ├── trace-cmd │ │ ├── 0001-trace-listen-add-missing-header.patch │ │ ├── Config.in │ │ ├── trace-cmd.hash │ │ └── trace-cmd.mk │ ├── traceroute │ │ ├── Config.in │ │ ├── traceroute.hash │ │ └── traceroute.mk │ ├── transmission │ │ ├── 0001-fix-utypes.patch │ │ ├── 0002-musl-missing-header.patch │ │ ├── 0003-fix-utp-include.patch │ │ ├── 0004-uClibc-ng-since-1.0.18-has-sys-quota.h-synced-with-G.patch │ │ ├── 0005-libsystemd.patch │ │ ├── Config.in │ │ ├── S92transmission │ │ ├── transmission.hash │ │ └── transmission.mk │ ├── tree │ │ ├── Config.in │ │ ├── tree.hash │ │ └── tree.mk │ ├── tremor │ │ ├── Config.in │ │ ├── tremor.hash │ │ └── tremor.mk │ ├── triggerhappy │ │ ├── Config.in │ │ ├── S10triggerhappy │ │ ├── triggerhappy.hash │ │ ├── triggerhappy.mk │ │ └── triggerhappy.service │ ├── trinity │ │ ├── Config.in │ │ ├── trinity.hash │ │ └── trinity.mk │ ├── trousers │ │ ├── 0001-Check-if-the-compiler-understands-pie-and-relro-options.patch │ │ ├── 0002-Check-that-getpwent_r-is-available-before-using-it.patch │ │ ├── Config.in │ │ ├── trousers.hash │ │ └── trousers.mk │ ├── ts4900-fpga │ │ ├── Config.in │ │ ├── ts4900-fpga.hash │ │ └── ts4900-fpga.mk │ ├── tslib │ │ ├── Config.in │ │ ├── tslib.hash │ │ └── tslib.mk │ ├── tstools │ │ ├── 0001-build-get-along-with-buildroot.patch │ │ ├── Config.in │ │ ├── tstools.hash │ │ └── tstools.mk │ ├── tunctl │ │ ├── Config.in │ │ ├── tunctl.hash │ │ └── tunctl.mk │ ├── turbolua │ │ ├── Config.in │ │ ├── turbolua.hash │ │ └── turbolua.mk │ ├── tvheadend │ │ ├── 0001-no-check_config.patch │ │ ├── Config.in │ │ ├── S99tvheadend │ │ ├── etc.default.tvheadend │ │ ├── tvheadend.hash │ │ └── tvheadend.mk │ ├── twolame │ │ ├── Config.in │ │ ├── twolame.hash │ │ └── twolame.mk │ ├── tz │ │ ├── Config.in │ │ └── tz.mk │ ├── tzdata │ │ ├── Config.in │ │ ├── tzdata.hash │ │ └── tzdata.mk │ ├── tzdump │ │ ├── tzdump.hash │ │ └── tzdump.mk │ ├── uacme │ │ ├── Config.in │ │ ├── uacme.hash │ │ └── uacme.mk │ ├── uboot-tools │ │ ├── 0001-drop-configh-from-tools.patch │ │ ├── 0002-tools-only-in-no-dot-config-targets.patch │ │ ├── 0003-drop-autoconf.h-from-tools.patch │ │ ├── Config.in │ │ ├── Config.in.host │ │ ├── uboot-tools.hash │ │ └── uboot-tools.mk │ ├── ubus │ │ ├── 0001-Install-server-and-client-examples.patch │ │ ├── Config.in │ │ ├── ubus.hash │ │ └── ubus.mk │ ├── uccp420wlan │ │ ├── Config.in │ │ ├── uccp420wlan.hash │ │ └── uccp420wlan.mk │ ├── ucl │ │ ├── ucl.hash │ │ └── ucl.mk │ ├── uclibc-ng-test │ │ ├── 0001-misc-tst-syscall6-fix-build-with-musl-and-older-kenr.patch │ │ ├── 0002-Add-NO_CRYPT-to-fix-build-with-glibc-2.28.patch │ │ ├── 0003-test-misc-test-nftw.c-fix-build-with-latest-glibc.patch │ │ ├── 0004-test-nptl-tst-mqueue4.c-fix-build-with-latest-glibc.patch │ │ ├── Config.in │ │ └── uclibc-ng-test.mk │ ├── uclibc │ │ ├── 0001-Make-__syscall_error-return-long-as-expected-by-sysc.patch │ │ ├── 0002-riscv64-add-shared-library-support.patch │ │ ├── 0003-implement-fexecve-from-glibc.patch │ │ ├── 0004-riscv64-lazy-relocations-do-not-work-like-sparc-m68k.patch │ │ ├── 0005-riscv64-implement-NPTL-TLS.patch │ │ ├── 0006-fix-PTRAVE_EVENT_SECCOMP-typo-in-ptrace.h.patch │ │ ├── 0007-Makefile.in-build-utils-without-stack-smashing-prote.patch │ │ ├── 0008-riscv64-fix-comments-borrowed-from-or1k-port.patch │ │ ├── 0009-riscv64-fix-DB_THREAD_SELF-fixes-4-testsuite-failure.patch │ │ ├── 0010-fix-getenv-bug.patch │ │ ├── 0011-poll-avoid-calling-select-with-empty-sets-which-hang.patch │ │ ├── 0012-Fix-map_newlink-abort-when-interface-list-changes-du.patch │ │ ├── 0013-csky-add-statx-conditionals.patch │ │ ├── 0014-include-ctype.h-drop-is-_l-macro-definitions.patch │ │ ├── 0015-aarch64-always-use-MMU.patch │ │ ├── 0016-common-bits-Fix-ipc_perm-and-semid_ds-definitions-fo.patch │ │ ├── 0017-aarch64-sys-update-ucontext.h.patch │ │ ├── 0018-aarch64-bits-provide-sigstack.h.patch │ │ ├── 0019-include-ctype.h-restore-__isctype_l-definition.patch │ │ ├── 0020-libintl-Fix-compilation-warning.patch │ │ ├── 0021-librt-Fix-compilation-error.patch │ │ ├── Config.in │ │ ├── uClibc-ng-riscv64-nommu.config │ │ ├── uClibc-ng.config │ │ ├── uclibc.hash │ │ └── uclibc.mk │ ├── udev │ │ ├── Config.in │ │ └── udev.mk │ ├── udftools │ │ ├── Config.in │ │ ├── udftools.hash │ │ └── udftools.mk │ ├── udisks │ │ ├── 0001-fix-build-with-newer-glibc-versions.patch │ │ ├── 0002-Fix-systemd-service-file.patch │ │ ├── 0003-Fix-compilation-issue-with-missing-sys-sysmacros.h-i.patch │ │ ├── Config.in │ │ ├── udisks.hash │ │ └── udisks.mk │ ├── udpcast │ │ ├── 0001-select-h.patch │ │ ├── Config.in │ │ ├── udpcast.hash │ │ └── udpcast.mk │ ├── udpxy │ │ ├── Config.in │ │ ├── udpxy.hash │ │ └── udpxy.mk │ ├── uemacs │ │ ├── 01-clear-ixon-termios-flag.patch │ │ ├── Config.in │ │ ├── uemacs.hash │ │ └── uemacs.mk │ ├── uftp │ │ ├── Config.in │ │ ├── uftp.hash │ │ └── uftp.mk │ ├── uhttpd │ │ ├── 0001-Remove-Werror.patch │ │ ├── 0002-Fix-TCP_FASTOPEN-related-compile-error.patch │ │ ├── Config.in │ │ ├── uhttpd.hash │ │ └── uhttpd.mk │ ├── uhubctl │ │ ├── Config.in │ │ ├── uhubctl.hash │ │ └── uhubctl.mk │ ├── ulogd │ │ ├── 0001-ulogd-fix-build-with-musl-libc.patch │ │ ├── Config.in │ │ ├── ulogd.hash │ │ └── ulogd.mk │ ├── umtprd │ │ ├── Config.in │ │ ├── umtprd.hash │ │ └── umtprd.mk │ ├── unionfs │ │ ├── 0001-include-asm-ioctl.h-for-_IOC_SIZE.patch │ │ ├── Config.in │ │ ├── unionfs.hash │ │ └── unionfs.mk │ ├── unixodbc │ │ ├── 0001-fix-nopthread.patch │ │ ├── Config.in │ │ ├── unixodbc.hash │ │ └── unixodbc.mk │ ├── unrar │ │ ├── Config.in │ │ ├── unrar.hash │ │ └── unrar.mk │ ├── unscd │ │ ├── Config.in │ │ ├── S46unscd │ │ ├── nscd.conf │ │ ├── unscd.hash │ │ └── unscd.mk │ ├── unzip │ │ ├── 0001-Add-a-CMakeFile.txt-to-ease-cross-compilation.patch │ │ ├── Config.in │ │ ├── unzip.hash │ │ └── unzip.mk │ ├── upmpdcli │ │ ├── Config.in │ │ ├── S99upmpdcli │ │ ├── upmpdcli.hash │ │ └── upmpdcli.mk │ ├── upower │ │ ├── Config.in │ │ ├── upower.hash │ │ └── upower.mk │ ├── upx │ │ ├── upx.hash │ │ └── upx.mk │ ├── urg │ │ ├── 0001-select-h.patch │ │ ├── 0002-urg-gcc6-fix-narrowing-conversion.patch │ │ ├── Config.in │ │ ├── urg.hash │ │ └── urg.mk │ ├── usb_modeswitch │ │ ├── Config.in │ │ ├── usb_modeswitch.hash │ │ └── usb_modeswitch.mk │ ├── usb_modeswitch_data │ │ ├── Config.in │ │ ├── usb_modeswitch_data.hash │ │ └── usb_modeswitch_data.mk │ ├── usbmount │ │ ├── 0001-rules-fix.patch │ │ ├── 0002-use-udev-environment-instead-of-blkid.patch │ │ ├── Config.in │ │ ├── usbmount.hash │ │ └── usbmount.mk │ ├── usbredir │ │ ├── Config.in │ │ ├── usbredir.hash │ │ └── usbredir.mk │ ├── usbutils │ │ ├── Config.in │ │ ├── usbutils.hash │ │ └── usbutils.mk │ ├── ushare │ │ ├── 0001-compile-fixes.patch │ │ ├── 0002-ushare-fix-building-with-gcc-5.x.patch │ │ ├── 0003-ushare-c-include-config-h-before-checking-for-CONFIG-NLS.patch │ │ ├── Config.in │ │ ├── ushare.hash │ │ └── ushare.mk │ ├── ussp-push │ │ ├── 0001-fix-build-against-bluez-4.patch │ │ ├── 0002-fix-build-again-obex-bluez.patch │ │ ├── 0003-add-OBEX_CharToUnicode.patch │ │ ├── Config.in │ │ ├── ussp-push.hash │ │ └── ussp-push.mk │ ├── ustream-ssl │ │ ├── Config.in │ │ ├── ustream-ssl.hash │ │ └── ustream-ssl.mk │ ├── utf8proc │ │ ├── Config.in │ │ ├── utf8proc.hash │ │ └── utf8proc.mk │ ├── util-linux │ │ ├── 0003-blkdiscard-use-O_EXCL-add-force.patch │ │ ├── 0004-libfdisk-add-fdisk_set_disklabel_id_from_string.patch │ │ ├── 0005-sfdisk-add-disk-id-to-change-disk-UUID-ID.patch │ │ ├── Config.in │ │ ├── Config.in.host │ │ ├── su.pam │ │ ├── util-linux.hash │ │ └── util-linux.mk │ ├── utp_com │ │ ├── Config.in.host │ │ ├── utp_com.hash │ │ └── utp_com.mk │ ├── uvw │ │ ├── Config.in │ │ ├── uvw.hash │ │ └── uvw.mk │ ├── ux500-firmware │ │ ├── Config.in │ │ ├── ux500-firmware.hash │ │ └── ux500-firmware.mk │ ├── v4l2grab │ │ ├── Config.in │ │ ├── v4l2grab.hash │ │ └── v4l2grab.mk │ ├── v4l2loopback │ │ ├── Config.in │ │ ├── v4l2loopback.hash │ │ └── v4l2loopback.mk │ ├── vala │ │ ├── 0001-dont-add-dirty-to-valac-version.patch │ │ ├── vala-wrapper │ │ ├── vala.hash │ │ └── vala.mk │ ├── valgrind │ │ ├── 0001-workaround-SIGSEGV-on-PPC.patch │ │ ├── 0002-Define-PTRACE_GETSIGINFO-on-PowerPC-when-not-availab.patch │ │ ├── 0003-mips-fix-mips32r6-and-mips64r6-compilation-issue.patch │ │ ├── Config.in │ │ ├── uclibc.supp │ │ ├── valgrind.hash │ │ └── valgrind.mk │ ├── valijson │ │ ├── Config.in │ │ ├── valijson.hash │ │ └── valijson.mk │ ├── vboot-utils │ │ ├── 0001-Add-missing-definition-of-MTD_CHAR_MAJOR.patch │ │ ├── 0002-Add-missing-header-include-for-ssize_t.patch │ │ ├── 0003-Avoid-RSA-type-redefinition.patch │ │ ├── 0004-Disable-static-futility.patch │ │ ├── 0005-include-sys-sysmacros.h-for-major.patch │ │ ├── 0006-Update-for-openssl-1.1.patch │ │ ├── Config.in.host │ │ ├── vboot-utils.hash │ │ └── vboot-utils.mk │ ├── vde2 │ │ ├── 0001-no-cxx.patch │ │ ├── 0002-fstp-Add-static-to-inline-functions.patch │ │ ├── Config.in │ │ ├── vde2.hash │ │ └── vde2.mk │ ├── vdr-plugin-vnsiserver │ │ ├── Config.in │ │ ├── vdr-plugin-vnsiserver.hash │ │ └── vdr-plugin-vnsiserver.mk │ ├── vdr │ │ ├── 0001-libjpeg.patch │ │ ├── Config.in │ │ ├── vdr.hash │ │ └── vdr.mk │ ├── vim │ │ ├── Config.in │ │ ├── vim.hash │ │ └── vim.mk │ ├── vlc │ │ ├── 0001-Disable-building-of-statically-linked-vlc-binary.patch │ │ ├── 0002-lua-Define-LUA_COMPAT_APIINTCASTS-for-Lua-5.3.0-comp.patch │ │ ├── 0003-automake-add-subdir-objects-option.patch │ │ ├── 0004-build-use-pkg-config-to-get-tremor-libs.patch │ │ ├── 0005-Fix-build-error-using-uClibc-by-adding-sys-types.h.patch │ │ ├── 0006-Don-t-assume-strerror_l-is-available.patch │ │ ├── 0007-posix-remove-ancient-run-time-fallback-to-real-time-.patch │ │ ├── 0008-Add-support-for-freerdp2.patch │ │ ├── 0009-configure.ac-also-use-AC_PATH_PROG-to-check-for-wayl.patch │ │ ├── Config.in │ │ ├── vlc.hash │ │ └── vlc.mk │ ├── vmtouch │ │ ├── Config.in │ │ ├── vmtouch.hash │ │ └── vmtouch.mk │ ├── vnstat │ │ ├── Config.in │ │ ├── vnstat.hash │ │ └── vnstat.mk │ ├── vo-aacenc │ │ ├── Config.in │ │ ├── vo-aacenc.hash │ │ └── vo-aacenc.mk │ ├── vorbis-tools │ │ ├── 0001-oggenc-Fix-large-alloca-on-bad-AIFF-input.patch │ │ ├── 0002-oggenc-validate-count-of-channels-in-the-header-CVE-.patch │ │ ├── 0003-oggenc-fix-crash-on-raw-file-close-reported-by-Hanno.patch │ │ ├── Config.in │ │ ├── vorbis-tools.hash │ │ └── vorbis-tools.mk │ ├── vpnc │ │ ├── 0001-Makefile-allow-to-override-the-PREFIX-variable.patch │ │ ├── 0002-Makefile-allow-to-override-the-version.patch │ │ ├── 0003-Makefile-allow-passing-custom-CFLAGS-CPPFLAGS.patch │ │ ├── 0004-Makefile-provide-an-option-to-not-build-manpages.patch │ │ ├── 0005-Makefile-allow-passing-a-custom-path-to-libgcrypt-co.patch │ │ ├── 0006-config.c-Replace-deprecated-SUSv3-functions-with-POS.patch │ │ ├── 0007-sysdep.h-don-t-assume-error.h-is-available-on-all-Li.patch │ │ ├── 0008-sysdep.c-don-t-include-linux-if_tun.h-on-Linux.patch │ │ ├── 0009-config.c-add-missing-sys-ttydefaults.h-include.patch │ │ ├── Config.in │ │ ├── vpnc.hash │ │ └── vpnc.mk │ ├── vsftpd │ │ ├── 0001-utmpx-builddef.patch │ │ ├── 0003-fix-CVE-2015-1419.patch │ │ ├── 0004-Prevent-hang-in-SIGCHLD-handler.patch │ │ ├── Config.in │ │ ├── S70vsftpd │ │ ├── vsftpd.hash │ │ └── vsftpd.mk │ ├── vte │ │ ├── Config.in │ │ ├── vte.hash │ │ └── vte.mk │ ├── vtun │ │ ├── 0001-fix-installation.patch │ │ ├── 0002-fix-ssl-headers-checks.patch │ │ ├── 0003-openssl11.patch │ │ ├── Config.in │ │ ├── vtun.hash │ │ └── vtun.mk │ ├── w_scan │ │ ├── 0001-musl.patch │ │ ├── Config.in │ │ ├── w_scan.hash │ │ └── w_scan.mk │ ├── waf │ │ ├── waf.hash │ │ └── waf.mk │ ├── waffle │ │ ├── 0001-third_party-threads-Use-PTHREAD_MUTEX_RECURSIVE-by-d.patch │ │ ├── 0002-cmake-forward-cflags-from-.pc-files-to-waffle-cflags.patch │ │ ├── Config.in │ │ ├── waffle.hash │ │ └── waffle.mk │ ├── wampcc │ │ ├── 0001-Add-RISC-V-endian-detection.patch │ │ ├── Config.in │ │ ├── wampcc.hash │ │ └── wampcc.mk │ ├── wavemon │ │ ├── Config.in │ │ ├── wavemon.hash │ │ └── wavemon.mk │ ├── wavpack │ │ ├── Config.in │ │ ├── wavpack.hash │ │ └── wavpack.mk │ ├── wayland-protocols │ │ ├── Config.in │ │ ├── wayland-protocols.hash │ │ └── wayland-protocols.mk │ ├── wayland │ │ ├── 0001-configure-add-option-to-disable-tests.patch │ │ ├── Config.in │ │ ├── wayland.hash │ │ └── wayland.mk │ ├── waylandpp │ │ ├── 0001-cmake-Make-target_link_options-optional.patch │ │ ├── Config.in │ │ ├── waylandpp.hash │ │ └── waylandpp.mk │ ├── webkitgtk │ │ ├── Config.in │ │ ├── webkitgtk.hash │ │ └── webkitgtk.mk │ ├── webp │ │ ├── Config.in │ │ ├── webp.hash │ │ └── webp.mk │ ├── webrtc-audio-processing │ │ ├── 0001-Proper-detection-of-cxxabi.h-and-execinfo.h.patch │ │ ├── Config.in │ │ ├── webrtc-audio-processing.hash │ │ └── webrtc-audio-processing.mk │ ├── websocketpp │ │ ├── 0001-Replace-make_shared-with-new-in-some-cases.patch │ │ ├── 0002-Fix-missed-entries-fix-testing.patch │ │ ├── Config.in │ │ ├── websocketpp.hash │ │ └── websocketpp.mk │ ├── weston-imx │ │ ├── Config.in │ │ ├── weston-imx.hash │ │ └── weston-imx.mk │ ├── weston │ │ ├── 0001-unconditionally-include-sys-mman.h-in-os-compatibili.patch │ │ ├── 0002-shared-guard-all-the-seal-logic-behind-HAVE_MEMFD_CR.patch │ │ ├── Config.in │ │ ├── weston.hash │ │ └── weston.mk │ ├── wf111 │ │ ├── Config.in │ │ ├── wf111.hash │ │ └── wf111.mk │ ├── wget │ │ ├── Config.in │ │ ├── wget.hash │ │ └── wget.mk │ ├── whetstone │ │ ├── Config.in │ │ ├── whetstone.hash │ │ └── whetstone.mk │ ├── which │ │ ├── Config.in │ │ ├── which.hash │ │ └── which.mk │ ├── whois │ │ ├── Config.in │ │ ├── whois.hash │ │ └── whois.mk │ ├── wilc1000-firmware │ │ ├── Config.in │ │ ├── wilc1000-firmware.hash │ │ └── wilc1000-firmware.mk │ ├── wilink-bt-firmware │ │ ├── Config.in │ │ ├── wilink-bt-firmware.hash │ │ └── wilink-bt-firmware.mk │ ├── wine │ │ ├── Config.in │ │ ├── wine.hash │ │ └── wine.mk │ ├── wipe │ │ ├── 0001-musl.patch │ │ ├── Config.in │ │ ├── wipe.hash │ │ └── wipe.mk │ ├── wireguard-linux-compat │ │ ├── Config.in │ │ ├── wireguard-linux-compat.hash │ │ └── wireguard-linux-compat.mk │ ├── wireguard-tools │ │ ├── Config.in │ │ ├── wireguard-tools.hash │ │ └── wireguard-tools.mk │ ├── wireless-regdb │ │ ├── Config.in │ │ ├── wireless-regdb.hash │ │ └── wireless-regdb.mk │ ├── wireless_tools │ │ ├── 0001-remove-bzero.patch │ │ ├── Config.in │ │ ├── wireless_tools.hash │ │ └── wireless_tools.mk │ ├── wireshark │ │ ├── Config.in │ │ ├── wireshark.hash │ │ └── wireshark.mk │ ├── wiringpi │ │ ├── 0001-Adjust-for-buildroot-build.patch │ │ ├── 0002-wiringPi-wiringSerial-fix-compile-for-missing-baud-d.patch │ │ ├── Config.in │ │ ├── wiringpi.hash │ │ └── wiringpi.mk │ ├── wmctrl │ │ ├── Config.in │ │ ├── wmctrl.hash │ │ └── wmctrl.mk │ ├── woff2 │ │ ├── 0001-CMake-Handle-multiple-libraries-being-returned-for-B.patch │ │ ├── Config.in │ │ ├── woff2.hash │ │ └── woff2.mk │ ├── wolfssl │ │ ├── Config.in │ │ ├── wolfssl.hash │ │ └── wolfssl.mk │ ├── wpa_supplicant │ │ ├── 50-wpa_supplicant.preset │ │ ├── Config.in │ │ ├── wpa_supplicant.conf │ │ ├── wpa_supplicant.hash │ │ └── wpa_supplicant.mk │ ├── wpan-tools │ │ ├── Config.in │ │ ├── wpan-tools.hash │ │ └── wpan-tools.mk │ ├── wpebackend-fdo │ │ ├── Config.in │ │ ├── wpebackend-fdo.hash │ │ └── wpebackend-fdo.mk │ ├── wpewebkit │ │ ├── 0001-Fix-build-with-musl.patch │ │ ├── Config.in │ │ ├── wpewebkit.hash │ │ └── wpewebkit.mk │ ├── wsapi-fcgi │ │ ├── Config.in │ │ ├── wsapi-fcgi.hash │ │ └── wsapi-fcgi.mk │ ├── wsapi-xavante │ │ ├── Config.in │ │ ├── wsapi-xavante.hash │ │ └── wsapi-xavante.mk │ ├── wsapi │ │ ├── Config.in │ │ ├── wsapi.hash │ │ └── wsapi.mk │ ├── x11r7 │ │ ├── Config.in │ │ ├── libxcb │ │ │ ├── Config.in │ │ │ ├── libxcb.hash │ │ │ └── libxcb.mk │ │ ├── mcookie │ │ │ ├── Config.in │ │ │ ├── mcookie.c │ │ │ └── mcookie.mk │ │ ├── x11r7.mk │ │ ├── xapp_appres │ │ │ ├── Config.in │ │ │ ├── xapp_appres.hash │ │ │ └── xapp_appres.mk │ │ ├── xapp_bdftopcf │ │ │ ├── Config.in │ │ │ ├── xapp_bdftopcf.hash │ │ │ └── xapp_bdftopcf.mk │ │ ├── xapp_beforelight │ │ │ ├── Config.in │ │ │ ├── xapp_beforelight.hash │ │ │ └── xapp_beforelight.mk │ │ ├── xapp_bitmap │ │ │ ├── Config.in │ │ │ ├── xapp_bitmap.hash │ │ │ └── xapp_bitmap.mk │ │ ├── xapp_editres │ │ │ ├── Config.in │ │ │ ├── xapp_editres.hash │ │ │ └── xapp_editres.mk │ │ ├── xapp_fonttosfnt │ │ │ ├── Config.in │ │ │ ├── xapp_fonttosfnt.hash │ │ │ └── xapp_fonttosfnt.mk │ │ ├── xapp_fslsfonts │ │ │ ├── Config.in │ │ │ ├── xapp_fslsfonts.hash │ │ │ └── xapp_fslsfonts.mk │ │ ├── xapp_fstobdf │ │ │ ├── Config.in │ │ │ ├── xapp_fstobdf.hash │ │ │ └── xapp_fstobdf.mk │ │ ├── xapp_iceauth │ │ │ ├── Config.in │ │ │ ├── xapp_iceauth.hash │ │ │ └── xapp_iceauth.mk │ │ ├── xapp_ico │ │ │ ├── Config.in │ │ │ ├── xapp_ico.hash │ │ │ └── xapp_ico.mk │ │ ├── xapp_listres │ │ │ ├── Config.in │ │ │ ├── xapp_listres.hash │ │ │ └── xapp_listres.mk │ │ ├── xapp_luit │ │ │ ├── 0001-posix-openpt.patch │ │ │ ├── Config.in │ │ │ ├── xapp_luit.hash │ │ │ └── xapp_luit.mk │ │ ├── xapp_mkfontscale │ │ │ ├── Config.in │ │ │ ├── xapp_mkfontscale.hash │ │ │ └── xapp_mkfontscale.mk │ │ ├── xapp_oclock │ │ │ ├── Config.in │ │ │ ├── xapp_oclock.hash │ │ │ └── xapp_oclock.mk │ │ ├── xapp_rgb │ │ │ ├── Config.in │ │ │ ├── xapp_rgb.hash │ │ │ └── xapp_rgb.mk │ │ ├── xapp_rstart │ │ │ ├── Config.in │ │ │ ├── xapp_rstart.hash │ │ │ └── xapp_rstart.mk │ │ ├── xapp_scripts │ │ │ ├── Config.in │ │ │ ├── xapp_scripts.hash │ │ │ └── xapp_scripts.mk │ │ ├── xapp_sessreg │ │ │ ├── Config.in │ │ │ ├── xapp_sessreg.hash │ │ │ └── xapp_sessreg.mk │ │ ├── xapp_setxkbmap │ │ │ ├── Config.in │ │ │ ├── xapp_setxkbmap.hash │ │ │ └── xapp_setxkbmap.mk │ │ ├── xapp_showfont │ │ │ ├── Config.in │ │ │ ├── xapp_showfont.hash │ │ │ └── xapp_showfont.mk │ │ ├── xapp_smproxy │ │ │ ├── Config.in │ │ │ ├── xapp_smproxy.hash │ │ │ └── xapp_smproxy.mk │ │ ├── xapp_twm │ │ │ ├── Config.in │ │ │ ├── xapp_twm.hash │ │ │ └── xapp_twm.mk │ │ ├── xapp_viewres │ │ │ ├── Config.in │ │ │ ├── xapp_viewres.hash │ │ │ └── xapp_viewres.mk │ │ ├── xapp_x11perf │ │ │ ├── Config.in │ │ │ ├── xapp_x11perf.hash │ │ │ └── xapp_x11perf.mk │ │ ├── xapp_xauth │ │ │ ├── Config.in │ │ │ ├── xapp_xauth.hash │ │ │ └── xapp_xauth.mk │ │ ├── xapp_xbacklight │ │ │ ├── Config.in │ │ │ ├── xapp_xbacklight.hash │ │ │ └── xapp_xbacklight.mk │ │ ├── xapp_xbiff │ │ │ ├── Config.in │ │ │ ├── xapp_xbiff.hash │ │ │ └── xapp_xbiff.mk │ │ ├── xapp_xcalc │ │ │ ├── Config.in │ │ │ ├── xapp_xcalc.hash │ │ │ └── xapp_xcalc.mk │ │ ├── xapp_xclipboard │ │ │ ├── Config.in │ │ │ ├── xapp_xclipboard.hash │ │ │ └── xapp_xclipboard.mk │ │ ├── xapp_xclock │ │ │ ├── Config.in │ │ │ ├── xapp_xclock.hash │ │ │ └── xapp_xclock.mk │ │ ├── xapp_xcmsdb │ │ │ ├── Config.in │ │ │ ├── xapp_xcmsdb.hash │ │ │ └── xapp_xcmsdb.mk │ │ ├── xapp_xcompmgr │ │ │ ├── Config.in │ │ │ ├── xapp_xcompmgr.hash │ │ │ └── xapp_xcompmgr.mk │ │ ├── xapp_xconsole │ │ │ ├── Config.in │ │ │ ├── xapp_xconsole.hash │ │ │ └── xapp_xconsole.mk │ │ ├── xapp_xcursorgen │ │ │ ├── Config.in │ │ │ ├── xapp_xcursorgen.hash │ │ │ └── xapp_xcursorgen.mk │ │ ├── xapp_xdbedizzy │ │ │ ├── Config.in │ │ │ ├── xapp_xdbedizzy.hash │ │ │ └── xapp_xdbedizzy.mk │ │ ├── xapp_xditview │ │ │ ├── Config.in │ │ │ ├── xapp_xditview.hash │ │ │ └── xapp_xditview.mk │ │ ├── xapp_xdm │ │ │ ├── Config.in │ │ │ ├── S99xdm │ │ │ ├── xapp_xdm.hash │ │ │ └── xapp_xdm.mk │ │ ├── xapp_xdpyinfo │ │ │ ├── Config.in │ │ │ ├── xapp_xdpyinfo.hash │ │ │ └── xapp_xdpyinfo.mk │ │ ├── xapp_xdriinfo │ │ │ ├── Config.in │ │ │ ├── xapp_xdriinfo.hash │ │ │ └── xapp_xdriinfo.mk │ │ ├── xapp_xedit │ │ │ ├── Config.in │ │ │ ├── xapp_xedit.hash │ │ │ └── xapp_xedit.mk │ │ ├── xapp_xev │ │ │ ├── Config.in │ │ │ ├── xapp_xev.hash │ │ │ └── xapp_xev.mk │ │ ├── xapp_xeyes │ │ │ ├── Config.in │ │ │ ├── xapp_xeyes.hash │ │ │ └── xapp_xeyes.mk │ │ ├── xapp_xf86dga │ │ │ ├── Config.in │ │ │ ├── xapp_xf86dga.hash │ │ │ └── xapp_xf86dga.mk │ │ ├── xapp_xfd │ │ │ ├── Config.in │ │ │ ├── xapp_xfd.hash │ │ │ └── xapp_xfd.mk │ │ ├── xapp_xfindproxy │ │ │ ├── Config.in │ │ │ ├── xapp_xfindproxy.hash │ │ │ └── xapp_xfindproxy.mk │ │ ├── xapp_xfontsel │ │ │ ├── Config.in │ │ │ ├── xapp_xfontsel.hash │ │ │ └── xapp_xfontsel.mk │ │ ├── xapp_xfs │ │ │ ├── Config.in │ │ │ ├── xapp_xfs.hash │ │ │ └── xapp_xfs.mk │ │ ├── xapp_xfsinfo │ │ │ ├── Config.in │ │ │ ├── xapp_xfsinfo.hash │ │ │ └── xapp_xfsinfo.mk │ │ ├── xapp_xgamma │ │ │ ├── Config.in │ │ │ ├── xapp_xgamma.hash │ │ │ └── xapp_xgamma.mk │ │ ├── xapp_xgc │ │ │ ├── Config.in │ │ │ ├── xapp_xgc.hash │ │ │ └── xapp_xgc.mk │ │ ├── xapp_xhost │ │ │ ├── Config.in │ │ │ ├── xapp_xhost.hash │ │ │ └── xapp_xhost.mk │ │ ├── xapp_xinit │ │ │ ├── Config.in │ │ │ ├── xapp_xinit.hash │ │ │ └── xapp_xinit.mk │ │ ├── xapp_xinput-calibrator │ │ │ ├── Config.in │ │ │ ├── xapp_xinput-calibrator.hash │ │ │ └── xapp_xinput-calibrator.mk │ │ ├── xapp_xinput │ │ │ ├── Config.in │ │ │ ├── xapp_xinput.hash │ │ │ └── xapp_xinput.mk │ │ ├── xapp_xkbcomp │ │ │ ├── Config.in │ │ │ ├── xapp_xkbcomp.hash │ │ │ └── xapp_xkbcomp.mk │ │ ├── xapp_xkbevd │ │ │ ├── Config.in │ │ │ ├── xapp_xkbevd.hash │ │ │ └── xapp_xkbevd.mk │ │ ├── xapp_xkbprint │ │ │ ├── Config.in │ │ │ ├── xapp_xkbprint.hash │ │ │ └── xapp_xkbprint.mk │ │ ├── xapp_xkbutils │ │ │ ├── Config.in │ │ │ ├── xapp_xkbutils.hash │ │ │ └── xapp_xkbutils.mk │ │ ├── xapp_xkill │ │ │ ├── Config.in │ │ │ ├── xapp_xkill.hash │ │ │ └── xapp_xkill.mk │ │ ├── xapp_xload │ │ │ ├── Config.in │ │ │ ├── xapp_xload.hash │ │ │ └── xapp_xload.mk │ │ ├── xapp_xlogo │ │ │ ├── Config.in │ │ │ ├── xapp_xlogo.hash │ │ │ └── xapp_xlogo.mk │ │ ├── xapp_xlsatoms │ │ │ ├── Config.in │ │ │ ├── xapp_xlsatoms.hash │ │ │ └── xapp_xlsatoms.mk │ │ ├── xapp_xlsclients │ │ │ ├── Config.in │ │ │ ├── xapp_xlsclients.hash │ │ │ └── xapp_xlsclients.mk │ │ ├── xapp_xlsfonts │ │ │ ├── Config.in │ │ │ ├── xapp_xlsfonts.hash │ │ │ └── xapp_xlsfonts.mk │ │ ├── xapp_xmag │ │ │ ├── Config.in │ │ │ ├── xapp_xmag.hash │ │ │ └── xapp_xmag.mk │ │ ├── xapp_xman │ │ │ ├── Config.in │ │ │ ├── xapp_xman.hash │ │ │ └── xapp_xman.mk │ │ ├── xapp_xmessage │ │ │ ├── Config.in │ │ │ ├── xapp_xmessage.hash │ │ │ └── xapp_xmessage.mk │ │ ├── xapp_xmh │ │ │ ├── Config.in │ │ │ ├── xapp_xmh.hash │ │ │ └── xapp_xmh.mk │ │ ├── xapp_xmodmap │ │ │ ├── Config.in │ │ │ ├── xapp_xmodmap.hash │ │ │ └── xapp_xmodmap.mk │ │ ├── xapp_xmore │ │ │ ├── Config.in │ │ │ ├── xapp_xmore.hash │ │ │ └── xapp_xmore.mk │ │ ├── xapp_xpr │ │ │ ├── Config.in │ │ │ ├── xapp_xpr.hash │ │ │ └── xapp_xpr.mk │ │ ├── xapp_xprop │ │ │ ├── Config.in │ │ │ ├── xapp_xprop.hash │ │ │ └── xapp_xprop.mk │ │ ├── xapp_xrandr │ │ │ ├── Config.in │ │ │ ├── xapp_xrandr.hash │ │ │ └── xapp_xrandr.mk │ │ ├── xapp_xrdb │ │ │ ├── Config.in │ │ │ ├── xapp_xrdb.hash │ │ │ └── xapp_xrdb.mk │ │ ├── xapp_xrefresh │ │ │ ├── Config.in │ │ │ ├── xapp_xrefresh.hash │ │ │ └── xapp_xrefresh.mk │ │ ├── xapp_xset │ │ │ ├── Config.in │ │ │ ├── xapp_xset.hash │ │ │ └── xapp_xset.mk │ │ ├── xapp_xsetmode │ │ │ ├── Config.in │ │ │ ├── xapp_xsetmode.hash │ │ │ └── xapp_xsetmode.mk │ │ ├── xapp_xsetpointer │ │ │ ├── Config.in │ │ │ ├── xapp_xsetpointer.hash │ │ │ └── xapp_xsetpointer.mk │ │ ├── xapp_xsetroot │ │ │ ├── Config.in │ │ │ ├── xapp_xsetroot.hash │ │ │ └── xapp_xsetroot.mk │ │ ├── xapp_xsm │ │ │ ├── Config.in │ │ │ ├── xapp_xsm.hash │ │ │ └── xapp_xsm.mk │ │ ├── xapp_xstdcmap │ │ │ ├── Config.in │ │ │ ├── xapp_xstdcmap.hash │ │ │ └── xapp_xstdcmap.mk │ │ ├── xapp_xvidtune │ │ │ ├── Config.in │ │ │ ├── xapp_xvidtune.hash │ │ │ └── xapp_xvidtune.mk │ │ ├── xapp_xvinfo │ │ │ ├── Config.in │ │ │ ├── xapp_xvinfo.hash │ │ │ └── xapp_xvinfo.mk │ │ ├── xapp_xwd │ │ │ ├── Config.in │ │ │ ├── xapp_xwd.hash │ │ │ └── xapp_xwd.mk │ │ ├── xapp_xwininfo │ │ │ ├── Config.in │ │ │ ├── xapp_xwininfo.hash │ │ │ └── xapp_xwininfo.mk │ │ ├── xapp_xwud │ │ │ ├── Config.in │ │ │ ├── xapp_xwud.hash │ │ │ └── xapp_xwud.mk │ │ ├── xcb-proto │ │ │ ├── Config.in │ │ │ ├── xcb-proto.hash │ │ │ └── xcb-proto.mk │ │ ├── xcb-util-cursor │ │ │ ├── Config.in │ │ │ ├── xcb-util-cursor.hash │ │ │ └── xcb-util-cursor.mk │ │ ├── xcb-util-image │ │ │ ├── Config.in │ │ │ ├── xcb-util-image.hash │ │ │ └── xcb-util-image.mk │ │ ├── xcb-util-keysyms │ │ │ ├── Config.in │ │ │ ├── xcb-util-keysyms.hash │ │ │ └── xcb-util-keysyms.mk │ │ ├── xcb-util-renderutil │ │ │ ├── Config.in │ │ │ ├── xcb-util-renderutil.hash │ │ │ └── xcb-util-renderutil.mk │ │ ├── xcb-util-wm │ │ │ ├── Config.in │ │ │ ├── xcb-util-wm.hash │ │ │ └── xcb-util-wm.mk │ │ ├── xcb-util │ │ │ ├── Config.in │ │ │ ├── xcb-util.hash │ │ │ └── xcb-util.mk │ │ ├── xcursor-transparent-theme │ │ │ ├── 0001-fix-symlink.patch │ │ │ ├── Config.in │ │ │ ├── index.theme │ │ │ ├── xcursor-transparent-theme.hash │ │ │ └── xcursor-transparent-theme.mk │ │ ├── xdata_xbitmaps │ │ │ ├── Config.in │ │ │ ├── xdata_xbitmaps.hash │ │ │ └── xdata_xbitmaps.mk │ │ ├── xdata_xcursor-themes │ │ │ ├── Config.in │ │ │ ├── xdata_xcursor-themes.hash │ │ │ └── xdata_xcursor-themes.mk │ │ ├── xdriver_xf86-input-evdev │ │ │ ├── 0001-build-get-rid-of-sdkdir.patch │ │ │ ├── Config.in │ │ │ ├── xdriver_xf86-input-evdev.hash │ │ │ └── xdriver_xf86-input-evdev.mk │ │ ├── xdriver_xf86-input-joystick │ │ │ ├── 0001-build-get-rid-of-sdkdir.patch │ │ │ ├── 50-joystick.conf │ │ │ ├── Config.in │ │ │ ├── xdriver_xf86-input-joystick.hash │ │ │ └── xdriver_xf86-input-joystick.mk │ │ ├── xdriver_xf86-input-keyboard │ │ │ ├── Config.in │ │ │ ├── xdriver_xf86-input-keyboard.hash │ │ │ └── xdriver_xf86-input-keyboard.mk │ │ ├── xdriver_xf86-input-libinput │ │ │ ├── 0001-build-get-rid-of-sdkdir.patch │ │ │ ├── Config.in │ │ │ ├── xdriver_xf86-input-libinput.hash │ │ │ └── xdriver_xf86-input-libinput.mk │ │ ├── xdriver_xf86-input-mouse │ │ │ ├── 0001-build-get-rid-of-sdkdir.patch │ │ │ ├── Config.in │ │ │ ├── xdriver_xf86-input-mouse.hash │ │ │ └── xdriver_xf86-input-mouse.mk │ │ ├── xdriver_xf86-input-synaptics │ │ │ ├── 0001-build-get-rid-of-sdkdir.patch │ │ │ ├── Config.in │ │ │ ├── xdriver_xf86-input-synaptics.hash │ │ │ └── xdriver_xf86-input-synaptics.mk │ │ ├── xdriver_xf86-input-tslib │ │ │ ├── Config.in │ │ │ ├── xdriver_xf86-input-tslib.hash │ │ │ └── xdriver_xf86-input-tslib.mk │ │ ├── xdriver_xf86-input-vmmouse │ │ │ ├── Config.in │ │ │ ├── xdriver_xf86-input-vmmouse.hash │ │ │ └── xdriver_xf86-input-vmmouse.mk │ │ ├── xdriver_xf86-video-amdgpu │ │ │ ├── Config.in │ │ │ ├── xdriver_xf86-video-amdgpu.hash │ │ │ └── xdriver_xf86-video-amdgpu.mk │ │ ├── xdriver_xf86-video-ark │ │ │ ├── 0001-mibstore.patch │ │ │ ├── Config.in │ │ │ ├── xdriver_xf86-video-ark.hash │ │ │ └── xdriver_xf86-video-ark.mk │ │ ├── xdriver_xf86-video-ast │ │ │ ├── Config.in │ │ │ ├── xdriver_xf86-video-ast.hash │ │ │ └── xdriver_xf86-video-ast.mk │ │ ├── xdriver_xf86-video-ati │ │ │ ├── Config.in │ │ │ ├── xdriver_xf86-video-ati.hash │ │ │ └── xdriver_xf86-video-ati.mk │ │ ├── xdriver_xf86-video-cirrus │ │ │ ├── Config.in │ │ │ ├── xdriver_xf86-video-cirrus.hash │ │ │ └── xdriver_xf86-video-cirrus.mk │ │ ├── xdriver_xf86-video-dummy │ │ │ ├── Config.in │ │ │ ├── xdriver_xf86-video-dummy.hash │ │ │ └── xdriver_xf86-video-dummy.mk │ │ ├── xdriver_xf86-video-fbdev │ │ │ ├── Config.in │ │ │ ├── xdriver_xf86-video-fbdev.hash │ │ │ └── xdriver_xf86-video-fbdev.mk │ │ ├── xdriver_xf86-video-fbturbo │ │ │ ├── 0001-sunxi_x_g2d-drop-unused-dri2-include.patch │ │ │ ├── Config.in │ │ │ ├── xdriver_xf86-video-fbturbo.hash │ │ │ └── xdriver_xf86-video-fbturbo.mk │ │ ├── xdriver_xf86-video-geode │ │ │ ├── 0001-Remove-call-to-LoaderGetOS.patch │ │ │ ├── 0002-gx-Fix-RANDR-initialization-for-xserver-1.20.patch │ │ │ ├── Config.in │ │ │ ├── xdriver_xf86-video-geode.hash │ │ │ └── xdriver_xf86-video-geode.mk │ │ ├── xdriver_xf86-video-glint │ │ │ ├── Config.in │ │ │ ├── xdriver_xf86-video-glint.hash │ │ │ └── xdriver_xf86-video-glint.mk │ │ ├── xdriver_xf86-video-i128 │ │ │ ├── Config.in │ │ │ ├── xdriver_xf86-video-i128.hash │ │ │ └── xdriver_xf86-video-i128.mk │ │ ├── xdriver_xf86-video-imx-viv │ │ │ ├── Config.in │ │ │ ├── xdriver_xf86-video-imx-viv.hash │ │ │ └── xdriver_xf86-video-imx-viv.mk │ │ ├── xdriver_xf86-video-imx │ │ │ ├── 0001-Update-to-newer-swap-macros.patch │ │ │ ├── 0002-Fix-error-unknown-type-name-uint.patch │ │ │ ├── 0003-support-glibc-2.20.patch │ │ │ ├── 0004-Make-video-API-forward-and-backward-compatible.patch │ │ │ ├── 0005-xf86-video-imxfb-fix-m4-hardcodded-paths.patch │ │ │ ├── 0006-xserver-1.14-compat.patch │ │ │ ├── Config.in │ │ │ ├── xdriver_xf86-video-imx.hash │ │ │ └── xdriver_xf86-video-imx.mk │ │ ├── xdriver_xf86-video-intel │ │ │ ├── Config.in │ │ │ ├── xdriver_xf86-video-intel.hash │ │ │ └── xdriver_xf86-video-intel.mk │ │ ├── xdriver_xf86-video-mach64 │ │ │ ├── 0001-cross-compile.patch │ │ │ ├── Config.in │ │ │ ├── xdriver_xf86-video-mach64.hash │ │ │ └── xdriver_xf86-video-mach64.mk │ │ ├── xdriver_xf86-video-mga │ │ │ ├── 0001-misc-fixes.patch │ │ │ ├── Config.in │ │ │ ├── xdriver_xf86-video-mga.hash │ │ │ └── xdriver_xf86-video-mga.mk │ │ ├── xdriver_xf86-video-neomagic │ │ │ ├── Config.in │ │ │ ├── xdriver_xf86-video-neomagic.hash │ │ │ └── xdriver_xf86-video-neomagic.mk │ │ ├── xdriver_xf86-video-nouveau │ │ │ ├── Config.in │ │ │ ├── xdriver_xf86-video-nouveau.hash │ │ │ └── xdriver_xf86-video-nouveau.mk │ │ ├── xdriver_xf86-video-nv │ │ │ ├── Config.in │ │ │ ├── xdriver_xf86-video-nv.hash │ │ │ └── xdriver_xf86-video-nv.mk │ │ ├── xdriver_xf86-video-openchrome │ │ │ ├── Config.in │ │ │ ├── xdriver_xf86-video-openchrome.hash │ │ │ └── xdriver_xf86-video-openchrome.mk │ │ ├── xdriver_xf86-video-qxl │ │ │ ├── Config.in │ │ │ ├── xdriver_xf86-video-qxl.hash │ │ │ └── xdriver_xf86-video-qxl.mk │ │ ├── xdriver_xf86-video-r128 │ │ │ ├── Config.in │ │ │ ├── xdriver_xf86-video-r128.hash │ │ │ └── xdriver_xf86-video-r128.mk │ │ ├── xdriver_xf86-video-savage │ │ │ ├── 0001-cross-compile.patch │ │ │ ├── 0002-xorg-xserver120.patch │ │ │ ├── Config.in │ │ │ ├── xdriver_xf86-video-savage.hash │ │ │ └── xdriver_xf86-video-savage.mk │ │ ├── xdriver_xf86-video-siliconmotion │ │ │ ├── Config.in │ │ │ ├── xdriver_xf86-video-siliconmotion.hash │ │ │ └── xdriver_xf86-video-siliconmotion.mk │ │ ├── xdriver_xf86-video-sis │ │ │ ├── Config.in │ │ │ ├── xdriver_xf86-video-sis.hash │ │ │ └── xdriver_xf86-video-sis.mk │ │ ├── xdriver_xf86-video-tdfx │ │ │ ├── 0001-cross.patch │ │ │ ├── Config.in │ │ │ ├── xdriver_xf86-video-tdfx.hash │ │ │ └── xdriver_xf86-video-tdfx.mk │ │ ├── xdriver_xf86-video-tga │ │ │ ├── 0001-mibstore.patch │ │ │ ├── Config.in │ │ │ ├── xdriver_xf86-video-tga.hash │ │ │ └── xdriver_xf86-video-tga.mk │ │ ├── xdriver_xf86-video-trident │ │ │ ├── Config.in │ │ │ ├── xdriver_xf86-video-trident.hash │ │ │ └── xdriver_xf86-video-trident.mk │ │ ├── xdriver_xf86-video-vesa │ │ │ ├── Config.in │ │ │ ├── xdriver_xf86-video-vesa.hash │ │ │ └── xdriver_xf86-video-vesa.mk │ │ ├── xdriver_xf86-video-vmware │ │ │ ├── Config.in │ │ │ ├── xdriver_xf86-video-vmware.hash │ │ │ └── xdriver_xf86-video-vmware.mk │ │ ├── xdriver_xf86-video-voodoo │ │ │ ├── Config.in │ │ │ └── xdriver_xf86-video-voodoo.mk │ │ ├── xfont_encodings │ │ │ ├── Config.in │ │ │ ├── xfont_encodings.hash │ │ │ └── xfont_encodings.mk │ │ ├── xfont_font-adobe-100dpi │ │ │ ├── Config.in │ │ │ ├── xfont_font-adobe-100dpi.hash │ │ │ └── xfont_font-adobe-100dpi.mk │ │ ├── xfont_font-adobe-75dpi │ │ │ ├── Config.in │ │ │ ├── xfont_font-adobe-75dpi.hash │ │ │ └── xfont_font-adobe-75dpi.mk │ │ ├── xfont_font-adobe-utopia-100dpi │ │ │ ├── Config.in │ │ │ ├── xfont_font-adobe-utopia-100dpi.hash │ │ │ └── xfont_font-adobe-utopia-100dpi.mk │ │ ├── xfont_font-adobe-utopia-75dpi │ │ │ ├── Config.in │ │ │ ├── xfont_font-adobe-utopia-75dpi.hash │ │ │ └── xfont_font-adobe-utopia-75dpi.mk │ │ ├── xfont_font-adobe-utopia-type1 │ │ │ ├── Config.in │ │ │ ├── xfont_font-adobe-utopia-type1.hash │ │ │ └── xfont_font-adobe-utopia-type1.mk │ │ ├── xfont_font-alias │ │ │ ├── Config.in │ │ │ ├── xfont_font-alias.hash │ │ │ └── xfont_font-alias.mk │ │ ├── xfont_font-arabic-misc │ │ │ ├── Config.in │ │ │ ├── xfont_font-arabic-misc.hash │ │ │ └── xfont_font-arabic-misc.mk │ │ ├── xfont_font-bh-100dpi │ │ │ ├── Config.in │ │ │ ├── xfont_font-bh-100dpi.hash │ │ │ └── xfont_font-bh-100dpi.mk │ │ ├── xfont_font-bh-75dpi │ │ │ ├── Config.in │ │ │ ├── xfont_font-bh-75dpi.hash │ │ │ └── xfont_font-bh-75dpi.mk │ │ ├── xfont_font-bh-lucidatypewriter-100dpi │ │ │ ├── Config.in │ │ │ ├── xfont_font-bh-lucidatypewriter-100dpi.hash │ │ │ └── xfont_font-bh-lucidatypewriter-100dpi.mk │ │ ├── xfont_font-bh-lucidatypewriter-75dpi │ │ │ ├── Config.in │ │ │ ├── xfont_font-bh-lucidatypewriter-75dpi.hash │ │ │ └── xfont_font-bh-lucidatypewriter-75dpi.mk │ │ ├── xfont_font-bh-ttf │ │ │ ├── Config.in │ │ │ ├── xfont_font-bh-ttf.hash │ │ │ └── xfont_font-bh-ttf.mk │ │ ├── xfont_font-bh-type1 │ │ │ ├── Config.in │ │ │ ├── xfont_font-bh-type1.hash │ │ │ └── xfont_font-bh-type1.mk │ │ ├── xfont_font-bitstream-100dpi │ │ │ ├── Config.in │ │ │ ├── xfont_font-bitstream-100dpi.hash │ │ │ └── xfont_font-bitstream-100dpi.mk │ │ ├── xfont_font-bitstream-75dpi │ │ │ ├── Config.in │ │ │ ├── xfont_font-bitstream-75dpi.hash │ │ │ └── xfont_font-bitstream-75dpi.mk │ │ ├── xfont_font-bitstream-type1 │ │ │ ├── Config.in │ │ │ ├── xfont_font-bitstream-type1.hash │ │ │ └── xfont_font-bitstream-type1.mk │ │ ├── xfont_font-cronyx-cyrillic │ │ │ ├── Config.in │ │ │ ├── xfont_font-cronyx-cyrillic.hash │ │ │ └── xfont_font-cronyx-cyrillic.mk │ │ ├── xfont_font-cursor-misc │ │ │ ├── Config.in │ │ │ ├── xfont_font-cursor-misc.hash │ │ │ └── xfont_font-cursor-misc.mk │ │ ├── xfont_font-daewoo-misc │ │ │ ├── Config.in │ │ │ ├── xfont_font-daewoo-misc.hash │ │ │ └── xfont_font-daewoo-misc.mk │ │ ├── xfont_font-dec-misc │ │ │ ├── Config.in │ │ │ ├── xfont_font-dec-misc.hash │ │ │ └── xfont_font-dec-misc.mk │ │ ├── xfont_font-ibm-type1 │ │ │ ├── Config.in │ │ │ ├── xfont_font-ibm-type1.hash │ │ │ └── xfont_font-ibm-type1.mk │ │ ├── xfont_font-isas-misc │ │ │ ├── Config.in │ │ │ ├── xfont_font-isas-misc.hash │ │ │ └── xfont_font-isas-misc.mk │ │ ├── xfont_font-jis-misc │ │ │ ├── Config.in │ │ │ ├── xfont_font-jis-misc.hash │ │ │ └── xfont_font-jis-misc.mk │ │ ├── xfont_font-micro-misc │ │ │ ├── Config.in │ │ │ ├── xfont_font-micro-misc.hash │ │ │ └── xfont_font-micro-misc.mk │ │ ├── xfont_font-misc-cyrillic │ │ │ ├── Config.in │ │ │ ├── xfont_font-misc-cyrillic.hash │ │ │ └── xfont_font-misc-cyrillic.mk │ │ ├── xfont_font-misc-ethiopic │ │ │ ├── Config.in │ │ │ ├── xfont_font-misc-ethiopic.hash │ │ │ └── xfont_font-misc-ethiopic.mk │ │ ├── xfont_font-misc-meltho │ │ │ ├── Config.in │ │ │ ├── xfont_font-misc-meltho.hash │ │ │ └── xfont_font-misc-meltho.mk │ │ ├── xfont_font-misc-misc │ │ │ ├── Config.in │ │ │ ├── xfont_font-misc-misc.hash │ │ │ └── xfont_font-misc-misc.mk │ │ ├── xfont_font-mutt-misc │ │ │ ├── Config.in │ │ │ ├── xfont_font-mutt-misc.hash │ │ │ └── xfont_font-mutt-misc.mk │ │ ├── xfont_font-schumacher-misc │ │ │ ├── Config.in │ │ │ ├── xfont_font-schumacher-misc.hash │ │ │ └── xfont_font-schumacher-misc.mk │ │ ├── xfont_font-screen-cyrillic │ │ │ ├── Config.in │ │ │ ├── xfont_font-screen-cyrillic.hash │ │ │ └── xfont_font-screen-cyrillic.mk │ │ ├── xfont_font-sony-misc │ │ │ ├── Config.in │ │ │ ├── xfont_font-sony-misc.hash │ │ │ └── xfont_font-sony-misc.mk │ │ ├── xfont_font-sun-misc │ │ │ ├── Config.in │ │ │ ├── xfont_font-sun-misc.hash │ │ │ └── xfont_font-sun-misc.mk │ │ ├── xfont_font-util │ │ │ ├── Config.in │ │ │ ├── xfont_font-util.hash │ │ │ └── xfont_font-util.mk │ │ ├── xfont_font-winitzki-cyrillic │ │ │ ├── Config.in │ │ │ ├── xfont_font-winitzki-cyrillic.hash │ │ │ └── xfont_font-winitzki-cyrillic.mk │ │ ├── xfont_font-xfree86-type1 │ │ │ ├── Config.in │ │ │ ├── xfont_font-xfree86-type1.hash │ │ │ └── xfont_font-xfree86-type1.mk │ │ ├── xkeyboard-config │ │ │ ├── Config.in │ │ │ ├── xkeyboard-config.hash │ │ │ └── xkeyboard-config.mk │ │ ├── xlib_libFS │ │ │ ├── Config.in │ │ │ ├── xlib_libFS.hash │ │ │ └── xlib_libFS.mk │ │ ├── xlib_libICE │ │ │ ├── Config.in │ │ │ ├── xlib_libICE.hash │ │ │ └── xlib_libICE.mk │ │ ├── xlib_libSM │ │ │ ├── Config.in │ │ │ ├── xlib_libSM.hash │ │ │ └── xlib_libSM.mk │ │ ├── xlib_libX11 │ │ │ ├── Config.in │ │ │ ├── xlib_libX11.hash │ │ │ └── xlib_libX11.mk │ │ ├── xlib_libXScrnSaver │ │ │ ├── Config.in │ │ │ ├── xlib_libXScrnSaver.hash │ │ │ └── xlib_libXScrnSaver.mk │ │ ├── xlib_libXau │ │ │ ├── Config.in │ │ │ ├── xlib_libXau.hash │ │ │ └── xlib_libXau.mk │ │ ├── xlib_libXaw │ │ │ ├── Config.in │ │ │ ├── xlib_libXaw.hash │ │ │ └── xlib_libXaw.mk │ │ ├── xlib_libXcomposite │ │ │ ├── Config.in │ │ │ ├── xlib_libXcomposite.hash │ │ │ └── xlib_libXcomposite.mk │ │ ├── xlib_libXcursor │ │ │ ├── Config.in │ │ │ ├── xlib_libXcursor.hash │ │ │ └── xlib_libXcursor.mk │ │ ├── xlib_libXdamage │ │ │ ├── Config.in │ │ │ ├── xlib_libXdamage.hash │ │ │ └── xlib_libXdamage.mk │ │ ├── xlib_libXdmcp │ │ │ ├── Config.in │ │ │ ├── xlib_libXdmcp.hash │ │ │ └── xlib_libXdmcp.mk │ │ ├── xlib_libXext │ │ │ ├── Config.in │ │ │ ├── xlib_libXext.hash │ │ │ └── xlib_libXext.mk │ │ ├── xlib_libXfixes │ │ │ ├── Config.in │ │ │ ├── xlib_libXfixes.hash │ │ │ └── xlib_libXfixes.mk │ │ ├── xlib_libXfont │ │ │ ├── Config.in │ │ │ ├── xlib_libXfont.hash │ │ │ └── xlib_libXfont.mk │ │ ├── xlib_libXfont2 │ │ │ ├── 0001-configure-define-HAVE_LIBBSD-when-libbsd-was-found.patch │ │ │ ├── Config.in │ │ │ ├── xlib_libXfont2.hash │ │ │ └── xlib_libXfont2.mk │ │ ├── xlib_libXft │ │ │ ├── Config.in │ │ │ ├── xlib_libXft.hash │ │ │ └── xlib_libXft.mk │ │ ├── xlib_libXi │ │ │ ├── Config.in │ │ │ ├── xlib_libXi.hash │ │ │ └── xlib_libXi.mk │ │ ├── xlib_libXinerama │ │ │ ├── Config.in │ │ │ ├── xlib_libXinerama.hash │ │ │ └── xlib_libXinerama.mk │ │ ├── xlib_libXmu │ │ │ ├── Config.in │ │ │ ├── xlib_libXmu.hash │ │ │ └── xlib_libXmu.mk │ │ ├── xlib_libXpm │ │ │ ├── Config.in │ │ │ ├── xlib_libXpm.hash │ │ │ └── xlib_libXpm.mk │ │ ├── xlib_libXrandr │ │ │ ├── Config.in │ │ │ ├── xlib_libXrandr.hash │ │ │ └── xlib_libXrandr.mk │ │ ├── xlib_libXrender │ │ │ ├── Config.in │ │ │ ├── xlib_libXrender.hash │ │ │ └── xlib_libXrender.mk │ │ ├── xlib_libXres │ │ │ ├── Config.in │ │ │ ├── xlib_libXres.hash │ │ │ └── xlib_libXres.mk │ │ ├── xlib_libXt │ │ │ ├── Config.in │ │ │ ├── xlib_libXt.hash │ │ │ └── xlib_libXt.mk │ │ ├── xlib_libXtst │ │ │ ├── Config.in │ │ │ ├── xlib_libXtst.hash │ │ │ └── xlib_libXtst.mk │ │ ├── xlib_libXv │ │ │ ├── Config.in │ │ │ ├── xlib_libXv.hash │ │ │ └── xlib_libXv.mk │ │ ├── xlib_libXvMC │ │ │ ├── Config.in │ │ │ ├── xlib_libXvMC.hash │ │ │ └── xlib_libXvMC.mk │ │ ├── xlib_libXxf86dga │ │ │ ├── Config.in │ │ │ ├── xlib_libXxf86dga.hash │ │ │ └── xlib_libXxf86dga.mk │ │ ├── xlib_libXxf86vm │ │ │ ├── Config.in │ │ │ ├── xlib_libXxf86vm.hash │ │ │ └── xlib_libXxf86vm.mk │ │ ├── xlib_libdmx │ │ │ ├── Config.in │ │ │ ├── xlib_libdmx.hash │ │ │ └── xlib_libdmx.mk │ │ ├── xlib_libfontenc │ │ │ ├── Config.in │ │ │ ├── xlib_libfontenc.hash │ │ │ └── xlib_libfontenc.mk │ │ ├── xlib_libxkbfile │ │ │ ├── Config.in │ │ │ ├── xlib_libxkbfile.hash │ │ │ └── xlib_libxkbfile.mk │ │ ├── xlib_libxshmfence │ │ │ ├── Config.in │ │ │ ├── xlib_libxshmfence.hash │ │ │ └── xlib_libxshmfence.mk │ │ ├── xlib_xtrans │ │ │ ├── Config.in │ │ │ ├── xlib_xtrans.hash │ │ │ └── xlib_xtrans.mk │ │ ├── xorgproto │ │ │ ├── Config.in │ │ │ ├── xorgproto.hash │ │ │ └── xorgproto.mk │ │ ├── xserver_xorg-server │ │ │ ├── 1.14.7 │ │ │ │ ├── 0001-sdksyms-gcc5.patch │ │ │ │ ├── 0002-Xi-Zero-target-buffer-in-SProcXSendExtensionEvent.patch │ │ │ │ ├── 0003-dix-Disallow-GenericEvent-in-SendEvent-request.patch │ │ │ │ ├── 0004-Xi-Verify-all-events-in-ProcXSendExtensionEvent.patch │ │ │ │ └── 0005-Xi-Do-not-try-to-swap-GenericEvent.patch │ │ │ ├── 1.17.4 │ │ │ │ ├── 0001-modesettings-needs-dri2.patch │ │ │ │ ├── 0002-Xi-Zero-target-buffer-in-SProcXSendExtensionEvent.patch │ │ │ │ ├── 0003-dix-Disallow-GenericEvent-in-SendEvent-request.patch │ │ │ │ ├── 0004-Xi-Verify-all-events-in-ProcXSendExtensionEvent.patch │ │ │ │ └── 0005-Xi-Do-not-try-to-swap-GenericEvent.patch │ │ │ ├── 1.20.7 │ │ │ │ ├── 0001-modesettings-needs-dri2.patch │ │ │ │ ├── 0002-configure.ac-Fix-check-for-CLOCK_MONOTONIC.patch │ │ │ │ ├── 0003-Remove-check-for-useSIGIO-option.patch │ │ │ │ ├── 0004-include-misc.h-fix-uClibc-build.patch │ │ │ │ ├── 0005-hw-xwayland-Makefile.am-fix-build-without-glx.patch │ │ │ │ ├── 0006-hw-xfree86-common-xf86Init.c-fix-build-without-glx.patch │ │ │ │ └── 0007-modesetting-explicitly-include-mi-h.patch │ │ │ ├── Config.in │ │ │ ├── S40xorg │ │ │ ├── xserver_xorg-server.hash │ │ │ └── xserver_xorg-server.mk │ │ └── xutil_makedepend │ │ │ ├── Config.in │ │ │ ├── xutil_makedepend.hash │ │ │ └── xutil_makedepend.mk │ ├── x11vnc │ │ ├── Config.in │ │ ├── x11vnc.hash │ │ └── x11vnc.mk │ ├── x264 │ │ ├── Config.in │ │ ├── x264.hash │ │ └── x264.mk │ ├── x265 │ │ ├── 0001-fix-gcc-options.patch │ │ ├── 0002-arm-asm-primitives.patch │ │ ├── Config.in │ │ ├── x265.hash │ │ └── x265.mk │ ├── xapian │ │ ├── Config.in │ │ ├── xapian.hash │ │ └── xapian.mk │ ├── xavante │ │ ├── Config.in │ │ ├── xavante.hash │ │ └── xavante.mk │ ├── xdg-dbus-proxy │ │ ├── 0001-Fix-musl-compilation-by-adding-TEMP_FAILURE_RETRY.patch │ │ ├── Config.in │ │ ├── xdg-dbus-proxy.hash │ │ └── xdg-dbus-proxy.mk │ ├── xdotool │ │ ├── Config.in │ │ ├── xdotool.hash │ │ └── xdotool.mk │ ├── xen │ │ ├── 0001-xen-Rules.mk-fix-build-with-CFLAGS-from-environment.patch │ │ ├── 0002-9pfs-include-linux-limits.h-for-XATTR_SIZE_MAX.patch │ │ ├── Config.in │ │ ├── xen.hash │ │ └── xen.mk │ ├── xenomai │ │ ├── Config.in │ │ ├── xenomai.hash │ │ └── xenomai.mk │ ├── xerces │ │ ├── 0001-cmake-Allow-thread-checks-to-fail-and-fall-back-to-nothreads.patch │ │ ├── 0002-fix-static-linking-with-curl.patch │ │ ├── Config.in │ │ ├── xerces.hash │ │ └── xerces.mk │ ├── xfsprogs │ │ ├── 0001-mdrestore-do-not-do-dynamic-linking-of-libtool-libra.patch │ │ ├── 0002-libxfs-do-not-try-to-run-the-crc32selftest.patch │ │ ├── Config.in │ │ ├── xfsprogs.hash │ │ └── xfsprogs.mk │ ├── xinetd │ │ ├── 0001-ar.patch │ │ ├── 0002-destdir.patch │ │ ├── 0003-rpc-fix.patch │ │ ├── 0004-configure-rlim_t.patch │ │ ├── Config.in │ │ ├── xinetd.hash │ │ └── xinetd.mk │ ├── xl2tp │ │ ├── Config.in │ │ ├── xl2tp.hash │ │ ├── xl2tp.mk │ │ └── xl2tpd │ ├── xmlstarlet │ │ ├── Config.in │ │ ├── xmlstarlet.hash │ │ └── xmlstarlet.mk │ ├── xorriso │ │ ├── Config.in │ │ ├── Config.in.host │ │ ├── xorriso.hash │ │ └── xorriso.mk │ ├── xr819-xradio │ │ ├── Config.in │ │ ├── xr819-xradio.hash │ │ └── xr819-xradio.mk │ ├── xscreensaver │ │ ├── Config.in │ │ ├── xscreensaver.hash │ │ └── xscreensaver.mk │ ├── xtables-addons │ │ ├── Config.in │ │ ├── xtables-addons.hash │ │ └── xtables-addons.mk │ ├── xterm │ │ ├── Config.in │ │ ├── xterm.hash │ │ └── xterm.mk │ ├── xutil_util-macros │ │ ├── Config.in │ │ ├── xutil_util-macros.hash │ │ └── xutil_util-macros.mk │ ├── xvisor │ │ ├── 0001-MAKEFILE-Unconditionally-disable-SSP.patch │ │ ├── Config.in │ │ ├── xvisor.hash │ │ └── xvisor.mk │ ├── xvkbd │ │ ├── 0001-Makefile-am-fix-install-data-hook.patch │ │ ├── Config.in │ │ ├── xvkbd.hash │ │ └── xvkbd.mk │ ├── xxhash │ │ ├── Config.in │ │ ├── xxhash.hash │ │ └── xxhash.mk │ ├── xz │ │ ├── Config.in │ │ ├── xz.hash │ │ └── xz.mk │ ├── yad │ │ ├── Config.in │ │ ├── yad.hash │ │ └── yad.mk │ ├── yaffs2utils │ │ ├── yaffs2utils.hash │ │ └── yaffs2utils.mk │ ├── yajl │ │ ├── 0001-Let-the-shared-and-the-static-library-have-the-same-.patch │ │ ├── 0002-cmake-disable-shared-library-build-when-BUILD_SHARED.patch │ │ ├── 0003-Link-with-shared-libyajl-in-a-shared-build.patch │ │ ├── 0004-Link-libyajl-_s-with-libm-when-isnan-is-not-brought-.patch │ │ ├── Config.in │ │ ├── yajl.hash │ │ └── yajl.mk │ ├── yaml-cpp │ │ ├── Config.in │ │ ├── yaml-cpp.hash │ │ └── yaml-cpp.mk │ ├── yasm │ │ ├── Config.in │ │ ├── yasm.hash │ │ └── yasm.mk │ ├── yavta │ │ ├── Config.in │ │ └── yavta.mk │ ├── ympd │ │ ├── 0002-only-c-language.patch │ │ ├── Config.in │ │ ├── ympd.hash │ │ └── ympd.mk │ ├── ytree │ │ ├── 0001-fix-musl.patch │ │ ├── Config.in │ │ ├── ytree.hash │ │ └── ytree.mk │ ├── zbar │ │ ├── Config.in │ │ ├── zbar.hash │ │ └── zbar.mk │ ├── zd1211-firmware │ │ ├── Config.in │ │ ├── zd1211-firmware.hash │ │ └── zd1211-firmware.mk │ ├── zeromq │ │ ├── 0001-acinclude.m4-add-latomic-to-PKGCFG_LIBS_PRIVATE.patch │ │ ├── Config.in │ │ ├── zeromq.hash │ │ └── zeromq.mk │ ├── zic │ │ ├── 0001-remove-dependency-check-on-version-file.patch │ │ ├── zic.hash │ │ └── zic.mk │ ├── zip │ │ ├── 0001-configure-Remove-Check-C-compiler-type-optimization-.patch │ │ ├── 0002-configure-Don-t-use-host-CPP.patch │ │ ├── 0003-Makefile-Use-CFLAGS-from-command-line.patch │ │ ├── 0004-configure-use-LDFLAGS-from-command-line.patch │ │ ├── 0005-unix-configure-remove-GID-UID-size-check.patch │ │ ├── 0006-unix-configure-borrow-the-LFS-test-from-autotools.patch │ │ ├── 0007-timezone.c-needs-time.h-fixes-musl-compile.patch │ │ ├── Config.in │ │ ├── Config.in.host │ │ ├── zip.hash │ │ └── zip.mk │ ├── zisofs-tools │ │ ├── zisofs-tools.hash │ │ └── zisofs-tools.mk │ ├── zlib-ng │ │ ├── zlib-ng.hash │ │ └── zlib-ng.mk │ ├── zlib │ │ ├── Config.in │ │ └── zlib.mk │ ├── zlog │ │ ├── Config.in │ │ ├── zlog.hash │ │ └── zlog.mk │ ├── zmqpp │ │ ├── 0001-Allow-building-shared-or-static-library-only.patch │ │ ├── Config.in │ │ ├── zmqpp.hash │ │ └── zmqpp.mk │ ├── znc │ │ ├── Config.in │ │ ├── znc.hash │ │ └── znc.mk │ ├── zsh │ │ ├── Config.in │ │ ├── zsh.hash │ │ └── zsh.mk │ ├── zstd │ │ ├── Config.in │ │ ├── Config.in.host │ │ ├── zstd.hash │ │ └── zstd.mk │ ├── zxing-cpp │ │ ├── 0001-Link-library-with-OpenCV-make-libs-private-not-exported-to-the-users.patch │ │ ├── 0002-CMakeLists-txt-add-BUILD_OPENCV-option.patch │ │ ├── Config.in │ │ ├── zxing-cpp.hash │ │ └── zxing-cpp.mk │ ├── zynq-boot-bin │ │ ├── zynq-boot-bin.hash │ │ └── zynq-boot-bin.mk │ ├── zyre │ │ ├── Config.in │ │ ├── zyre.hash │ │ └── zyre.mk │ └── zziplib │ │ ├── Config.in │ │ ├── zziplib.hash │ │ └── zziplib.mk ├── riscv64-uclibc-nommu │ ├── busybox-small.config │ ├── initramfs.cpio │ ├── initramfs │ │ ├── bin │ │ │ ├── arch │ │ │ ├── busybox │ │ │ ├── cat │ │ │ ├── chgrp │ │ │ ├── chmod │ │ │ ├── chown │ │ │ ├── cp │ │ │ ├── date │ │ │ ├── dmesg │ │ │ ├── echo │ │ │ ├── false │ │ │ ├── hush │ │ │ ├── init │ │ │ ├── kill │ │ │ ├── link │ │ │ ├── ln │ │ │ ├── ls │ │ │ ├── mkdir │ │ │ ├── mknod │ │ │ ├── more │ │ │ ├── mount │ │ │ ├── mv │ │ │ ├── printenv │ │ │ ├── ps │ │ │ ├── pwd │ │ │ ├── rm │ │ │ ├── rmdir │ │ │ ├── setserial │ │ │ ├── sh │ │ │ ├── sleep │ │ │ ├── stty │ │ │ ├── touch │ │ │ ├── true │ │ │ ├── umount │ │ │ ├── uname │ │ │ └── usleep │ │ ├── initramfs-new2 │ │ │ ├── bin │ │ │ │ ├── arch │ │ │ │ ├── busybox │ │ │ │ ├── cat │ │ │ │ ├── chgrp │ │ │ │ ├── chmod │ │ │ │ ├── chown │ │ │ │ ├── cp │ │ │ │ ├── date │ │ │ │ ├── dmesg │ │ │ │ ├── echo │ │ │ │ ├── false │ │ │ │ ├── hush │ │ │ │ ├── init │ │ │ │ ├── kill │ │ │ │ ├── link │ │ │ │ ├── ln │ │ │ │ ├── ls │ │ │ │ ├── mkdir │ │ │ │ ├── mknod │ │ │ │ ├── more │ │ │ │ ├── mount │ │ │ │ ├── mv │ │ │ │ ├── printenv │ │ │ │ ├── ps │ │ │ │ ├── pwd │ │ │ │ ├── rm │ │ │ │ ├── rmdir │ │ │ │ ├── setserial │ │ │ │ ├── sh │ │ │ │ ├── sleep │ │ │ │ ├── stty │ │ │ │ ├── touch │ │ │ │ ├── true │ │ │ │ ├── umount │ │ │ │ ├── uname │ │ │ │ └── usleep │ │ │ ├── sbin │ │ │ │ └── runlevel │ │ │ └── usr │ │ │ │ ├── bin │ │ │ │ ├── [ │ │ │ │ ├── [[ │ │ │ │ ├── basename │ │ │ │ ├── dirname │ │ │ │ ├── env │ │ │ │ ├── expr │ │ │ │ ├── head │ │ │ │ ├── hostid │ │ │ │ ├── id │ │ │ │ ├── last │ │ │ │ ├── printf │ │ │ │ ├── readlink │ │ │ │ ├── realpath │ │ │ │ ├── seq │ │ │ │ ├── tail │ │ │ │ ├── tee │ │ │ │ ├── test │ │ │ │ ├── tty │ │ │ │ ├── uniq │ │ │ │ ├── unlink │ │ │ │ ├── users │ │ │ │ ├── w │ │ │ │ ├── wall │ │ │ │ ├── wc │ │ │ │ ├── who │ │ │ │ └── yes │ │ │ │ └── sbin │ │ │ │ ├── chroot │ │ │ │ └── readahead │ │ ├── sbin │ │ │ └── runlevel │ │ └── usr │ │ │ ├── bin │ │ │ ├── [ │ │ │ ├── [[ │ │ │ ├── basename │ │ │ ├── dirname │ │ │ ├── env │ │ │ ├── expr │ │ │ ├── head │ │ │ ├── hostid │ │ │ ├── id │ │ │ ├── last │ │ │ ├── printf │ │ │ ├── readlink │ │ │ ├── realpath │ │ │ ├── seq │ │ │ ├── tail │ │ │ ├── tee │ │ │ ├── test │ │ │ ├── tty │ │ │ ├── uniq │ │ │ ├── unlink │ │ │ ├── users │ │ │ ├── w │ │ │ ├── wall │ │ │ ├── wc │ │ │ ├── who │ │ │ └── yes │ │ │ └── sbin │ │ │ ├── chroot │ │ │ └── readahead │ └── riscv64-uclibc-toolchain │ │ ├── bin │ │ ├── m4 │ │ ├── patchelf │ │ ├── pkg-config │ │ ├── pkgconf │ │ ├── riscv64-buildroot-linux-uclibc-addr2line │ │ ├── riscv64-buildroot-linux-uclibc-ar │ │ ├── riscv64-buildroot-linux-uclibc-as │ │ ├── riscv64-buildroot-linux-uclibc-c++filt │ │ ├── riscv64-buildroot-linux-uclibc-cc │ │ ├── riscv64-buildroot-linux-uclibc-cc.br_real │ │ ├── riscv64-buildroot-linux-uclibc-cpp │ │ ├── riscv64-buildroot-linux-uclibc-cpp.br_real │ │ ├── riscv64-buildroot-linux-uclibc-elf2flt │ │ ├── riscv64-buildroot-linux-uclibc-elfedit │ │ ├── riscv64-buildroot-linux-uclibc-flthdr │ │ ├── riscv64-buildroot-linux-uclibc-gcc │ │ ├── riscv64-buildroot-linux-uclibc-gcc-9.2.0 │ │ ├── riscv64-buildroot-linux-uclibc-gcc-9.2.0.br_real │ │ ├── riscv64-buildroot-linux-uclibc-gcc-ar │ │ ├── riscv64-buildroot-linux-uclibc-gcc-nm │ │ ├── riscv64-buildroot-linux-uclibc-gcc-ranlib │ │ ├── riscv64-buildroot-linux-uclibc-gcc.br_real │ │ ├── riscv64-buildroot-linux-uclibc-gcov │ │ ├── riscv64-buildroot-linux-uclibc-gcov-dump │ │ ├── riscv64-buildroot-linux-uclibc-gcov-tool │ │ ├── riscv64-buildroot-linux-uclibc-gprof │ │ ├── riscv64-buildroot-linux-uclibc-ld │ │ ├── riscv64-buildroot-linux-uclibc-ld.bfd │ │ ├── riscv64-buildroot-linux-uclibc-ld.real │ │ ├── riscv64-buildroot-linux-uclibc-nm │ │ ├── riscv64-buildroot-linux-uclibc-objcopy │ │ ├── riscv64-buildroot-linux-uclibc-objdump │ │ ├── riscv64-buildroot-linux-uclibc-ranlib │ │ ├── riscv64-buildroot-linux-uclibc-readelf │ │ ├── riscv64-buildroot-linux-uclibc-size │ │ ├── riscv64-buildroot-linux-uclibc-strings │ │ ├── riscv64-buildroot-linux-uclibc-strip │ │ ├── riscv64-linux-addr2line │ │ ├── riscv64-linux-ar │ │ ├── riscv64-linux-as │ │ ├── riscv64-linux-c++filt │ │ ├── riscv64-linux-cc │ │ ├── riscv64-linux-cc.br_real │ │ ├── riscv64-linux-cpp │ │ ├── riscv64-linux-cpp.br_real │ │ ├── riscv64-linux-elf2flt │ │ ├── riscv64-linux-elfedit │ │ ├── riscv64-linux-flthdr │ │ ├── riscv64-linux-gcc │ │ ├── riscv64-linux-gcc-9.2.0 │ │ ├── riscv64-linux-gcc-9.2.0.br_real │ │ ├── riscv64-linux-gcc-ar │ │ ├── riscv64-linux-gcc-nm │ │ ├── riscv64-linux-gcc-ranlib │ │ ├── riscv64-linux-gcc.br_real │ │ ├── riscv64-linux-gcov │ │ ├── riscv64-linux-gcov-dump │ │ ├── riscv64-linux-gcov-tool │ │ ├── riscv64-linux-gprof │ │ ├── riscv64-linux-ld │ │ ├── riscv64-linux-ld.bfd │ │ ├── riscv64-linux-ld.real │ │ ├── riscv64-linux-nm │ │ ├── riscv64-linux-objcopy │ │ ├── riscv64-linux-objdump │ │ ├── riscv64-linux-ranlib │ │ ├── riscv64-linux-readelf │ │ ├── riscv64-linux-size │ │ ├── riscv64-linux-strings │ │ ├── riscv64-linux-strip │ │ ├── tar │ │ └── toolchain-wrapper │ │ ├── etc │ │ └── meson │ │ │ ├── cross-compilation.conf │ │ │ └── cross-compilation.conf.in │ │ ├── include │ │ ├── gmp.h │ │ ├── mpc.h │ │ ├── mpf2mpfr.h │ │ ├── mpfr.h │ │ ├── pkgconf │ │ │ └── libpkgconf │ │ │ │ ├── bsdstubs.h │ │ │ │ ├── iter.h │ │ │ │ ├── libpkgconf-api.h │ │ │ │ ├── libpkgconf.h │ │ │ │ └── stdinc.h │ │ ├── zconf.h │ │ └── zlib.h │ │ ├── lib │ │ ├── gcc │ │ │ └── riscv64-buildroot-linux-uclibc │ │ │ │ └── 9.2.0 │ │ │ │ ├── include-fixed │ │ │ │ ├── README │ │ │ │ ├── limits.h │ │ │ │ └── syslimits.h │ │ │ │ ├── include │ │ │ │ ├── float.h │ │ │ │ ├── gcov.h │ │ │ │ ├── iso646.h │ │ │ │ ├── stdalign.h │ │ │ │ ├── stdarg.h │ │ │ │ ├── stdatomic.h │ │ │ │ ├── stdbool.h │ │ │ │ ├── stddef.h │ │ │ │ ├── stdfix.h │ │ │ │ ├── stdint-gcc.h │ │ │ │ ├── stdint.h │ │ │ │ ├── stdnoreturn.h │ │ │ │ ├── unwind.h │ │ │ │ └── varargs.h │ │ │ │ ├── install-tools │ │ │ │ ├── fixinc_list │ │ │ │ ├── gsyslimits.h │ │ │ │ ├── include │ │ │ │ │ ├── README │ │ │ │ │ └── limits.h │ │ │ │ ├── macro_list │ │ │ │ └── mkheaders.conf │ │ │ │ ├── libgcc.a │ │ │ │ ├── libgcov.a │ │ │ │ └── plugin │ │ │ │ ├── gtype.state │ │ │ │ ├── include │ │ │ │ ├── ada │ │ │ │ │ └── gcc-interface │ │ │ │ │ │ └── ada-tree.def │ │ │ │ ├── addresses.h │ │ │ │ ├── alias.h │ │ │ │ ├── align.h │ │ │ │ ├── all-tree.def │ │ │ │ ├── alloc-pool.h │ │ │ │ ├── ansidecl.h │ │ │ │ ├── asan.h │ │ │ │ ├── attribs.h │ │ │ │ ├── auto-host.h │ │ │ │ ├── auto-profile.h │ │ │ │ ├── b-header-vars │ │ │ │ ├── backend.h │ │ │ │ ├── basic-block.h │ │ │ │ ├── bb-reorder.h │ │ │ │ ├── bitmap.h │ │ │ │ ├── brig-builtins.def │ │ │ │ ├── builtin-attrs.def │ │ │ │ ├── builtin-types.def │ │ │ │ ├── builtins.def │ │ │ │ ├── builtins.h │ │ │ │ ├── bversion.h │ │ │ │ ├── c-family │ │ │ │ │ ├── c-common.def │ │ │ │ │ ├── c-common.h │ │ │ │ │ ├── c-objc.h │ │ │ │ │ ├── c-pragma.h │ │ │ │ │ └── c-pretty-print.h │ │ │ │ ├── c-tree.h │ │ │ │ ├── calls.h │ │ │ │ ├── ccmp.h │ │ │ │ ├── cfg-flags.def │ │ │ │ ├── cfg.h │ │ │ │ ├── cfganal.h │ │ │ │ ├── cfgbuild.h │ │ │ │ ├── cfgcleanup.h │ │ │ │ ├── cfgexpand.h │ │ │ │ ├── cfghooks.h │ │ │ │ ├── cfgloop.h │ │ │ │ ├── cfgloopmanip.h │ │ │ │ ├── cfgrtl.h │ │ │ │ ├── cgraph.h │ │ │ │ ├── cif-code.def │ │ │ │ ├── collect-utils.h │ │ │ │ ├── collect2-aix.h │ │ │ │ ├── collect2.h │ │ │ │ ├── color-macros.h │ │ │ │ ├── conditions.h │ │ │ │ ├── config.h │ │ │ │ ├── config │ │ │ │ │ ├── elfos.h │ │ │ │ │ ├── glibc-stdint.h │ │ │ │ │ ├── gnu-user.h │ │ │ │ │ ├── initfini-array.h │ │ │ │ │ ├── linux-protos.h │ │ │ │ │ ├── linux.h │ │ │ │ │ └── riscv │ │ │ │ │ │ ├── linux.h │ │ │ │ │ │ ├── riscv-opts.h │ │ │ │ │ │ ├── riscv-protos.h │ │ │ │ │ │ └── riscv.h │ │ │ │ ├── configargs.h │ │ │ │ ├── context.h │ │ │ │ ├── convert.h │ │ │ │ ├── coretypes.h │ │ │ │ ├── coverage.h │ │ │ │ ├── cp │ │ │ │ │ └── cp-tree.def │ │ │ │ ├── cppbuiltin.h │ │ │ │ ├── cppdefault.h │ │ │ │ ├── cpplib.h │ │ │ │ ├── cselib.h │ │ │ │ ├── d │ │ │ │ │ └── d-tree.def │ │ │ │ ├── data-streamer.h │ │ │ │ ├── dbgcnt.def │ │ │ │ ├── dbgcnt.h │ │ │ │ ├── dbxout.h │ │ │ │ ├── dce.h │ │ │ │ ├── ddg.h │ │ │ │ ├── debug.h │ │ │ │ ├── defaults.h │ │ │ │ ├── df.h │ │ │ │ ├── dfp.h │ │ │ │ ├── diagnostic-color.h │ │ │ │ ├── diagnostic-core.h │ │ │ │ ├── diagnostic.def │ │ │ │ ├── diagnostic.h │ │ │ │ ├── dojump.h │ │ │ │ ├── dominance.h │ │ │ │ ├── domwalk.h │ │ │ │ ├── double-int.h │ │ │ │ ├── dump-context.h │ │ │ │ ├── dumpfile.h │ │ │ │ ├── dwarf2asm.h │ │ │ │ ├── dwarf2out.h │ │ │ │ ├── edit-context.h │ │ │ │ ├── emit-rtl.h │ │ │ │ ├── errors.h │ │ │ │ ├── et-forest.h │ │ │ │ ├── except.h │ │ │ │ ├── explow.h │ │ │ │ ├── expmed.h │ │ │ │ ├── expr.h │ │ │ │ ├── fibonacci_heap.h │ │ │ │ ├── file-find.h │ │ │ │ ├── file-prefix-map.h │ │ │ │ ├── filenames.h │ │ │ │ ├── fixed-value.h │ │ │ │ ├── flag-types.h │ │ │ │ ├── flags.h │ │ │ │ ├── fold-const-call.h │ │ │ │ ├── fold-const.h │ │ │ │ ├── function.h │ │ │ │ ├── gcc-plugin.h │ │ │ │ ├── gcc-rich-location.h │ │ │ │ ├── gcc-symtab.h │ │ │ │ ├── gcc.h │ │ │ │ ├── gcov-counter.def │ │ │ │ ├── gcov-io.h │ │ │ │ ├── gcse-common.h │ │ │ │ ├── gcse.h │ │ │ │ ├── generic-match.h │ │ │ │ ├── gengtype.h │ │ │ │ ├── genrtl.h │ │ │ │ ├── gensupport.h │ │ │ │ ├── ggc-internal.h │ │ │ │ ├── ggc.h │ │ │ │ ├── gimple-builder.h │ │ │ │ ├── gimple-expr.h │ │ │ │ ├── gimple-fold.h │ │ │ │ ├── gimple-iterator.h │ │ │ │ ├── gimple-low.h │ │ │ │ ├── gimple-match.h │ │ │ │ ├── gimple-predict.h │ │ │ │ ├── gimple-pretty-print.h │ │ │ │ ├── gimple-ssa-evrp-analyze.h │ │ │ │ ├── gimple-ssa-warn-restrict.h │ │ │ │ ├── gimple-ssa.h │ │ │ │ ├── gimple-streamer.h │ │ │ │ ├── gimple-walk.h │ │ │ │ ├── gimple.def │ │ │ │ ├── gimple.h │ │ │ │ ├── gimplify-me.h │ │ │ │ ├── gimplify.h │ │ │ │ ├── glimits.h │ │ │ │ ├── graph.h │ │ │ │ ├── graphds.h │ │ │ │ ├── graphite.h │ │ │ │ ├── gsstruct.def │ │ │ │ ├── gstab.h │ │ │ │ ├── gsyms.h │ │ │ │ ├── gsyslimits.h │ │ │ │ ├── gtm-builtins.def │ │ │ │ ├── gtype-desc.h │ │ │ │ ├── hard-reg-set.h │ │ │ │ ├── hash-map-traits.h │ │ │ │ ├── hash-map.h │ │ │ │ ├── hash-set.h │ │ │ │ ├── hash-table.h │ │ │ │ ├── hash-traits.h │ │ │ │ ├── hashtab.h │ │ │ │ ├── highlev-plugin-common.h │ │ │ │ ├── hooks.h │ │ │ │ ├── hosthooks-def.h │ │ │ │ ├── hosthooks.h │ │ │ │ ├── hsa-brig-format.h │ │ │ │ ├── hsa-builtins.def │ │ │ │ ├── hsa-common.h │ │ │ │ ├── hw-doloop.h │ │ │ │ ├── hwint.h │ │ │ │ ├── ifcvt.h │ │ │ │ ├── inchash.h │ │ │ │ ├── incpath.h │ │ │ │ ├── input.h │ │ │ │ ├── insn-addr.h │ │ │ │ ├── insn-attr-common.h │ │ │ │ ├── insn-attr.h │ │ │ │ ├── insn-codes.h │ │ │ │ ├── insn-constants.h │ │ │ │ ├── insn-flags.h │ │ │ │ ├── insn-modes-inline.h │ │ │ │ ├── insn-modes.h │ │ │ │ ├── insn-notes.def │ │ │ │ ├── int-vector-builder.h │ │ │ │ ├── internal-fn.def │ │ │ │ ├── internal-fn.h │ │ │ │ ├── intl.h │ │ │ │ ├── ipa-fnsummary.h │ │ │ │ ├── ipa-icf-gimple.h │ │ │ │ ├── ipa-icf.h │ │ │ │ ├── ipa-inline.h │ │ │ │ ├── ipa-param-manipulation.h │ │ │ │ ├── ipa-predicate.h │ │ │ │ ├── ipa-prop.h │ │ │ │ ├── ipa-ref.h │ │ │ │ ├── ipa-reference.h │ │ │ │ ├── ipa-utils.h │ │ │ │ ├── ira-int.h │ │ │ │ ├── ira.h │ │ │ │ ├── is-a.h │ │ │ │ ├── json.h │ │ │ │ ├── langhooks-def.h │ │ │ │ ├── langhooks.h │ │ │ │ ├── lcm.h │ │ │ │ ├── libfuncs.h │ │ │ │ ├── libiberty.h │ │ │ │ ├── limitx.h │ │ │ │ ├── limity.h │ │ │ │ ├── line-map.h │ │ │ │ ├── loop-unroll.h │ │ │ │ ├── lower-subreg.h │ │ │ │ ├── lra-int.h │ │ │ │ ├── lra.h │ │ │ │ ├── lto-compress.h │ │ │ │ ├── lto-section-names.h │ │ │ │ ├── lto-streamer.h │ │ │ │ ├── machmode.def │ │ │ │ ├── machmode.h │ │ │ │ ├── md5.h │ │ │ │ ├── mem-stats-traits.h │ │ │ │ ├── mem-stats.h │ │ │ │ ├── memmodel.h │ │ │ │ ├── memory-block.h │ │ │ │ ├── mode-classes.def │ │ │ │ ├── objc │ │ │ │ │ └── objc-tree.def │ │ │ │ ├── obstack.h │ │ │ │ ├── omp-builtins.def │ │ │ │ ├── omp-expand.h │ │ │ │ ├── omp-general.h │ │ │ │ ├── omp-grid.h │ │ │ │ ├── omp-low.h │ │ │ │ ├── omp-offload.h │ │ │ │ ├── omp-simd-clone.h │ │ │ │ ├── opt-problem.h │ │ │ │ ├── opt-suggestions.h │ │ │ │ ├── optabs-libfuncs.h │ │ │ │ ├── optabs-query.h │ │ │ │ ├── optabs-tree.h │ │ │ │ ├── optabs.def │ │ │ │ ├── optabs.h │ │ │ │ ├── optinfo-emit-json.h │ │ │ │ ├── optinfo.h │ │ │ │ ├── options.h │ │ │ │ ├── opts-diagnostic.h │ │ │ │ ├── opts.h │ │ │ │ ├── output.h │ │ │ │ ├── params-enum.h │ │ │ │ ├── params-list.h │ │ │ │ ├── params-options.h │ │ │ │ ├── params.def │ │ │ │ ├── params.h │ │ │ │ ├── params.list │ │ │ │ ├── pass-instances.def │ │ │ │ ├── pass_manager.h │ │ │ │ ├── passes.def │ │ │ │ ├── plugin-api.h │ │ │ │ ├── plugin-version.h │ │ │ │ ├── plugin.def │ │ │ │ ├── plugin.h │ │ │ │ ├── poly-int-types.h │ │ │ │ ├── poly-int.h │ │ │ │ ├── predict.def │ │ │ │ ├── predict.h │ │ │ │ ├── prefix.h │ │ │ │ ├── pretty-print.h │ │ │ │ ├── print-rtl.h │ │ │ │ ├── print-tree.h │ │ │ │ ├── profile-count.h │ │ │ │ ├── profile.h │ │ │ │ ├── read-md.h │ │ │ │ ├── read-rtl-function.h │ │ │ │ ├── real.h │ │ │ │ ├── realmpfr.h │ │ │ │ ├── recog.h │ │ │ │ ├── reg-notes.def │ │ │ │ ├── regcprop.h │ │ │ │ ├── regrename.h │ │ │ │ ├── regs.h │ │ │ │ ├── regset.h │ │ │ │ ├── reload.h │ │ │ │ ├── resource.h │ │ │ │ ├── rtl-error.h │ │ │ │ ├── rtl-iter.h │ │ │ │ ├── rtl.def │ │ │ │ ├── rtl.h │ │ │ │ ├── rtlhash.h │ │ │ │ ├── rtlhooks-def.h │ │ │ │ ├── rtx-vector-builder.h │ │ │ │ ├── run-rtl-passes.h │ │ │ │ ├── safe-ctype.h │ │ │ │ ├── sanitizer.def │ │ │ │ ├── sbitmap.h │ │ │ │ ├── sched-int.h │ │ │ │ ├── sel-sched-dump.h │ │ │ │ ├── sel-sched-ir.h │ │ │ │ ├── sel-sched.h │ │ │ │ ├── selftest-diagnostic.h │ │ │ │ ├── selftest-rtl.h │ │ │ │ ├── selftest.h │ │ │ │ ├── sese.h │ │ │ │ ├── shrink-wrap.h │ │ │ │ ├── signop.h │ │ │ │ ├── sparseset.h │ │ │ │ ├── spellcheck-tree.h │ │ │ │ ├── spellcheck.h │ │ │ │ ├── splay-tree.h │ │ │ │ ├── sreal.h │ │ │ │ ├── ssa-iterators.h │ │ │ │ ├── ssa.h │ │ │ │ ├── stab.def │ │ │ │ ├── statistics.h │ │ │ │ ├── stmt.h │ │ │ │ ├── stor-layout.h │ │ │ │ ├── streamer-hooks.h │ │ │ │ ├── stringpool.h │ │ │ │ ├── substring-locations.h │ │ │ │ ├── symbol-summary.h │ │ │ │ ├── symtab.h │ │ │ │ ├── sync-builtins.def │ │ │ │ ├── system.h │ │ │ │ ├── target-def.h │ │ │ │ ├── target-globals.h │ │ │ │ ├── target-hooks-macros.h │ │ │ │ ├── target-insns.def │ │ │ │ ├── target.def │ │ │ │ ├── target.h │ │ │ │ ├── targhooks.h │ │ │ │ ├── timevar.def │ │ │ │ ├── timevar.h │ │ │ │ ├── tm-preds.h │ │ │ │ ├── tm.h │ │ │ │ ├── tm_p.h │ │ │ │ ├── toplev.h │ │ │ │ ├── tracer.h │ │ │ │ ├── trans-mem.h │ │ │ │ ├── tree-affine.h │ │ │ │ ├── tree-cfg.h │ │ │ │ ├── tree-cfgcleanup.h │ │ │ │ ├── tree-check.h │ │ │ │ ├── tree-chrec.h │ │ │ │ ├── tree-core.h │ │ │ │ ├── tree-data-ref.h │ │ │ │ ├── tree-dfa.h │ │ │ │ ├── tree-diagnostic.h │ │ │ │ ├── tree-dump.h │ │ │ │ ├── tree-eh.h │ │ │ │ ├── tree-hash-traits.h │ │ │ │ ├── tree-hasher.h │ │ │ │ ├── tree-if-conv.h │ │ │ │ ├── tree-inline.h │ │ │ │ ├── tree-into-ssa.h │ │ │ │ ├── tree-iterator.h │ │ │ │ ├── tree-nested.h │ │ │ │ ├── tree-object-size.h │ │ │ │ ├── tree-outof-ssa.h │ │ │ │ ├── tree-parloops.h │ │ │ │ ├── tree-pass.h │ │ │ │ ├── tree-phinodes.h │ │ │ │ ├── tree-pretty-print.h │ │ │ │ ├── tree-scalar-evolution.h │ │ │ │ ├── tree-ssa-address.h │ │ │ │ ├── tree-ssa-alias.h │ │ │ │ ├── tree-ssa-ccp.h │ │ │ │ ├── tree-ssa-coalesce.h │ │ │ │ ├── tree-ssa-dce.h │ │ │ │ ├── tree-ssa-dom.h │ │ │ │ ├── tree-ssa-live.h │ │ │ │ ├── tree-ssa-loop-ivopts.h │ │ │ │ ├── tree-ssa-loop-manip.h │ │ │ │ ├── tree-ssa-loop-niter.h │ │ │ │ ├── tree-ssa-loop.h │ │ │ │ ├── tree-ssa-operands.h │ │ │ │ ├── tree-ssa-propagate.h │ │ │ │ ├── tree-ssa-sccvn.h │ │ │ │ ├── tree-ssa-scopedtables.h │ │ │ │ ├── tree-ssa-strlen.h │ │ │ │ ├── tree-ssa-ter.h │ │ │ │ ├── tree-ssa-threadedge.h │ │ │ │ ├── tree-ssa-threadupdate.h │ │ │ │ ├── tree-ssa.h │ │ │ │ ├── tree-ssanames.h │ │ │ │ ├── tree-stdarg.h │ │ │ │ ├── tree-streamer.h │ │ │ │ ├── tree-switch-conversion.h │ │ │ │ ├── tree-vector-builder.h │ │ │ │ ├── tree-vectorizer.h │ │ │ │ ├── tree-vrp.h │ │ │ │ ├── tree.def │ │ │ │ ├── tree.h │ │ │ │ ├── treestruct.def │ │ │ │ ├── tsan.h │ │ │ │ ├── tsystem.h │ │ │ │ ├── typeclass.h │ │ │ │ ├── typed-splay-tree.h │ │ │ │ ├── ubsan.h │ │ │ │ ├── valtrack.h │ │ │ │ ├── value-prof.h │ │ │ │ ├── varasm.h │ │ │ │ ├── vec-perm-indices.h │ │ │ │ ├── vec.h │ │ │ │ ├── vector-builder.h │ │ │ │ ├── version.h │ │ │ │ ├── vmsdbg.h │ │ │ │ ├── vr-values.h │ │ │ │ ├── vtable-verify.h │ │ │ │ ├── wide-int-bitmask.h │ │ │ │ ├── wide-int-print.h │ │ │ │ ├── wide-int-range.h │ │ │ │ ├── wide-int.h │ │ │ │ ├── xcoff.h │ │ │ │ └── xcoffout.h │ │ │ │ ├── libcc1plugin.a │ │ │ │ ├── libcc1plugin.la │ │ │ │ ├── libcc1plugin.so │ │ │ │ ├── libcc1plugin.so.0 │ │ │ │ ├── libcc1plugin.so.0.0.0 │ │ │ │ ├── libcp1plugin.a │ │ │ │ ├── libcp1plugin.la │ │ │ │ ├── libcp1plugin.so │ │ │ │ ├── libcp1plugin.so.0 │ │ │ │ └── libcp1plugin.so.0.0.0 │ │ ├── libcc1.a │ │ ├── libcc1.la │ │ ├── libcc1.so │ │ ├── libcc1.so.0 │ │ ├── libcc1.so.0.0.0 │ │ ├── libgmp.la │ │ ├── libgmp.so │ │ ├── libgmp.so.10 │ │ ├── libgmp.so.10.3.2 │ │ ├── libmpc.la │ │ ├── libmpc.so │ │ ├── libmpc.so.3 │ │ ├── libmpc.so.3.1.0 │ │ ├── libmpfr.la │ │ ├── libmpfr.so │ │ ├── libmpfr.so.6 │ │ ├── libmpfr.so.6.0.2 │ │ ├── libpkgconf.la │ │ ├── libpkgconf.so │ │ ├── libpkgconf.so.3 │ │ ├── libpkgconf.so.3.0.0 │ │ ├── libz.a │ │ ├── libz.so │ │ ├── libz.so.1 │ │ ├── libz.so.1.2.11 │ │ └── pkgconfig │ │ │ ├── libpkgconf.pc │ │ │ ├── mpfr.pc │ │ │ └── zlib.pc │ │ ├── lib64 │ │ ├── libexec │ │ ├── gcc │ │ │ └── riscv64-buildroot-linux-uclibc │ │ │ │ └── 9.2.0 │ │ │ │ ├── cc1 │ │ │ │ ├── collect2 │ │ │ │ ├── install-tools │ │ │ │ ├── fixinc.sh │ │ │ │ ├── fixincl │ │ │ │ ├── mkheaders │ │ │ │ └── mkinstalldirs │ │ │ │ ├── liblto_plugin.la │ │ │ │ ├── liblto_plugin.so │ │ │ │ ├── liblto_plugin.so.0 │ │ │ │ ├── liblto_plugin.so.0.0.0 │ │ │ │ ├── lto-wrapper │ │ │ │ ├── lto1 │ │ │ │ └── plugin │ │ │ │ └── gengtype │ │ └── rmt │ │ ├── riscv64-buildroot-linux-uclibc │ │ ├── bin │ │ │ ├── ar │ │ │ ├── as │ │ │ ├── elf2flt │ │ │ ├── flthdr │ │ │ ├── ld │ │ │ ├── ld.bfd │ │ │ ├── ld.real │ │ │ ├── nm │ │ │ ├── objcopy │ │ │ ├── objdump │ │ │ ├── ranlib │ │ │ ├── readelf │ │ │ └── strip │ │ ├── lib │ │ │ ├── elf2flt.ld │ │ │ └── ldscripts │ │ │ │ ├── elf32lriscv.x │ │ │ │ ├── elf32lriscv.xbn │ │ │ │ ├── elf32lriscv.xc │ │ │ │ ├── elf32lriscv.xce │ │ │ │ ├── elf32lriscv.xd │ │ │ │ ├── elf32lriscv.xdc │ │ │ │ ├── elf32lriscv.xdce │ │ │ │ ├── elf32lriscv.xde │ │ │ │ ├── elf32lriscv.xdw │ │ │ │ ├── elf32lriscv.xdwe │ │ │ │ ├── elf32lriscv.xe │ │ │ │ ├── elf32lriscv.xn │ │ │ │ ├── elf32lriscv.xr │ │ │ │ ├── elf32lriscv.xs │ │ │ │ ├── elf32lriscv.xsc │ │ │ │ ├── elf32lriscv.xsce │ │ │ │ ├── elf32lriscv.xse │ │ │ │ ├── elf32lriscv.xsw │ │ │ │ ├── elf32lriscv.xswe │ │ │ │ ├── elf32lriscv.xu │ │ │ │ ├── elf32lriscv.xw │ │ │ │ ├── elf32lriscv.xwe │ │ │ │ ├── elf32lriscv_ilp32.x │ │ │ │ ├── elf32lriscv_ilp32.xbn │ │ │ │ ├── elf32lriscv_ilp32.xc │ │ │ │ ├── elf32lriscv_ilp32.xce │ │ │ │ ├── elf32lriscv_ilp32.xd │ │ │ │ ├── elf32lriscv_ilp32.xdc │ │ │ │ ├── elf32lriscv_ilp32.xdce │ │ │ │ ├── elf32lriscv_ilp32.xde │ │ │ │ ├── elf32lriscv_ilp32.xdw │ │ │ │ ├── elf32lriscv_ilp32.xdwe │ │ │ │ ├── elf32lriscv_ilp32.xe │ │ │ │ ├── elf32lriscv_ilp32.xn │ │ │ │ ├── elf32lriscv_ilp32.xr │ │ │ │ ├── elf32lriscv_ilp32.xs │ │ │ │ ├── elf32lriscv_ilp32.xsc │ │ │ │ ├── elf32lriscv_ilp32.xsce │ │ │ │ ├── elf32lriscv_ilp32.xse │ │ │ │ ├── elf32lriscv_ilp32.xsw │ │ │ │ ├── elf32lriscv_ilp32.xswe │ │ │ │ ├── elf32lriscv_ilp32.xu │ │ │ │ ├── elf32lriscv_ilp32.xw │ │ │ │ ├── elf32lriscv_ilp32.xwe │ │ │ │ ├── elf32lriscv_ilp32f.x │ │ │ │ ├── elf32lriscv_ilp32f.xbn │ │ │ │ ├── elf32lriscv_ilp32f.xc │ │ │ │ ├── elf32lriscv_ilp32f.xce │ │ │ │ ├── elf32lriscv_ilp32f.xd │ │ │ │ ├── elf32lriscv_ilp32f.xdc │ │ │ │ ├── elf32lriscv_ilp32f.xdce │ │ │ │ ├── elf32lriscv_ilp32f.xde │ │ │ │ ├── elf32lriscv_ilp32f.xdw │ │ │ │ ├── elf32lriscv_ilp32f.xdwe │ │ │ │ ├── elf32lriscv_ilp32f.xe │ │ │ │ ├── elf32lriscv_ilp32f.xn │ │ │ │ ├── elf32lriscv_ilp32f.xr │ │ │ │ ├── elf32lriscv_ilp32f.xs │ │ │ │ ├── elf32lriscv_ilp32f.xsc │ │ │ │ ├── elf32lriscv_ilp32f.xsce │ │ │ │ ├── elf32lriscv_ilp32f.xse │ │ │ │ ├── elf32lriscv_ilp32f.xsw │ │ │ │ ├── elf32lriscv_ilp32f.xswe │ │ │ │ ├── elf32lriscv_ilp32f.xu │ │ │ │ ├── elf32lriscv_ilp32f.xw │ │ │ │ ├── elf32lriscv_ilp32f.xwe │ │ │ │ ├── elf64lriscv.x │ │ │ │ ├── elf64lriscv.xbn │ │ │ │ ├── elf64lriscv.xc │ │ │ │ ├── elf64lriscv.xce │ │ │ │ ├── elf64lriscv.xd │ │ │ │ ├── elf64lriscv.xdc │ │ │ │ ├── elf64lriscv.xdce │ │ │ │ ├── elf64lriscv.xde │ │ │ │ ├── elf64lriscv.xdw │ │ │ │ ├── elf64lriscv.xdwe │ │ │ │ ├── elf64lriscv.xe │ │ │ │ ├── elf64lriscv.xn │ │ │ │ ├── elf64lriscv.xr │ │ │ │ ├── elf64lriscv.xs │ │ │ │ ├── elf64lriscv.xsc │ │ │ │ ├── elf64lriscv.xsce │ │ │ │ ├── elf64lriscv.xse │ │ │ │ ├── elf64lriscv.xsw │ │ │ │ ├── elf64lriscv.xswe │ │ │ │ ├── elf64lriscv.xu │ │ │ │ ├── elf64lriscv.xw │ │ │ │ ├── elf64lriscv.xwe │ │ │ │ ├── elf64lriscv_lp64.x │ │ │ │ ├── elf64lriscv_lp64.xbn │ │ │ │ ├── elf64lriscv_lp64.xc │ │ │ │ ├── elf64lriscv_lp64.xce │ │ │ │ ├── elf64lriscv_lp64.xd │ │ │ │ ├── elf64lriscv_lp64.xdc │ │ │ │ ├── elf64lriscv_lp64.xdce │ │ │ │ ├── elf64lriscv_lp64.xde │ │ │ │ ├── elf64lriscv_lp64.xdw │ │ │ │ ├── elf64lriscv_lp64.xdwe │ │ │ │ ├── elf64lriscv_lp64.xe │ │ │ │ ├── elf64lriscv_lp64.xn │ │ │ │ ├── elf64lriscv_lp64.xr │ │ │ │ ├── elf64lriscv_lp64.xs │ │ │ │ ├── elf64lriscv_lp64.xsc │ │ │ │ ├── elf64lriscv_lp64.xsce │ │ │ │ ├── elf64lriscv_lp64.xse │ │ │ │ ├── elf64lriscv_lp64.xsw │ │ │ │ ├── elf64lriscv_lp64.xswe │ │ │ │ ├── elf64lriscv_lp64.xu │ │ │ │ ├── elf64lriscv_lp64.xw │ │ │ │ ├── elf64lriscv_lp64.xwe │ │ │ │ ├── elf64lriscv_lp64f.x │ │ │ │ ├── elf64lriscv_lp64f.xbn │ │ │ │ ├── elf64lriscv_lp64f.xc │ │ │ │ ├── elf64lriscv_lp64f.xce │ │ │ │ ├── elf64lriscv_lp64f.xd │ │ │ │ ├── elf64lriscv_lp64f.xdc │ │ │ │ ├── elf64lriscv_lp64f.xdce │ │ │ │ ├── elf64lriscv_lp64f.xde │ │ │ │ ├── elf64lriscv_lp64f.xdw │ │ │ │ ├── elf64lriscv_lp64f.xdwe │ │ │ │ ├── elf64lriscv_lp64f.xe │ │ │ │ ├── elf64lriscv_lp64f.xn │ │ │ │ ├── elf64lriscv_lp64f.xr │ │ │ │ ├── elf64lriscv_lp64f.xs │ │ │ │ ├── elf64lriscv_lp64f.xsc │ │ │ │ ├── elf64lriscv_lp64f.xsce │ │ │ │ ├── elf64lriscv_lp64f.xse │ │ │ │ ├── elf64lriscv_lp64f.xsw │ │ │ │ ├── elf64lriscv_lp64f.xswe │ │ │ │ ├── elf64lriscv_lp64f.xu │ │ │ │ ├── elf64lriscv_lp64f.xw │ │ │ │ └── elf64lriscv_lp64f.xwe │ │ └── sysroot │ │ │ ├── dev │ │ │ ├── fd │ │ │ ├── stderr │ │ │ ├── stdin │ │ │ └── stdout │ │ │ ├── etc │ │ │ ├── group │ │ │ ├── hosts │ │ │ ├── mtab │ │ │ ├── passwd │ │ │ ├── profile │ │ │ ├── profile.d │ │ │ │ └── umask.sh │ │ │ ├── protocols │ │ │ ├── resolv.conf │ │ │ ├── services │ │ │ └── shadow │ │ │ ├── lib64 │ │ │ └── usr │ │ │ ├── bin │ │ │ └── checkmk │ │ │ ├── include │ │ │ ├── a.out.h │ │ │ ├── alloca.h │ │ │ ├── ar.h │ │ │ ├── arpa │ │ │ │ ├── ftp.h │ │ │ │ ├── inet.h │ │ │ │ ├── nameser.h │ │ │ │ ├── nameser_compat.h │ │ │ │ ├── telnet.h │ │ │ │ └── tftp.h │ │ │ ├── asm-generic │ │ │ │ ├── auxvec.h │ │ │ │ ├── bitsperlong.h │ │ │ │ ├── bpf_perf_event.h │ │ │ │ ├── errno-base.h │ │ │ │ ├── errno.h │ │ │ │ ├── fcntl.h │ │ │ │ ├── hugetlb_encode.h │ │ │ │ ├── int-l64.h │ │ │ │ ├── int-ll64.h │ │ │ │ ├── ioctl.h │ │ │ │ ├── ioctls.h │ │ │ │ ├── ipcbuf.h │ │ │ │ ├── kvm_para.h │ │ │ │ ├── mman-common.h │ │ │ │ ├── mman.h │ │ │ │ ├── msgbuf.h │ │ │ │ ├── param.h │ │ │ │ ├── poll.h │ │ │ │ ├── posix_types.h │ │ │ │ ├── resource.h │ │ │ │ ├── sembuf.h │ │ │ │ ├── setup.h │ │ │ │ ├── shmbuf.h │ │ │ │ ├── siginfo.h │ │ │ │ ├── signal-defs.h │ │ │ │ ├── signal.h │ │ │ │ ├── socket.h │ │ │ │ ├── sockios.h │ │ │ │ ├── stat.h │ │ │ │ ├── statfs.h │ │ │ │ ├── swab.h │ │ │ │ ├── termbits.h │ │ │ │ ├── termios.h │ │ │ │ ├── types.h │ │ │ │ ├── ucontext.h │ │ │ │ └── unistd.h │ │ │ ├── asm │ │ │ │ ├── auxvec.h │ │ │ │ ├── bitsperlong.h │ │ │ │ ├── bpf_perf_event.h │ │ │ │ ├── byteorder.h │ │ │ │ ├── elf.h │ │ │ │ ├── errno.h │ │ │ │ ├── fcntl.h │ │ │ │ ├── hwcap.h │ │ │ │ ├── ioctl.h │ │ │ │ ├── ioctls.h │ │ │ │ ├── ipcbuf.h │ │ │ │ ├── mman.h │ │ │ │ ├── msgbuf.h │ │ │ │ ├── param.h │ │ │ │ ├── perf_regs.h │ │ │ │ ├── poll.h │ │ │ │ ├── posix_types.h │ │ │ │ ├── ptrace.h │ │ │ │ ├── resource.h │ │ │ │ ├── sembuf.h │ │ │ │ ├── setup.h │ │ │ │ ├── shmbuf.h │ │ │ │ ├── sigcontext.h │ │ │ │ ├── siginfo.h │ │ │ │ ├── signal.h │ │ │ │ ├── socket.h │ │ │ │ ├── sockios.h │ │ │ │ ├── stat.h │ │ │ │ ├── statfs.h │ │ │ │ ├── swab.h │ │ │ │ ├── termbits.h │ │ │ │ ├── termios.h │ │ │ │ ├── types.h │ │ │ │ ├── ucontext.h │ │ │ │ └── unistd.h │ │ │ ├── assert.h │ │ │ ├── bits │ │ │ │ ├── align64bit.h │ │ │ │ ├── byteswap-16.h │ │ │ │ ├── byteswap-common.h │ │ │ │ ├── byteswap.h │ │ │ │ ├── cmathcalls.h │ │ │ │ ├── confname.h │ │ │ │ ├── dirent.h │ │ │ │ ├── elfclass.h │ │ │ │ ├── endian.h │ │ │ │ ├── environments.h │ │ │ │ ├── epoll.h │ │ │ │ ├── errno.h │ │ │ │ ├── eventfd.h │ │ │ │ ├── fcntl.h │ │ │ │ ├── getopt.h │ │ │ │ ├── getopt_int.h │ │ │ │ ├── huge_val.h │ │ │ │ ├── huge_valf.h │ │ │ │ ├── huge_vall.h │ │ │ │ ├── in.h │ │ │ │ ├── inf.h │ │ │ │ ├── inotify.h │ │ │ │ ├── ioctl-types.h │ │ │ │ ├── ioctls.h │ │ │ │ ├── ipc.h │ │ │ │ ├── kernel-features.h │ │ │ │ ├── local_lim.h │ │ │ │ ├── locale.h │ │ │ │ ├── mathcalls.h │ │ │ │ ├── mathdef.h │ │ │ │ ├── mathinline.h │ │ │ │ ├── mman-common.h │ │ │ │ ├── mman-linux.h │ │ │ │ ├── mman-shared.h │ │ │ │ ├── mman.h │ │ │ │ ├── mqueue.h │ │ │ │ ├── msq.h │ │ │ │ ├── nan.h │ │ │ │ ├── netdb.h │ │ │ │ ├── poll.h │ │ │ │ ├── posix1_lim.h │ │ │ │ ├── posix2_lim.h │ │ │ │ ├── posix_opt.h │ │ │ │ ├── resource.h │ │ │ │ ├── sched.h │ │ │ │ ├── select.h │ │ │ │ ├── sem.h │ │ │ │ ├── setjmp.h │ │ │ │ ├── shm.h │ │ │ │ ├── sigaction.h │ │ │ │ ├── sigcontext.h │ │ │ │ ├── siginfo.h │ │ │ │ ├── signalfd.h │ │ │ │ ├── signum.h │ │ │ │ ├── sigset.h │ │ │ │ ├── sigstack.h │ │ │ │ ├── sockaddr.h │ │ │ │ ├── socket.h │ │ │ │ ├── socket_type.h │ │ │ │ ├── stat.h │ │ │ │ ├── statfs.h │ │ │ │ ├── statvfs.h │ │ │ │ ├── statx.h │ │ │ │ ├── stdio.h │ │ │ │ ├── stdio_lim.h │ │ │ │ ├── sysnum.h │ │ │ │ ├── termios.h │ │ │ │ ├── time.h │ │ │ │ ├── timerfd.h │ │ │ │ ├── types.h │ │ │ │ ├── typesizes.h │ │ │ │ ├── uClibc_alloc.h │ │ │ │ ├── uClibc_charclass.h │ │ │ │ ├── uClibc_clk_tck.h │ │ │ │ ├── uClibc_config.h │ │ │ │ ├── uClibc_local_lim.h │ │ │ │ ├── uClibc_locale.h │ │ │ │ ├── uClibc_page.h │ │ │ │ ├── uClibc_posix_opt.h │ │ │ │ ├── uClibc_stdio.h │ │ │ │ ├── uClibc_touplow.h │ │ │ │ ├── uio.h │ │ │ │ ├── utmp.h │ │ │ │ ├── utmpx.h │ │ │ │ ├── utsname.h │ │ │ │ ├── waitflags.h │ │ │ │ ├── waitstatus.h │ │ │ │ ├── wchar.h │ │ │ │ ├── wordsize.h │ │ │ │ └── xopen_lim.h │ │ │ ├── byteswap.h │ │ │ ├── check.h │ │ │ ├── check_stdint.h │ │ │ ├── complex.h │ │ │ ├── cpio.h │ │ │ ├── crypt.h │ │ │ ├── ctype.h │ │ │ ├── dirent.h │ │ │ ├── drm │ │ │ │ ├── amdgpu_drm.h │ │ │ │ ├── armada_drm.h │ │ │ │ ├── drm.h │ │ │ │ ├── drm_fourcc.h │ │ │ │ ├── drm_mode.h │ │ │ │ ├── drm_sarea.h │ │ │ │ ├── etnaviv_drm.h │ │ │ │ ├── exynos_drm.h │ │ │ │ ├── i810_drm.h │ │ │ │ ├── i915_drm.h │ │ │ │ ├── lima_drm.h │ │ │ │ ├── mga_drm.h │ │ │ │ ├── msm_drm.h │ │ │ │ ├── nouveau_drm.h │ │ │ │ ├── omap_drm.h │ │ │ │ ├── panfrost_drm.h │ │ │ │ ├── qxl_drm.h │ │ │ │ ├── r128_drm.h │ │ │ │ ├── radeon_drm.h │ │ │ │ ├── savage_drm.h │ │ │ │ ├── sis_drm.h │ │ │ │ ├── tegra_drm.h │ │ │ │ ├── v3d_drm.h │ │ │ │ ├── vc4_drm.h │ │ │ │ ├── vgem_drm.h │ │ │ │ ├── via_drm.h │ │ │ │ ├── virtgpu_drm.h │ │ │ │ └── vmwgfx_drm.h │ │ │ ├── elf.h │ │ │ ├── endian.h │ │ │ ├── errno.h │ │ │ ├── fcntl.h │ │ │ ├── features.h │ │ │ ├── fnmatch.h │ │ │ ├── fpu_control.h │ │ │ ├── ftw.h │ │ │ ├── getopt.h │ │ │ ├── glob.h │ │ │ ├── gnu-versions.h │ │ │ ├── gnu │ │ │ │ └── libc-version.h │ │ │ ├── grp.h │ │ │ ├── ieee754.h │ │ │ ├── inttypes.h │ │ │ ├── langinfo.h │ │ │ ├── lastlog.h │ │ │ ├── libgen.h │ │ │ ├── libintl.h │ │ │ ├── limits.h │ │ │ ├── link.h │ │ │ ├── linux │ │ │ │ ├── acct.h │ │ │ │ ├── adb.h │ │ │ │ ├── adfs_fs.h │ │ │ │ ├── affs_hardblocks.h │ │ │ │ ├── agpgart.h │ │ │ │ ├── aio_abi.h │ │ │ │ ├── am437x-vpfe.h │ │ │ │ ├── android │ │ │ │ │ ├── binder.h │ │ │ │ │ └── binderfs.h │ │ │ │ ├── apm_bios.h │ │ │ │ ├── arcfb.h │ │ │ │ ├── arm_sdei.h │ │ │ │ ├── aspeed-lpc-ctrl.h │ │ │ │ ├── aspeed-p2a-ctrl.h │ │ │ │ ├── atalk.h │ │ │ │ ├── atm.h │ │ │ │ ├── atm_eni.h │ │ │ │ ├── atm_he.h │ │ │ │ ├── atm_idt77105.h │ │ │ │ ├── atm_nicstar.h │ │ │ │ ├── atm_tcp.h │ │ │ │ ├── atm_zatm.h │ │ │ │ ├── atmapi.h │ │ │ │ ├── atmarp.h │ │ │ │ ├── atmbr2684.h │ │ │ │ ├── atmclip.h │ │ │ │ ├── atmdev.h │ │ │ │ ├── atmioc.h │ │ │ │ ├── atmlec.h │ │ │ │ ├── atmmpc.h │ │ │ │ ├── atmppp.h │ │ │ │ ├── atmsap.h │ │ │ │ ├── atmsvc.h │ │ │ │ ├── audit.h │ │ │ │ ├── auto_dev-ioctl.h │ │ │ │ ├── auto_fs.h │ │ │ │ ├── auto_fs4.h │ │ │ │ ├── auxvec.h │ │ │ │ ├── ax25.h │ │ │ │ ├── batadv_packet.h │ │ │ │ ├── batman_adv.h │ │ │ │ ├── baycom.h │ │ │ │ ├── bcache.h │ │ │ │ ├── bcm933xx_hcs.h │ │ │ │ ├── bfs_fs.h │ │ │ │ ├── binfmts.h │ │ │ │ ├── blkpg.h │ │ │ │ ├── blktrace_api.h │ │ │ │ ├── blkzoned.h │ │ │ │ ├── bpf.h │ │ │ │ ├── bpf_common.h │ │ │ │ ├── bpf_perf_event.h │ │ │ │ ├── bpfilter.h │ │ │ │ ├── bpqether.h │ │ │ │ ├── bsg.h │ │ │ │ ├── bt-bmc.h │ │ │ │ ├── btf.h │ │ │ │ ├── btrfs.h │ │ │ │ ├── btrfs_tree.h │ │ │ │ ├── byteorder │ │ │ │ │ ├── big_endian.h │ │ │ │ │ └── little_endian.h │ │ │ │ ├── caif │ │ │ │ │ ├── caif_socket.h │ │ │ │ │ └── if_caif.h │ │ │ │ ├── can.h │ │ │ │ ├── can │ │ │ │ │ ├── bcm.h │ │ │ │ │ ├── error.h │ │ │ │ │ ├── gw.h │ │ │ │ │ ├── j1939.h │ │ │ │ │ ├── netlink.h │ │ │ │ │ ├── raw.h │ │ │ │ │ └── vxcan.h │ │ │ │ ├── capability.h │ │ │ │ ├── capi.h │ │ │ │ ├── cciss_defs.h │ │ │ │ ├── cciss_ioctl.h │ │ │ │ ├── cdrom.h │ │ │ │ ├── cec-funcs.h │ │ │ │ ├── cec.h │ │ │ │ ├── cgroupstats.h │ │ │ │ ├── chio.h │ │ │ │ ├── cifs │ │ │ │ │ └── cifs_mount.h │ │ │ │ ├── cm4000_cs.h │ │ │ │ ├── cn_proc.h │ │ │ │ ├── coda.h │ │ │ │ ├── coff.h │ │ │ │ ├── connector.h │ │ │ │ ├── const.h │ │ │ │ ├── coresight-stm.h │ │ │ │ ├── cramfs_fs.h │ │ │ │ ├── cryptouser.h │ │ │ │ ├── cuda.h │ │ │ │ ├── cyclades.h │ │ │ │ ├── cycx_cfm.h │ │ │ │ ├── dcbnl.h │ │ │ │ ├── dccp.h │ │ │ │ ├── devlink.h │ │ │ │ ├── dlm.h │ │ │ │ ├── dlm_device.h │ │ │ │ ├── dlm_netlink.h │ │ │ │ ├── dlm_plock.h │ │ │ │ ├── dlmconstants.h │ │ │ │ ├── dm-ioctl.h │ │ │ │ ├── dm-log-userspace.h │ │ │ │ ├── dma-buf.h │ │ │ │ ├── dma-heap.h │ │ │ │ ├── dn.h │ │ │ │ ├── dns_resolver.h │ │ │ │ ├── dqblk_xfs.h │ │ │ │ ├── dvb │ │ │ │ │ ├── audio.h │ │ │ │ │ ├── ca.h │ │ │ │ │ ├── dmx.h │ │ │ │ │ ├── frontend.h │ │ │ │ │ ├── net.h │ │ │ │ │ ├── osd.h │ │ │ │ │ ├── version.h │ │ │ │ │ └── video.h │ │ │ │ ├── edd.h │ │ │ │ ├── efs_fs_sb.h │ │ │ │ ├── elf-em.h │ │ │ │ ├── elf-fdpic.h │ │ │ │ ├── elf.h │ │ │ │ ├── elfcore.h │ │ │ │ ├── errno.h │ │ │ │ ├── errqueue.h │ │ │ │ ├── erspan.h │ │ │ │ ├── ethtool.h │ │ │ │ ├── ethtool_netlink.h │ │ │ │ ├── eventpoll.h │ │ │ │ ├── fadvise.h │ │ │ │ ├── falloc.h │ │ │ │ ├── fanotify.h │ │ │ │ ├── fb.h │ │ │ │ ├── fcntl.h │ │ │ │ ├── fd.h │ │ │ │ ├── fdreg.h │ │ │ │ ├── fib_rules.h │ │ │ │ ├── fiemap.h │ │ │ │ ├── filter.h │ │ │ │ ├── firewire-cdev.h │ │ │ │ ├── firewire-constants.h │ │ │ │ ├── fou.h │ │ │ │ ├── fpga-dfl.h │ │ │ │ ├── fs.h │ │ │ │ ├── fscrypt.h │ │ │ │ ├── fsi.h │ │ │ │ ├── fsl_hypervisor.h │ │ │ │ ├── fsmap.h │ │ │ │ ├── fsverity.h │ │ │ │ ├── fuse.h │ │ │ │ ├── futex.h │ │ │ │ ├── gameport.h │ │ │ │ ├── gen_stats.h │ │ │ │ ├── genetlink.h │ │ │ │ ├── genwqe │ │ │ │ │ └── genwqe_card.h │ │ │ │ ├── gfs2_ondisk.h │ │ │ │ ├── gpio.h │ │ │ │ ├── gsmmux.h │ │ │ │ ├── gtp.h │ │ │ │ ├── hash_info.h │ │ │ │ ├── hdlc.h │ │ │ │ ├── hdlc │ │ │ │ │ └── ioctl.h │ │ │ │ ├── hdlcdrv.h │ │ │ │ ├── hdreg.h │ │ │ │ ├── hid.h │ │ │ │ ├── hiddev.h │ │ │ │ ├── hidraw.h │ │ │ │ ├── hpet.h │ │ │ │ ├── hsi │ │ │ │ │ ├── cs-protocol.h │ │ │ │ │ └── hsi_char.h │ │ │ │ ├── hsr_netlink.h │ │ │ │ ├── hw_breakpoint.h │ │ │ │ ├── hyperv.h │ │ │ │ ├── i2c-dev.h │ │ │ │ ├── i2c.h │ │ │ │ ├── i2o-dev.h │ │ │ │ ├── i8k.h │ │ │ │ ├── icmp.h │ │ │ │ ├── icmpv6.h │ │ │ │ ├── idxd.h │ │ │ │ ├── if.h │ │ │ │ ├── if_addr.h │ │ │ │ ├── if_addrlabel.h │ │ │ │ ├── if_alg.h │ │ │ │ ├── if_arcnet.h │ │ │ │ ├── if_arp.h │ │ │ │ ├── if_bonding.h │ │ │ │ ├── if_bridge.h │ │ │ │ ├── if_cablemodem.h │ │ │ │ ├── if_eql.h │ │ │ │ ├── if_ether.h │ │ │ │ ├── if_fc.h │ │ │ │ ├── if_fddi.h │ │ │ │ ├── if_frad.h │ │ │ │ ├── if_hippi.h │ │ │ │ ├── if_infiniband.h │ │ │ │ ├── if_link.h │ │ │ │ ├── if_ltalk.h │ │ │ │ ├── if_macsec.h │ │ │ │ ├── if_packet.h │ │ │ │ ├── if_phonet.h │ │ │ │ ├── if_plip.h │ │ │ │ ├── if_ppp.h │ │ │ │ ├── if_pppol2tp.h │ │ │ │ ├── if_pppox.h │ │ │ │ ├── if_slip.h │ │ │ │ ├── if_team.h │ │ │ │ ├── if_tun.h │ │ │ │ ├── if_tunnel.h │ │ │ │ ├── if_vlan.h │ │ │ │ ├── if_x25.h │ │ │ │ ├── if_xdp.h │ │ │ │ ├── ife.h │ │ │ │ ├── igmp.h │ │ │ │ ├── iio │ │ │ │ │ ├── events.h │ │ │ │ │ └── types.h │ │ │ │ ├── ila.h │ │ │ │ ├── in.h │ │ │ │ ├── in6.h │ │ │ │ ├── in_route.h │ │ │ │ ├── inet_diag.h │ │ │ │ ├── inotify.h │ │ │ │ ├── input-event-codes.h │ │ │ │ ├── input.h │ │ │ │ ├── io_uring.h │ │ │ │ ├── ioctl.h │ │ │ │ ├── iommu.h │ │ │ │ ├── ip.h │ │ │ │ ├── ip6_tunnel.h │ │ │ │ ├── ip_vs.h │ │ │ │ ├── ipc.h │ │ │ │ ├── ipmi.h │ │ │ │ ├── ipmi_bmc.h │ │ │ │ ├── ipmi_msgdefs.h │ │ │ │ ├── ipsec.h │ │ │ │ ├── ipv6.h │ │ │ │ ├── ipv6_route.h │ │ │ │ ├── ipx.h │ │ │ │ ├── irqnr.h │ │ │ │ ├── isdn │ │ │ │ │ └── capicmd.h │ │ │ │ ├── iso_fs.h │ │ │ │ ├── isst_if.h │ │ │ │ ├── ivtv.h │ │ │ │ ├── ivtvfb.h │ │ │ │ ├── jffs2.h │ │ │ │ ├── joystick.h │ │ │ │ ├── kcm.h │ │ │ │ ├── kcmp.h │ │ │ │ ├── kcov.h │ │ │ │ ├── kd.h │ │ │ │ ├── kdev_t.h │ │ │ │ ├── kernel-page-flags.h │ │ │ │ ├── kernel.h │ │ │ │ ├── kernelcapi.h │ │ │ │ ├── kexec.h │ │ │ │ ├── keyboard.h │ │ │ │ ├── keyctl.h │ │ │ │ ├── kfd_ioctl.h │ │ │ │ ├── l2tp.h │ │ │ │ ├── libc-compat.h │ │ │ │ ├── lightnvm.h │ │ │ │ ├── limits.h │ │ │ │ ├── lirc.h │ │ │ │ ├── llc.h │ │ │ │ ├── loop.h │ │ │ │ ├── lp.h │ │ │ │ ├── lwtunnel.h │ │ │ │ ├── magic.h │ │ │ │ ├── major.h │ │ │ │ ├── map_to_7segment.h │ │ │ │ ├── matroxfb.h │ │ │ │ ├── max2175.h │ │ │ │ ├── mdio.h │ │ │ │ ├── media-bus-format.h │ │ │ │ ├── media.h │ │ │ │ ├── mei.h │ │ │ │ ├── membarrier.h │ │ │ │ ├── memfd.h │ │ │ │ ├── mempolicy.h │ │ │ │ ├── meye.h │ │ │ │ ├── mic_common.h │ │ │ │ ├── mic_ioctl.h │ │ │ │ ├── mii.h │ │ │ │ ├── minix_fs.h │ │ │ │ ├── mman.h │ │ │ │ ├── mmc │ │ │ │ │ └── ioctl.h │ │ │ │ ├── mmtimer.h │ │ │ │ ├── module.h │ │ │ │ ├── mount.h │ │ │ │ ├── mpls.h │ │ │ │ ├── mpls_iptunnel.h │ │ │ │ ├── mqueue.h │ │ │ │ ├── mroute.h │ │ │ │ ├── mroute6.h │ │ │ │ ├── msdos_fs.h │ │ │ │ ├── msg.h │ │ │ │ ├── mtio.h │ │ │ │ ├── n_r3964.h │ │ │ │ ├── nbd-netlink.h │ │ │ │ ├── nbd.h │ │ │ │ ├── ncsi.h │ │ │ │ ├── ndctl.h │ │ │ │ ├── neighbour.h │ │ │ │ ├── net.h │ │ │ │ ├── net_dropmon.h │ │ │ │ ├── net_namespace.h │ │ │ │ ├── net_tstamp.h │ │ │ │ ├── netconf.h │ │ │ │ ├── netdevice.h │ │ │ │ ├── netfilter.h │ │ │ │ ├── netfilter │ │ │ │ │ ├── ipset │ │ │ │ │ │ ├── ip_set.h │ │ │ │ │ │ ├── ip_set_bitmap.h │ │ │ │ │ │ ├── ip_set_hash.h │ │ │ │ │ │ └── ip_set_list.h │ │ │ │ │ ├── nf_conntrack_common.h │ │ │ │ │ ├── nf_conntrack_ftp.h │ │ │ │ │ ├── nf_conntrack_sctp.h │ │ │ │ │ ├── nf_conntrack_tcp.h │ │ │ │ │ ├── nf_conntrack_tuple_common.h │ │ │ │ │ ├── nf_log.h │ │ │ │ │ ├── nf_nat.h │ │ │ │ │ ├── nf_synproxy.h │ │ │ │ │ ├── nf_tables.h │ │ │ │ │ ├── nf_tables_compat.h │ │ │ │ │ ├── nfnetlink.h │ │ │ │ │ ├── nfnetlink_acct.h │ │ │ │ │ ├── nfnetlink_compat.h │ │ │ │ │ ├── nfnetlink_conntrack.h │ │ │ │ │ ├── nfnetlink_cthelper.h │ │ │ │ │ ├── nfnetlink_cttimeout.h │ │ │ │ │ ├── nfnetlink_log.h │ │ │ │ │ ├── nfnetlink_osf.h │ │ │ │ │ ├── nfnetlink_queue.h │ │ │ │ │ ├── x_tables.h │ │ │ │ │ ├── xt_AUDIT.h │ │ │ │ │ ├── xt_CHECKSUM.h │ │ │ │ │ ├── xt_CLASSIFY.h │ │ │ │ │ ├── xt_CONNMARK.h │ │ │ │ │ ├── xt_CONNSECMARK.h │ │ │ │ │ ├── xt_CT.h │ │ │ │ │ ├── xt_DSCP.h │ │ │ │ │ ├── xt_HMARK.h │ │ │ │ │ ├── xt_IDLETIMER.h │ │ │ │ │ ├── xt_LED.h │ │ │ │ │ ├── xt_LOG.h │ │ │ │ │ ├── xt_MARK.h │ │ │ │ │ ├── xt_NFLOG.h │ │ │ │ │ ├── xt_NFQUEUE.h │ │ │ │ │ ├── xt_RATEEST.h │ │ │ │ │ ├── xt_SECMARK.h │ │ │ │ │ ├── xt_SYNPROXY.h │ │ │ │ │ ├── xt_TCPMSS.h │ │ │ │ │ ├── xt_TCPOPTSTRIP.h │ │ │ │ │ ├── xt_TEE.h │ │ │ │ │ ├── xt_TPROXY.h │ │ │ │ │ ├── xt_addrtype.h │ │ │ │ │ ├── xt_bpf.h │ │ │ │ │ ├── xt_cgroup.h │ │ │ │ │ ├── xt_cluster.h │ │ │ │ │ ├── xt_comment.h │ │ │ │ │ ├── xt_connbytes.h │ │ │ │ │ ├── xt_connlabel.h │ │ │ │ │ ├── xt_connlimit.h │ │ │ │ │ ├── xt_connmark.h │ │ │ │ │ ├── xt_conntrack.h │ │ │ │ │ ├── xt_cpu.h │ │ │ │ │ ├── xt_dccp.h │ │ │ │ │ ├── xt_devgroup.h │ │ │ │ │ ├── xt_dscp.h │ │ │ │ │ ├── xt_ecn.h │ │ │ │ │ ├── xt_esp.h │ │ │ │ │ ├── xt_hashlimit.h │ │ │ │ │ ├── xt_helper.h │ │ │ │ │ ├── xt_ipcomp.h │ │ │ │ │ ├── xt_iprange.h │ │ │ │ │ ├── xt_ipvs.h │ │ │ │ │ ├── xt_l2tp.h │ │ │ │ │ ├── xt_length.h │ │ │ │ │ ├── xt_limit.h │ │ │ │ │ ├── xt_mac.h │ │ │ │ │ ├── xt_mark.h │ │ │ │ │ ├── xt_multiport.h │ │ │ │ │ ├── xt_nfacct.h │ │ │ │ │ ├── xt_osf.h │ │ │ │ │ ├── xt_owner.h │ │ │ │ │ ├── xt_physdev.h │ │ │ │ │ ├── xt_pkttype.h │ │ │ │ │ ├── xt_policy.h │ │ │ │ │ ├── xt_quota.h │ │ │ │ │ ├── xt_rateest.h │ │ │ │ │ ├── xt_realm.h │ │ │ │ │ ├── xt_recent.h │ │ │ │ │ ├── xt_rpfilter.h │ │ │ │ │ ├── xt_sctp.h │ │ │ │ │ ├── xt_set.h │ │ │ │ │ ├── xt_socket.h │ │ │ │ │ ├── xt_state.h │ │ │ │ │ ├── xt_statistic.h │ │ │ │ │ ├── xt_string.h │ │ │ │ │ ├── xt_tcpmss.h │ │ │ │ │ ├── xt_tcpudp.h │ │ │ │ │ ├── xt_time.h │ │ │ │ │ └── xt_u32.h │ │ │ │ ├── netfilter_arp.h │ │ │ │ ├── netfilter_arp │ │ │ │ │ ├── arp_tables.h │ │ │ │ │ └── arpt_mangle.h │ │ │ │ ├── netfilter_bridge.h │ │ │ │ ├── netfilter_bridge │ │ │ │ │ ├── ebt_802_3.h │ │ │ │ │ ├── ebt_among.h │ │ │ │ │ ├── ebt_arp.h │ │ │ │ │ ├── ebt_arpreply.h │ │ │ │ │ ├── ebt_ip.h │ │ │ │ │ ├── ebt_ip6.h │ │ │ │ │ ├── ebt_limit.h │ │ │ │ │ ├── ebt_log.h │ │ │ │ │ ├── ebt_mark_m.h │ │ │ │ │ ├── ebt_mark_t.h │ │ │ │ │ ├── ebt_nat.h │ │ │ │ │ ├── ebt_nflog.h │ │ │ │ │ ├── ebt_pkttype.h │ │ │ │ │ ├── ebt_redirect.h │ │ │ │ │ ├── ebt_stp.h │ │ │ │ │ ├── ebt_vlan.h │ │ │ │ │ └── ebtables.h │ │ │ │ ├── netfilter_decnet.h │ │ │ │ ├── netfilter_ipv4.h │ │ │ │ ├── netfilter_ipv4 │ │ │ │ │ ├── ip_tables.h │ │ │ │ │ ├── ipt_CLUSTERIP.h │ │ │ │ │ ├── ipt_ECN.h │ │ │ │ │ ├── ipt_LOG.h │ │ │ │ │ ├── ipt_REJECT.h │ │ │ │ │ ├── ipt_TTL.h │ │ │ │ │ ├── ipt_ah.h │ │ │ │ │ ├── ipt_ecn.h │ │ │ │ │ └── ipt_ttl.h │ │ │ │ ├── netfilter_ipv6.h │ │ │ │ ├── netfilter_ipv6 │ │ │ │ │ ├── ip6_tables.h │ │ │ │ │ ├── ip6t_HL.h │ │ │ │ │ ├── ip6t_LOG.h │ │ │ │ │ ├── ip6t_NPT.h │ │ │ │ │ ├── ip6t_REJECT.h │ │ │ │ │ ├── ip6t_ah.h │ │ │ │ │ ├── ip6t_frag.h │ │ │ │ │ ├── ip6t_hl.h │ │ │ │ │ ├── ip6t_ipv6header.h │ │ │ │ │ ├── ip6t_mh.h │ │ │ │ │ ├── ip6t_opts.h │ │ │ │ │ ├── ip6t_rt.h │ │ │ │ │ └── ip6t_srh.h │ │ │ │ ├── netlink.h │ │ │ │ ├── netlink_diag.h │ │ │ │ ├── netrom.h │ │ │ │ ├── nexthop.h │ │ │ │ ├── nfc.h │ │ │ │ ├── nfs.h │ │ │ │ ├── nfs2.h │ │ │ │ ├── nfs3.h │ │ │ │ ├── nfs4.h │ │ │ │ ├── nfs4_mount.h │ │ │ │ ├── nfs_fs.h │ │ │ │ ├── nfs_idmap.h │ │ │ │ ├── nfs_mount.h │ │ │ │ ├── nfsacl.h │ │ │ │ ├── nfsd │ │ │ │ │ ├── cld.h │ │ │ │ │ ├── debug.h │ │ │ │ │ ├── export.h │ │ │ │ │ ├── nfsfh.h │ │ │ │ │ └── stats.h │ │ │ │ ├── nilfs2_api.h │ │ │ │ ├── nilfs2_ondisk.h │ │ │ │ ├── nl80211.h │ │ │ │ ├── nsfs.h │ │ │ │ ├── nubus.h │ │ │ │ ├── nvme_ioctl.h │ │ │ │ ├── nvram.h │ │ │ │ ├── omap3isp.h │ │ │ │ ├── omapfb.h │ │ │ │ ├── oom.h │ │ │ │ ├── openat2.h │ │ │ │ ├── openvswitch.h │ │ │ │ ├── packet_diag.h │ │ │ │ ├── param.h │ │ │ │ ├── parport.h │ │ │ │ ├── patchkey.h │ │ │ │ ├── pci.h │ │ │ │ ├── pci_regs.h │ │ │ │ ├── pcitest.h │ │ │ │ ├── perf_event.h │ │ │ │ ├── personality.h │ │ │ │ ├── pfkeyv2.h │ │ │ │ ├── pg.h │ │ │ │ ├── phantom.h │ │ │ │ ├── phonet.h │ │ │ │ ├── pkt_cls.h │ │ │ │ ├── pkt_sched.h │ │ │ │ ├── pktcdvd.h │ │ │ │ ├── pmu.h │ │ │ │ ├── poll.h │ │ │ │ ├── posix_acl.h │ │ │ │ ├── posix_acl_xattr.h │ │ │ │ ├── posix_types.h │ │ │ │ ├── ppdev.h │ │ │ │ ├── ppp-comp.h │ │ │ │ ├── ppp-ioctl.h │ │ │ │ ├── ppp_defs.h │ │ │ │ ├── pps.h │ │ │ │ ├── pr.h │ │ │ │ ├── prctl.h │ │ │ │ ├── psample.h │ │ │ │ ├── psci.h │ │ │ │ ├── psp-sev.h │ │ │ │ ├── ptp_clock.h │ │ │ │ ├── ptrace.h │ │ │ │ ├── qemu_fw_cfg.h │ │ │ │ ├── qnx4_fs.h │ │ │ │ ├── qnxtypes.h │ │ │ │ ├── qrtr.h │ │ │ │ ├── quota.h │ │ │ │ ├── radeonfb.h │ │ │ │ ├── raid │ │ │ │ │ ├── md_p.h │ │ │ │ │ └── md_u.h │ │ │ │ ├── random.h │ │ │ │ ├── raw.h │ │ │ │ ├── rds.h │ │ │ │ ├── reboot.h │ │ │ │ ├── reiserfs_fs.h │ │ │ │ ├── reiserfs_xattr.h │ │ │ │ ├── resource.h │ │ │ │ ├── rfkill.h │ │ │ │ ├── rio_cm_cdev.h │ │ │ │ ├── rio_mport_cdev.h │ │ │ │ ├── romfs_fs.h │ │ │ │ ├── rose.h │ │ │ │ ├── route.h │ │ │ │ ├── rpmsg.h │ │ │ │ ├── rseq.h │ │ │ │ ├── rtc.h │ │ │ │ ├── rtnetlink.h │ │ │ │ ├── rxrpc.h │ │ │ │ ├── scc.h │ │ │ │ ├── sched.h │ │ │ │ ├── sched │ │ │ │ │ └── types.h │ │ │ │ ├── scif_ioctl.h │ │ │ │ ├── screen_info.h │ │ │ │ ├── sctp.h │ │ │ │ ├── sdla.h │ │ │ │ ├── seccomp.h │ │ │ │ ├── securebits.h │ │ │ │ ├── sed-opal.h │ │ │ │ ├── seg6.h │ │ │ │ ├── seg6_genl.h │ │ │ │ ├── seg6_hmac.h │ │ │ │ ├── seg6_iptunnel.h │ │ │ │ ├── seg6_local.h │ │ │ │ ├── selinux_netlink.h │ │ │ │ ├── sem.h │ │ │ │ ├── serial.h │ │ │ │ ├── serial_core.h │ │ │ │ ├── serial_reg.h │ │ │ │ ├── serio.h │ │ │ │ ├── shm.h │ │ │ │ ├── signal.h │ │ │ │ ├── signalfd.h │ │ │ │ ├── smc.h │ │ │ │ ├── smc_diag.h │ │ │ │ ├── smiapp.h │ │ │ │ ├── snmp.h │ │ │ │ ├── sock_diag.h │ │ │ │ ├── socket.h │ │ │ │ ├── sockios.h │ │ │ │ ├── sonet.h │ │ │ │ ├── sonypi.h │ │ │ │ ├── sound.h │ │ │ │ ├── soundcard.h │ │ │ │ ├── spi │ │ │ │ │ └── spidev.h │ │ │ │ ├── stat.h │ │ │ │ ├── stddef.h │ │ │ │ ├── stm.h │ │ │ │ ├── string.h │ │ │ │ ├── sunrpc │ │ │ │ │ └── debug.h │ │ │ │ ├── suspend_ioctls.h │ │ │ │ ├── swab.h │ │ │ │ ├── switchtec_ioctl.h │ │ │ │ ├── sync_file.h │ │ │ │ ├── synclink.h │ │ │ │ ├── sysctl.h │ │ │ │ ├── sysinfo.h │ │ │ │ ├── target_core_user.h │ │ │ │ ├── taskstats.h │ │ │ │ ├── tc_act │ │ │ │ │ ├── tc_bpf.h │ │ │ │ │ ├── tc_connmark.h │ │ │ │ │ ├── tc_csum.h │ │ │ │ │ ├── tc_ct.h │ │ │ │ │ ├── tc_ctinfo.h │ │ │ │ │ ├── tc_defact.h │ │ │ │ │ ├── tc_gact.h │ │ │ │ │ ├── tc_ife.h │ │ │ │ │ ├── tc_ipt.h │ │ │ │ │ ├── tc_mirred.h │ │ │ │ │ ├── tc_mpls.h │ │ │ │ │ ├── tc_nat.h │ │ │ │ │ ├── tc_pedit.h │ │ │ │ │ ├── tc_sample.h │ │ │ │ │ ├── tc_skbedit.h │ │ │ │ │ ├── tc_skbmod.h │ │ │ │ │ ├── tc_tunnel_key.h │ │ │ │ │ └── tc_vlan.h │ │ │ │ ├── tc_ematch │ │ │ │ │ ├── tc_em_cmp.h │ │ │ │ │ ├── tc_em_ipt.h │ │ │ │ │ ├── tc_em_meta.h │ │ │ │ │ ├── tc_em_nbyte.h │ │ │ │ │ └── tc_em_text.h │ │ │ │ ├── tcp.h │ │ │ │ ├── tcp_metrics.h │ │ │ │ ├── tee.h │ │ │ │ ├── termios.h │ │ │ │ ├── thermal.h │ │ │ │ ├── time.h │ │ │ │ ├── time_types.h │ │ │ │ ├── timerfd.h │ │ │ │ ├── times.h │ │ │ │ ├── timex.h │ │ │ │ ├── tiocl.h │ │ │ │ ├── tipc.h │ │ │ │ ├── tipc_config.h │ │ │ │ ├── tipc_netlink.h │ │ │ │ ├── tipc_sockets_diag.h │ │ │ │ ├── tls.h │ │ │ │ ├── toshiba.h │ │ │ │ ├── tty.h │ │ │ │ ├── tty_flags.h │ │ │ │ ├── types.h │ │ │ │ ├── udf_fs_i.h │ │ │ │ ├── udmabuf.h │ │ │ │ ├── udp.h │ │ │ │ ├── uhid.h │ │ │ │ ├── uinput.h │ │ │ │ ├── uio.h │ │ │ │ ├── uleds.h │ │ │ │ ├── ultrasound.h │ │ │ │ ├── un.h │ │ │ │ ├── unistd.h │ │ │ │ ├── unix_diag.h │ │ │ │ ├── usb │ │ │ │ │ ├── audio.h │ │ │ │ │ ├── cdc-wdm.h │ │ │ │ │ ├── cdc.h │ │ │ │ │ ├── ch11.h │ │ │ │ │ ├── ch9.h │ │ │ │ │ ├── charger.h │ │ │ │ │ ├── functionfs.h │ │ │ │ │ ├── g_printer.h │ │ │ │ │ ├── g_uvc.h │ │ │ │ │ ├── gadgetfs.h │ │ │ │ │ ├── midi.h │ │ │ │ │ ├── tmc.h │ │ │ │ │ └── video.h │ │ │ │ ├── usbdevice_fs.h │ │ │ │ ├── usbip.h │ │ │ │ ├── userfaultfd.h │ │ │ │ ├── userio.h │ │ │ │ ├── utime.h │ │ │ │ ├── utsname.h │ │ │ │ ├── uuid.h │ │ │ │ ├── uvcvideo.h │ │ │ │ ├── v4l2-common.h │ │ │ │ ├── v4l2-controls.h │ │ │ │ ├── v4l2-dv-timings.h │ │ │ │ ├── v4l2-mediabus.h │ │ │ │ ├── v4l2-subdev.h │ │ │ │ ├── vbox_err.h │ │ │ │ ├── vbox_vmmdev_types.h │ │ │ │ ├── vboxguest.h │ │ │ │ ├── version.h │ │ │ │ ├── veth.h │ │ │ │ ├── vfio.h │ │ │ │ ├── vfio_ccw.h │ │ │ │ ├── vhost.h │ │ │ │ ├── vhost_types.h │ │ │ │ ├── videodev2.h │ │ │ │ ├── virtio_9p.h │ │ │ │ ├── virtio_balloon.h │ │ │ │ ├── virtio_blk.h │ │ │ │ ├── virtio_config.h │ │ │ │ ├── virtio_console.h │ │ │ │ ├── virtio_crypto.h │ │ │ │ ├── virtio_fs.h │ │ │ │ ├── virtio_gpu.h │ │ │ │ ├── virtio_ids.h │ │ │ │ ├── virtio_input.h │ │ │ │ ├── virtio_iommu.h │ │ │ │ ├── virtio_mmio.h │ │ │ │ ├── virtio_net.h │ │ │ │ ├── virtio_pci.h │ │ │ │ ├── virtio_pmem.h │ │ │ │ ├── virtio_ring.h │ │ │ │ ├── virtio_rng.h │ │ │ │ ├── virtio_scsi.h │ │ │ │ ├── virtio_types.h │ │ │ │ ├── virtio_vsock.h │ │ │ │ ├── vm_sockets.h │ │ │ │ ├── vm_sockets_diag.h │ │ │ │ ├── vmcore.h │ │ │ │ ├── vsockmon.h │ │ │ │ ├── vt.h │ │ │ │ ├── vtpm_proxy.h │ │ │ │ ├── wait.h │ │ │ │ ├── watchdog.h │ │ │ │ ├── wimax.h │ │ │ │ ├── wimax │ │ │ │ │ └── i2400m.h │ │ │ │ ├── wireguard.h │ │ │ │ ├── wireless.h │ │ │ │ ├── wmi.h │ │ │ │ ├── x25.h │ │ │ │ ├── xattr.h │ │ │ │ ├── xdp_diag.h │ │ │ │ ├── xfrm.h │ │ │ │ ├── xilinx-v4l2-controls.h │ │ │ │ ├── zorro.h │ │ │ │ └── zorro_ids.h │ │ │ ├── locale.h │ │ │ ├── malloc.h │ │ │ ├── math.h │ │ │ ├── memory.h │ │ │ ├── misc │ │ │ │ ├── cxl.h │ │ │ │ ├── fastrpc.h │ │ │ │ ├── habanalabs.h │ │ │ │ ├── ocxl.h │ │ │ │ ├── pvpanic.h │ │ │ │ └── xilinx_sdfec.h │ │ │ ├── mntent.h │ │ │ ├── mqueue.h │ │ │ ├── mtd │ │ │ │ ├── inftl-user.h │ │ │ │ ├── mtd-abi.h │ │ │ │ ├── mtd-user.h │ │ │ │ ├── nftl-user.h │ │ │ │ └── ubi-user.h │ │ │ ├── net │ │ │ │ ├── ethernet.h │ │ │ │ ├── if.h │ │ │ │ ├── if_arp.h │ │ │ │ ├── if_packet.h │ │ │ │ ├── if_ppp.h │ │ │ │ ├── if_shaper.h │ │ │ │ ├── if_slip.h │ │ │ │ ├── ppp-comp.h │ │ │ │ ├── ppp_defs.h │ │ │ │ └── route.h │ │ │ ├── netax25 │ │ │ │ └── ax25.h │ │ │ ├── netdb.h │ │ │ ├── neteconet │ │ │ │ └── ec.h │ │ │ ├── netinet │ │ │ │ ├── ether.h │ │ │ │ ├── icmp6.h │ │ │ │ ├── if_ether.h │ │ │ │ ├── if_fddi.h │ │ │ │ ├── if_tr.h │ │ │ │ ├── igmp.h │ │ │ │ ├── in.h │ │ │ │ ├── in_systm.h │ │ │ │ ├── ip.h │ │ │ │ ├── ip6.h │ │ │ │ ├── ip_icmp.h │ │ │ │ ├── tcp.h │ │ │ │ └── udp.h │ │ │ ├── netipx │ │ │ │ └── ipx.h │ │ │ ├── netpacket │ │ │ │ └── packet.h │ │ │ ├── nl_types.h │ │ │ ├── paths.h │ │ │ ├── poll.h │ │ │ ├── printf.h │ │ │ ├── protocols │ │ │ │ ├── routed.h │ │ │ │ ├── rwhod.h │ │ │ │ ├── talkd.h │ │ │ │ └── timed.h │ │ │ ├── pty.h │ │ │ ├── pwd.h │ │ │ ├── rdma │ │ │ │ ├── bnxt_re-abi.h │ │ │ │ ├── cxgb4-abi.h │ │ │ │ ├── efa-abi.h │ │ │ │ ├── hfi │ │ │ │ │ ├── hfi1_ioctl.h │ │ │ │ │ └── hfi1_user.h │ │ │ │ ├── hns-abi.h │ │ │ │ ├── i40iw-abi.h │ │ │ │ ├── ib_user_ioctl_cmds.h │ │ │ │ ├── ib_user_ioctl_verbs.h │ │ │ │ ├── ib_user_mad.h │ │ │ │ ├── ib_user_sa.h │ │ │ │ ├── ib_user_verbs.h │ │ │ │ ├── mlx4-abi.h │ │ │ │ ├── mlx5-abi.h │ │ │ │ ├── mlx5_user_ioctl_cmds.h │ │ │ │ ├── mlx5_user_ioctl_verbs.h │ │ │ │ ├── mthca-abi.h │ │ │ │ ├── ocrdma-abi.h │ │ │ │ ├── qedr-abi.h │ │ │ │ ├── rdma_netlink.h │ │ │ │ ├── rdma_user_cm.h │ │ │ │ ├── rdma_user_ioctl.h │ │ │ │ ├── rdma_user_ioctl_cmds.h │ │ │ │ ├── rdma_user_rxe.h │ │ │ │ ├── rvt-abi.h │ │ │ │ ├── siw-abi.h │ │ │ │ └── vmw_pvrdma-abi.h │ │ │ ├── regex.h │ │ │ ├── regexp.h │ │ │ ├── resolv.h │ │ │ ├── sched.h │ │ │ ├── scsi │ │ │ │ ├── cxlflash_ioctl.h │ │ │ │ ├── fc │ │ │ │ │ ├── fc_els.h │ │ │ │ │ ├── fc_fs.h │ │ │ │ │ ├── fc_gs.h │ │ │ │ │ └── fc_ns.h │ │ │ │ ├── scsi.h │ │ │ │ ├── scsi_bsg_fc.h │ │ │ │ ├── scsi_bsg_ufs.h │ │ │ │ ├── scsi_ioctl.h │ │ │ │ ├── scsi_netlink.h │ │ │ │ ├── scsi_netlink_fc.h │ │ │ │ └── sg.h │ │ │ ├── search.h │ │ │ ├── setjmp.h │ │ │ ├── sgtty.h │ │ │ ├── shadow.h │ │ │ ├── signal.h │ │ │ ├── sound │ │ │ │ ├── asequencer.h │ │ │ │ ├── asoc.h │ │ │ │ ├── asound.h │ │ │ │ ├── asound_fm.h │ │ │ │ ├── compress_offload.h │ │ │ │ ├── compress_params.h │ │ │ │ ├── emu10k1.h │ │ │ │ ├── firewire.h │ │ │ │ ├── hdsp.h │ │ │ │ ├── hdspm.h │ │ │ │ ├── sb16_csp.h │ │ │ │ ├── sfnt_info.h │ │ │ │ ├── skl-tplg-interface.h │ │ │ │ ├── snd_sst_tokens.h │ │ │ │ ├── sof │ │ │ │ │ ├── abi.h │ │ │ │ │ ├── fw.h │ │ │ │ │ ├── header.h │ │ │ │ │ └── tokens.h │ │ │ │ ├── tlv.h │ │ │ │ └── usb_stream.h │ │ │ ├── spawn.h │ │ │ ├── stdint.h │ │ │ ├── stdio.h │ │ │ ├── stdio_ext.h │ │ │ ├── stdlib.h │ │ │ ├── string.h │ │ │ ├── strings.h │ │ │ ├── sys │ │ │ │ ├── acct.h │ │ │ │ ├── asm.h │ │ │ │ ├── bitypes.h │ │ │ │ ├── cdefs.h │ │ │ │ ├── dir.h │ │ │ │ ├── epoll.h │ │ │ │ ├── errno.h │ │ │ │ ├── eventfd.h │ │ │ │ ├── fanotify.h │ │ │ │ ├── fcntl.h │ │ │ │ ├── file.h │ │ │ │ ├── fsuid.h │ │ │ │ ├── inotify.h │ │ │ │ ├── ioctl.h │ │ │ │ ├── ipc.h │ │ │ │ ├── kd.h │ │ │ │ ├── kdaemon.h │ │ │ │ ├── klog.h │ │ │ │ ├── mman.h │ │ │ │ ├── mount.h │ │ │ │ ├── msg.h │ │ │ │ ├── mtio.h │ │ │ │ ├── param.h │ │ │ │ ├── personality.h │ │ │ │ ├── poll.h │ │ │ │ ├── prctl.h │ │ │ │ ├── procfs.h │ │ │ │ ├── ptrace.h │ │ │ │ ├── queue.h │ │ │ │ ├── quota.h │ │ │ │ ├── random.h │ │ │ │ ├── reboot.h │ │ │ │ ├── resource.h │ │ │ │ ├── select.h │ │ │ │ ├── sem.h │ │ │ │ ├── sendfile.h │ │ │ │ ├── shm.h │ │ │ │ ├── signal.h │ │ │ │ ├── signalfd.h │ │ │ │ ├── socket.h │ │ │ │ ├── socketvar.h │ │ │ │ ├── soundcard.h │ │ │ │ ├── stat.h │ │ │ │ ├── statfs.h │ │ │ │ ├── statvfs.h │ │ │ │ ├── swap.h │ │ │ │ ├── syscall.h │ │ │ │ ├── sysctl.h │ │ │ │ ├── sysinfo.h │ │ │ │ ├── syslog.h │ │ │ │ ├── sysmacros.h │ │ │ │ ├── termios.h │ │ │ │ ├── time.h │ │ │ │ ├── timeb.h │ │ │ │ ├── timerfd.h │ │ │ │ ├── times.h │ │ │ │ ├── timex.h │ │ │ │ ├── ttydefaults.h │ │ │ │ ├── types.h │ │ │ │ ├── ucontext.h │ │ │ │ ├── uio.h │ │ │ │ ├── un.h │ │ │ │ ├── unistd.h │ │ │ │ ├── user.h │ │ │ │ ├── utsname.h │ │ │ │ ├── vfs.h │ │ │ │ ├── vt.h │ │ │ │ ├── wait.h │ │ │ │ └── xattr.h │ │ │ ├── syscall.h │ │ │ ├── sysexits.h │ │ │ ├── syslog.h │ │ │ ├── tar.h │ │ │ ├── termio.h │ │ │ ├── termios.h │ │ │ ├── tgmath.h │ │ │ ├── time.h │ │ │ ├── ttyent.h │ │ │ ├── uchar.h │ │ │ ├── ucontext.h │ │ │ ├── ulimit.h │ │ │ ├── unistd.h │ │ │ ├── utime.h │ │ │ ├── utmp.h │ │ │ ├── utmpx.h │ │ │ ├── values.h │ │ │ ├── video │ │ │ │ ├── edid.h │ │ │ │ ├── sisfb.h │ │ │ │ └── uvesafb.h │ │ │ ├── wait.h │ │ │ ├── wchar.h │ │ │ ├── wordexp.h │ │ │ └── xen │ │ │ │ ├── evtchn.h │ │ │ │ ├── gntalloc.h │ │ │ │ ├── gntdev.h │ │ │ │ └── privcmd.h │ │ │ ├── lib │ │ │ ├── libc.a │ │ │ ├── libcheck.a │ │ │ ├── libcheck.la │ │ │ ├── libcrypt.a │ │ │ ├── libdl.a │ │ │ ├── libintl.a │ │ │ ├── libm.a │ │ │ ├── libnsl.a │ │ │ ├── libresolv.a │ │ │ ├── librt.a │ │ │ └── pkgconfig │ │ │ │ └── check.pc │ │ │ ├── lib64 │ │ │ └── share │ │ │ ├── aclocal │ │ │ └── check.m4 │ │ │ ├── doc │ │ │ └── check │ │ │ │ ├── COPYING.LESSER │ │ │ │ ├── ChangeLog │ │ │ │ ├── NEWS │ │ │ │ └── README │ │ │ └── man │ │ │ └── man1 │ │ │ └── checkmk.1 │ │ ├── share │ │ ├── aclocal │ │ │ └── pkg.m4 │ │ ├── buildroot │ │ │ ├── Platform │ │ │ │ └── Buildroot.cmake │ │ │ └── toolchainfile.cmake │ │ ├── doc │ │ │ ├── mpfr │ │ │ │ ├── AUTHORS │ │ │ │ ├── BUGS │ │ │ │ ├── COPYING │ │ │ │ ├── COPYING.LESSER │ │ │ │ ├── FAQ.html │ │ │ │ ├── NEWS │ │ │ │ ├── TODO │ │ │ │ └── examples │ │ │ │ │ ├── ReadMe │ │ │ │ │ ├── can_round.c │ │ │ │ │ ├── divworst.c │ │ │ │ │ ├── rndo-add.c │ │ │ │ │ ├── sample.c │ │ │ │ │ └── version.c │ │ │ ├── patchelf │ │ │ │ └── README │ │ │ └── pkgconf │ │ │ │ ├── AUTHORS │ │ │ │ └── README.md │ │ ├── info │ │ │ ├── as.info │ │ │ ├── bfd.info │ │ │ ├── binutils.info │ │ │ ├── cpp.info │ │ │ ├── cppinternals.info │ │ │ ├── dir │ │ │ ├── gcc.info │ │ │ ├── gccinstall.info │ │ │ ├── gccint.info │ │ │ ├── gmp.info │ │ │ ├── gmp.info-1 │ │ │ ├── gmp.info-2 │ │ │ ├── gprof.info │ │ │ ├── m4.info │ │ │ ├── m4.info-1 │ │ │ ├── m4.info-2 │ │ │ ├── mpc.info │ │ │ ├── mpfr.info │ │ │ ├── tar.info │ │ │ ├── tar.info-1 │ │ │ └── tar.info-2 │ │ ├── locale │ │ │ ├── be │ │ │ │ └── LC_MESSAGES │ │ │ │ │ ├── cpplib.mo │ │ │ │ │ └── gcc.mo │ │ │ ├── ca │ │ │ │ └── LC_MESSAGES │ │ │ │ │ └── cpplib.mo │ │ │ ├── da │ │ │ │ └── LC_MESSAGES │ │ │ │ │ ├── cpplib.mo │ │ │ │ │ └── gcc.mo │ │ │ ├── de │ │ │ │ └── LC_MESSAGES │ │ │ │ │ ├── cpplib.mo │ │ │ │ │ └── gcc.mo │ │ │ ├── el │ │ │ │ └── LC_MESSAGES │ │ │ │ │ ├── cpplib.mo │ │ │ │ │ └── gcc.mo │ │ │ ├── eo │ │ │ │ └── LC_MESSAGES │ │ │ │ │ └── cpplib.mo │ │ │ ├── es │ │ │ │ └── LC_MESSAGES │ │ │ │ │ ├── cpplib.mo │ │ │ │ │ └── gcc.mo │ │ │ ├── fi │ │ │ │ └── LC_MESSAGES │ │ │ │ │ ├── cpplib.mo │ │ │ │ │ └── gcc.mo │ │ │ ├── fr │ │ │ │ └── LC_MESSAGES │ │ │ │ │ ├── cpplib.mo │ │ │ │ │ └── gcc.mo │ │ │ ├── hr │ │ │ │ └── LC_MESSAGES │ │ │ │ │ └── gcc.mo │ │ │ ├── id │ │ │ │ └── LC_MESSAGES │ │ │ │ │ ├── cpplib.mo │ │ │ │ │ └── gcc.mo │ │ │ ├── ja │ │ │ │ └── LC_MESSAGES │ │ │ │ │ ├── cpplib.mo │ │ │ │ │ └── gcc.mo │ │ │ ├── nl │ │ │ │ └── LC_MESSAGES │ │ │ │ │ ├── cpplib.mo │ │ │ │ │ └── gcc.mo │ │ │ ├── pt_BR │ │ │ │ └── LC_MESSAGES │ │ │ │ │ └── cpplib.mo │ │ │ ├── ru │ │ │ │ └── LC_MESSAGES │ │ │ │ │ ├── cpplib.mo │ │ │ │ │ └── gcc.mo │ │ │ ├── sr │ │ │ │ └── LC_MESSAGES │ │ │ │ │ ├── cpplib.mo │ │ │ │ │ └── gcc.mo │ │ │ ├── sv │ │ │ │ └── LC_MESSAGES │ │ │ │ │ ├── cpplib.mo │ │ │ │ │ └── gcc.mo │ │ │ ├── tr │ │ │ │ └── LC_MESSAGES │ │ │ │ │ ├── cpplib.mo │ │ │ │ │ └── gcc.mo │ │ │ ├── uk │ │ │ │ └── LC_MESSAGES │ │ │ │ │ ├── cpplib.mo │ │ │ │ │ └── gcc.mo │ │ │ ├── vi │ │ │ │ └── LC_MESSAGES │ │ │ │ │ ├── cpplib.mo │ │ │ │ │ └── gcc.mo │ │ │ ├── zh_CN │ │ │ │ └── LC_MESSAGES │ │ │ │ │ ├── cpplib.mo │ │ │ │ │ └── gcc.mo │ │ │ └── zh_TW │ │ │ │ └── LC_MESSAGES │ │ │ │ ├── cpplib.mo │ │ │ │ └── gcc.mo │ │ └── man │ │ │ ├── man1 │ │ │ ├── m4.1 │ │ │ ├── patchelf.1 │ │ │ ├── pkgconf.1 │ │ │ ├── riscv64-buildroot-linux-uclibc-addr2line.1 │ │ │ ├── riscv64-buildroot-linux-uclibc-ar.1 │ │ │ ├── riscv64-buildroot-linux-uclibc-as.1 │ │ │ ├── riscv64-buildroot-linux-uclibc-c++filt.1 │ │ │ ├── riscv64-buildroot-linux-uclibc-cpp.1 │ │ │ ├── riscv64-buildroot-linux-uclibc-dlltool.1 │ │ │ ├── riscv64-buildroot-linux-uclibc-elfedit.1 │ │ │ ├── riscv64-buildroot-linux-uclibc-gcc.1 │ │ │ ├── riscv64-buildroot-linux-uclibc-gcov-dump.1 │ │ │ ├── riscv64-buildroot-linux-uclibc-gcov-tool.1 │ │ │ ├── riscv64-buildroot-linux-uclibc-gcov.1 │ │ │ ├── riscv64-buildroot-linux-uclibc-gprof.1 │ │ │ ├── riscv64-buildroot-linux-uclibc-ld.1 │ │ │ ├── riscv64-buildroot-linux-uclibc-nm.1 │ │ │ ├── riscv64-buildroot-linux-uclibc-objcopy.1 │ │ │ ├── riscv64-buildroot-linux-uclibc-objdump.1 │ │ │ ├── riscv64-buildroot-linux-uclibc-ranlib.1 │ │ │ ├── riscv64-buildroot-linux-uclibc-readelf.1 │ │ │ ├── riscv64-buildroot-linux-uclibc-size.1 │ │ │ ├── riscv64-buildroot-linux-uclibc-strings.1 │ │ │ ├── riscv64-buildroot-linux-uclibc-strip.1 │ │ │ ├── riscv64-buildroot-linux-uclibc-windmc.1 │ │ │ ├── riscv64-buildroot-linux-uclibc-windres.1 │ │ │ └── tar.1 │ │ │ ├── man3 │ │ │ └── zlib.3 │ │ │ ├── man5 │ │ │ ├── pc.5 │ │ │ └── pkgconf-personality.5 │ │ │ ├── man7 │ │ │ ├── fsf-funding.7 │ │ │ ├── gfdl.7 │ │ │ ├── gpl.7 │ │ │ └── pkg.m4.7 │ │ │ └── man8 │ │ │ └── rmt.8 │ │ └── usr ├── support │ ├── config-fragments │ │ ├── autobuild │ │ │ ├── andes-nds32.config │ │ │ ├── arm-aarch64.config │ │ │ ├── br-aarch64-glibc.config │ │ │ ├── br-arc-full-internal.config │ │ │ ├── br-arc-internal-glibc.config │ │ │ ├── br-arcle-hs38.config │ │ │ ├── br-arm-basic.config │ │ │ ├── br-arm-cortex-a9-glibc.config │ │ │ ├── br-arm-cortex-a9-musl.config │ │ │ ├── br-arm-cortex-m4-full.config │ │ │ ├── br-arm-full-nothread.config │ │ │ ├── br-arm-full-static.config │ │ │ ├── br-arm-full.config │ │ │ ├── br-arm-internal-full.config │ │ │ ├── br-arm-internal-glibc.config │ │ │ ├── br-arm-internal-musl.config │ │ │ ├── br-i386-pentium-mmx-musl.config │ │ │ ├── br-i386-pentium4-full.config │ │ │ ├── br-m68k-5208-full.config │ │ │ ├── br-m68k-68040-full.config │ │ │ ├── br-microblazeel-full-internal.config │ │ │ ├── br-microblazeel-full.config │ │ │ ├── br-mips32r6-el-hf-glibc.config │ │ │ ├── br-mips64-n64-full.config │ │ │ ├── br-mips64r6-el-hf-glibc.config │ │ │ ├── br-mipsel-o32-full.config │ │ │ ├── br-nios2-glibc.config │ │ │ ├── br-openrisc-uclibc.config │ │ │ ├── br-powerpc-603e-basic-cpp.config │ │ │ ├── br-powerpc-e500mc-full.config │ │ │ ├── br-powerpc-internal-full.config │ │ │ ├── br-powerpc64-power7-glibc.config │ │ │ ├── br-powerpc64le-power8-glibc.config │ │ │ ├── br-riscv32.config │ │ │ ├── br-riscv64-internal-musl.config │ │ │ ├── br-riscv64.config │ │ │ ├── br-sh4-full.config │ │ │ ├── br-sparc-uclibc.config │ │ │ ├── br-sparc64-glibc.config │ │ │ ├── br-x86-64-core2-full.config │ │ │ ├── br-x86-64-musl.config │ │ │ ├── br-xtensa-full-internal.config │ │ │ ├── br-xtensa-full.config │ │ │ ├── linaro-aarch64-be.config │ │ │ ├── linaro-aarch64.config │ │ │ ├── linaro-arm.config │ │ │ ├── sourcery-arm-armv4t.config │ │ │ ├── sourcery-arm-thumb2.config │ │ │ ├── sourcery-arm.config │ │ │ ├── sourcery-mips.config │ │ │ ├── sourcery-mips64.config │ │ │ ├── sourcery-nios2.config │ │ │ ├── sourcery-x86-64.config │ │ │ └── toolchain-configs.csv │ │ └── minimal.config │ ├── dependencies │ │ ├── check-host-asciidoc.sh │ │ ├── check-host-bison-flex.mk │ │ ├── check-host-cmake.mk │ │ ├── check-host-cmake.sh │ │ ├── check-host-coreutils.mk │ │ ├── check-host-coreutils.sh │ │ ├── check-host-gzip.mk │ │ ├── check-host-gzip.sh │ │ ├── check-host-lzip.mk │ │ ├── check-host-lzip.sh │ │ ├── check-host-make.mk │ │ ├── check-host-make.sh │ │ ├── check-host-python3.mk │ │ ├── check-host-python3.sh │ │ ├── check-host-tar.mk │ │ ├── check-host-tar.sh │ │ ├── check-host-xzcat.mk │ │ ├── check-host-xzcat.sh │ │ ├── dependencies.mk │ │ └── dependencies.sh │ ├── docker │ │ ├── Dockerfile │ │ └── apt-sources.list │ ├── download │ │ ├── bzr │ │ ├── check-hash │ │ ├── cvs │ │ ├── dl-wrapper │ │ ├── file │ │ ├── git │ │ ├── hg │ │ ├── scp │ │ ├── svn │ │ └── wget │ ├── gnuconfig │ │ ├── README.buildroot │ │ ├── config.guess │ │ └── config.sub │ ├── kconfig │ │ ├── .gitignore │ │ ├── Makefile │ │ ├── Makefile.br │ │ ├── POTFILES.in │ │ ├── README.buildroot │ │ ├── check.sh │ │ ├── conf.c │ │ ├── confdata.c │ │ ├── expr.c │ │ ├── expr.h │ │ ├── foo.h │ │ ├── gconf.c │ │ ├── gconf.glade │ │ ├── images.c │ │ ├── kconf_id.c │ │ ├── kxgettext.c │ │ ├── list.h │ │ ├── lkc.h │ │ ├── lkc_proto.h │ │ ├── lxdialog │ │ │ ├── .gitignore │ │ │ ├── BIG.FAT.WARNING │ │ │ ├── check-lxdialog.sh │ │ │ ├── checklist.c │ │ │ ├── dialog.h │ │ │ ├── inputbox.c │ │ │ ├── menubox.c │ │ │ ├── textbox.c │ │ │ ├── util.c │ │ │ └── yesno.c │ │ ├── mconf.c │ │ ├── menu.c │ │ ├── merge_config.sh │ │ ├── nconf.c │ │ ├── nconf.gui.c │ │ ├── nconf.h │ │ ├── patches │ │ │ ├── 01-kconfig-kernel-to-buildroot.patch │ │ │ ├── 06-br-build-system-integration.patch │ │ │ ├── 10-br-build-system.patch │ │ │ ├── 11-use-mktemp-for-lxdialog.patch │ │ │ ├── 12-fix-glade-file-path.patch │ │ │ ├── 14-support-out-of-tree-config.patch │ │ │ ├── 16-fix-space-to-de-select-options.patch │ │ │ ├── 17-backport-kecho.patch │ │ │ ├── 18-merge-config.sh-create-temporary-files-in-tmp.patch │ │ │ ├── 19-merge_config.sh-add-br2-external-support.patch │ │ │ ├── 20-merge_config.sh-Allow-to-define-config-prefix.patch │ │ │ ├── 21-Avoid-false-positive-matches-from-comment-lines.patch │ │ │ └── series │ │ ├── qconf.cc │ │ ├── qconf.h │ │ ├── streamline_config.pl │ │ ├── symbol.c │ │ ├── util.c │ │ ├── zconf.l │ │ ├── zconf.lex.c_shipped │ │ ├── zconf.tab.c_shipped │ │ └── zconf.y │ ├── legal-info │ │ ├── README.header │ │ ├── README.warnings-header │ │ └── buildroot.hash │ ├── libtool │ │ ├── buildroot-libtool-v1.5.patch │ │ ├── buildroot-libtool-v2.2.patch │ │ ├── buildroot-libtool-v2.4.4.patch │ │ └── buildroot-libtool-v2.4.patch │ ├── misc │ │ ├── Buildroot.cmake │ │ ├── Vagrantfile │ │ ├── relocate-sdk.sh │ │ ├── target-dir-warning.txt │ │ ├── toolchainfile.cmake.in │ │ └── utils.mk │ ├── scripts │ │ ├── apply-patches.sh │ │ ├── br2-external │ │ ├── brpkgutil.py │ │ ├── check-bin-arch │ │ ├── check-host-rpath │ │ ├── check-kernel-headers.sh │ │ ├── check-merged-usr.sh │ │ ├── eclipse-register-toolchain │ │ ├── expunge-gconv-modules │ │ ├── fix-configure-powerpc64.sh │ │ ├── fix-rpath │ │ ├── generate-gitlab-ci-yml │ │ ├── genimage.sh │ │ ├── graph-build-time │ │ ├── graph-depends │ │ ├── hardlink-or-copy │ │ ├── mkmakefile │ │ ├── mkusers │ │ ├── pkg-stats │ │ ├── pycompile.py │ │ ├── setlocalversion │ │ └── size-stats │ └── testing │ │ ├── conf │ │ ├── docker-compose-kernel.config │ │ ├── docker-compose.yml │ │ ├── f2fs-kernel-fragment.config │ │ ├── grub2.cfg │ │ ├── isolinux.cfg │ │ ├── minimal-x86-qemu-kernel.config │ │ └── unittest.cfg │ │ ├── infra │ │ ├── __init__.py │ │ ├── basetest.py │ │ ├── builder.py │ │ └── emulator.py │ │ ├── run-tests │ │ └── tests │ │ ├── __init__.py │ │ ├── boot │ │ ├── __init__.py │ │ └── test_atf.py │ │ ├── core │ │ ├── __init__.py │ │ ├── device_table2.txt │ │ ├── post-build.sh │ │ ├── post-fakeroot.sh │ │ ├── post-image.sh │ │ ├── rootfs-overlay1 │ │ │ └── test-file1 │ │ ├── rootfs-overlay2 │ │ │ └── etc │ │ │ │ └── test-file2 │ │ ├── squashfs-xattr-kernel.config │ │ ├── test_file_capabilities.py │ │ ├── test_hardening.py │ │ ├── test_post_scripts.py │ │ ├── test_root_password.py │ │ ├── test_rootfs_overlay.py │ │ └── test_timezone.py │ │ ├── download │ │ ├── __init__.py │ │ ├── br2-external │ │ │ ├── git-hash │ │ │ │ ├── Config.in │ │ │ │ ├── external.desc │ │ │ │ ├── external.mk │ │ │ │ └── package │ │ │ │ │ ├── bad │ │ │ │ │ ├── bad.hash │ │ │ │ │ └── bad.mk │ │ │ │ │ ├── good │ │ │ │ │ ├── good.hash │ │ │ │ │ └── good.mk │ │ │ │ │ └── nohash │ │ │ │ │ └── nohash.mk │ │ │ └── git-refs │ │ │ │ ├── Config.in │ │ │ │ ├── external.desc │ │ │ │ ├── external.mk │ │ │ │ └── package │ │ │ │ ├── git-partial-sha1-branch-head │ │ │ │ ├── git-partial-sha1-branch-head.hash │ │ │ │ └── git-partial-sha1-branch-head.mk │ │ │ │ ├── git-partial-sha1-reachable-by-branch │ │ │ │ ├── git-partial-sha1-reachable-by-branch.hash │ │ │ │ └── git-partial-sha1-reachable-by-branch.mk │ │ │ │ ├── git-partial-sha1-reachable-by-tag │ │ │ │ ├── git-partial-sha1-reachable-by-tag.hash │ │ │ │ └── git-partial-sha1-reachable-by-tag.mk │ │ │ │ ├── git-partial-sha1-tag-itself │ │ │ │ ├── git-partial-sha1-tag-itself.hash │ │ │ │ └── git-partial-sha1-tag-itself.mk │ │ │ │ ├── git-partial-sha1-tag-points-to │ │ │ │ ├── git-partial-sha1-tag-points-to.hash │ │ │ │ └── git-partial-sha1-tag-points-to.mk │ │ │ │ ├── git-sha1-branch-head │ │ │ │ ├── git-sha1-branch-head.hash │ │ │ │ └── git-sha1-branch-head.mk │ │ │ │ ├── git-sha1-reachable-by-branch │ │ │ │ ├── git-sha1-reachable-by-branch.hash │ │ │ │ └── git-sha1-reachable-by-branch.mk │ │ │ │ ├── git-sha1-reachable-by-tag │ │ │ │ ├── git-sha1-reachable-by-tag.hash │ │ │ │ └── git-sha1-reachable-by-tag.mk │ │ │ │ ├── git-sha1-tag-itself │ │ │ │ ├── git-sha1-tag-itself.hash │ │ │ │ └── git-sha1-tag-itself.mk │ │ │ │ ├── git-sha1-tag-points-to │ │ │ │ ├── git-sha1-tag-points-to.hash │ │ │ │ └── git-sha1-tag-points-to.mk │ │ │ │ ├── git-submodule-disabled │ │ │ │ ├── git-submodule-disabled.hash │ │ │ │ └── git-submodule-disabled.mk │ │ │ │ ├── git-submodule-enabled │ │ │ │ ├── git-submodule-enabled.hash │ │ │ │ └── git-submodule-enabled.mk │ │ │ │ ├── git-tag │ │ │ │ ├── git-tag.hash │ │ │ │ └── git-tag.mk │ │ │ │ ├── git-wrong-content │ │ │ │ ├── git-wrong-content.hash │ │ │ │ └── git-wrong-content.mk │ │ │ │ └── git-wrong-sha1 │ │ │ │ └── git-wrong-sha1.mk │ │ ├── git-remote │ │ │ ├── refs-sub1.git │ │ │ │ ├── .gitattributes │ │ │ │ ├── HEAD │ │ │ │ ├── config │ │ │ │ ├── objects │ │ │ │ │ ├── 99 │ │ │ │ │ │ └── f2e3e1cb15f9b52fa29f66d380dda061d917ab │ │ │ │ │ ├── 07 │ │ │ │ │ │ └── cabc655213bdf7087d8dd50fda95124e935570 │ │ │ │ │ ├── 1d │ │ │ │ │ │ └── f823cb8a6d1866148ae50a8009762a9c4c777f │ │ │ │ │ ├── 7d │ │ │ │ │ │ └── 52f458bdb0f9f5a4beb46fa82824421b8b988e │ │ │ │ │ ├── a1 │ │ │ │ │ │ └── 30af1626bbadd64841b2cbcb6ac4ed0638ba1a │ │ │ │ │ ├── bc │ │ │ │ │ │ └── c81ba6e5bd8bf52c95688ae8d3e697e131fa23 │ │ │ │ │ ├── cb │ │ │ │ │ │ └── 545facf77bbc5f24f95b6d503c338d10b7b717 │ │ │ │ │ ├── dd │ │ │ │ │ │ └── 130f6f4629514adaf2e03407f3ed9344eb6cd6 │ │ │ │ │ ├── e7 │ │ │ │ │ │ └── 9c5e8f964493290a409888d5413a737e8e5dd5 │ │ │ │ │ └── f8 │ │ │ │ │ │ └── 001e5780100962a5e30a25cbc4c9609cfc7bf3 │ │ │ │ └── refs │ │ │ │ │ └── heads │ │ │ │ │ └── submodule │ │ │ ├── refs-sub2.git │ │ │ │ ├── .gitattributes │ │ │ │ ├── HEAD │ │ │ │ ├── config │ │ │ │ ├── objects │ │ │ │ │ ├── 32 │ │ │ │ │ │ └── d61bae693af7879da63b89a60d3ae67f851e56 │ │ │ │ │ ├── 85 │ │ │ │ │ │ └── 8f666af75b7c0dfba6b8be7eac5f196e7a1221 │ │ │ │ │ ├── 99 │ │ │ │ │ │ └── f2e3e1cb15f9b52fa29f66d380dda061d917ab │ │ │ │ │ ├── 0a │ │ │ │ │ │ └── 846af45c3e455789435f49f80d70e86b65b9d7 │ │ │ │ │ ├── 0b │ │ │ │ │ │ └── 32ebd8fc52cec991f18c94be980e85a8341585 │ │ │ │ │ ├── 3e │ │ │ │ │ │ └── 9b0a5198c64cea9c00f820433411e3b4d50c1c │ │ │ │ │ ├── cd │ │ │ │ │ │ └── 4d62ff218ab7b4a04f5bfdf800ace087af3ceb │ │ │ │ │ ├── e7 │ │ │ │ │ │ └── 9c5e8f964493290a409888d5413a737e8e5dd5 │ │ │ │ │ └── e8 │ │ │ │ │ │ └── 3f6f805bd016b90acafc8702c52d778eb57310 │ │ │ │ └── refs │ │ │ │ │ └── heads │ │ │ │ │ └── submodule │ │ │ └── repo.git │ │ │ │ ├── .gitattributes │ │ │ │ ├── HEAD │ │ │ │ ├── config │ │ │ │ ├── objects │ │ │ │ ├── 11 │ │ │ │ │ └── 93ff46343f4f6a0522e2b28b871e905178c1f0 │ │ │ │ ├── 25 │ │ │ │ │ └── 59d83bfe937fc0412d96ed664663c9e8a99055 │ │ │ │ ├── 31 │ │ │ │ │ └── 7406308d9259e2231bd0d6ddad3de3832bce08 │ │ │ │ ├── 34 │ │ │ │ │ └── d1da713bf7de1c535e1d7d3ca985afd84bc7e5 │ │ │ │ ├── 46 │ │ │ │ │ └── bae5b639e5a18e2cc4dc508f080d566baeff59 │ │ │ │ ├── 51 │ │ │ │ │ └── 6c9c5f64ec66534d4d069c2e408d9ae4dce023 │ │ │ │ ├── 68 │ │ │ │ │ └── c197d0879d485f4f6cee85544722b79e68e59f │ │ │ │ ├── 92 │ │ │ │ │ └── ef85be57d627f280d8ce3724452ac21c9a6452 │ │ │ │ ├── 99 │ │ │ │ │ └── f2e3e1cb15f9b52fa29f66d380dda061d917ab │ │ │ │ ├── 0b │ │ │ │ │ └── d8ceb961c3b2b210f64a67d57f4b5cd669d343 │ │ │ │ ├── 2b │ │ │ │ │ └── 0e0d98a49c97da6a618ab36337e2058eb733a2 │ │ │ │ ├── 2f │ │ │ │ │ └── a37f6885d7eb746df75eccaddbacf3ac82799d │ │ │ │ ├── 8b │ │ │ │ │ └── 8a7e885a041da72b1ee9a47c5b9300b172a9e7 │ │ │ │ ├── a2 │ │ │ │ │ └── 38b1dfcd825d47d834af3c5223417c8411d90d │ │ │ │ ├── a9 │ │ │ │ │ └── dbc1e23c45e8e1b88c0448763f54d714eb6f8f │ │ │ │ ├── b2 │ │ │ │ │ └── 4b387624edc78d0292a127c43cad9ba97c6232 │ │ │ │ ├── cf │ │ │ │ │ └── 0f4f85d7a1237e377a2d25b996518a877ea001 │ │ │ │ ├── d4 │ │ │ │ │ └── e2941d18a63535400476324ddeb7f40164be41 │ │ │ │ ├── e2 │ │ │ │ │ ├── 2695cbf976fed1f543ad7486a531c0af473482 │ │ │ │ │ └── cfe068f7e5bf4de32ffe1241da53abce9fa89e │ │ │ │ ├── e7 │ │ │ │ │ └── 9c5e8f964493290a409888d5413a737e8e5dd5 │ │ │ │ ├── f6 │ │ │ │ │ └── 476b879f65e956d7dedd5b08736369e9a24acc │ │ │ │ └── fe │ │ │ │ │ └── 74231105841041d5f441e70399d37f0e600aa5 │ │ │ │ └── refs │ │ │ │ ├── heads │ │ │ │ ├── master │ │ │ │ ├── mybranch │ │ │ │ └── submodule │ │ │ │ └── tags │ │ │ │ └── mytag │ │ ├── gitremote.py │ │ └── test_git.py │ │ ├── fs │ │ ├── __init__.py │ │ ├── test_ext.py │ │ ├── test_f2fs.py │ │ ├── test_iso9660.py │ │ ├── test_jffs2.py │ │ ├── test_squashfs.py │ │ ├── test_ubi.py │ │ └── test_yaffs2.py │ │ ├── init │ │ ├── __init__.py │ │ ├── base.py │ │ ├── systemd-factory │ │ │ └── var │ │ │ │ └── foo │ │ │ │ └── bar │ │ ├── test_busybox.py │ │ ├── test_none.py │ │ └── test_systemd.py │ │ ├── package │ │ ├── __init__.py │ │ ├── br2-external │ │ │ └── openjdk │ │ │ │ ├── Config.in │ │ │ │ ├── external.desc │ │ │ │ ├── external.mk │ │ │ │ └── package │ │ │ │ ├── openjdk-hello-world │ │ │ │ ├── Config.in │ │ │ │ ├── HelloWorld.java │ │ │ │ └── openjdk-hello-world.mk │ │ │ │ └── openjdk-jni-test │ │ │ │ ├── Config.in │ │ │ │ ├── JniHelper.java │ │ │ │ ├── JniTest.java │ │ │ │ ├── JniWrapper.c │ │ │ │ ├── JniWrapper.java │ │ │ │ ├── jni_helper.c │ │ │ │ ├── jni_helper.h │ │ │ │ ├── native.c │ │ │ │ ├── native.h │ │ │ │ └── openjdk-jni-test.mk │ │ ├── copy-sample-script-to-target.sh │ │ ├── sample_python_argh.py │ │ ├── sample_python_attrs.py │ │ ├── sample_python_autobahn.py │ │ ├── sample_python_automat.py │ │ ├── sample_python_avro.py │ │ ├── sample_python_bitstring.py │ │ ├── sample_python_can.py │ │ ├── sample_python_cbor_dec.py │ │ ├── sample_python_cbor_enc.py │ │ ├── sample_python_click.py │ │ ├── sample_python_constantly.py │ │ ├── sample_python_crossbar.py │ │ ├── sample_python_cryptography.py │ │ ├── sample_python_django.py │ │ ├── sample_python_gitdb2.py │ │ ├── sample_python_gobject.py │ │ ├── sample_python_incremental.py │ │ ├── sample_python_passlib.py │ │ ├── sample_python_pexpect.py │ │ ├── sample_python_pynacl.py │ │ ├── sample_python_pyyaml_dec.py │ │ ├── sample_python_pyyaml_enc.py │ │ ├── sample_python_service_identity.py │ │ ├── sample_python_smmap2.py │ │ ├── sample_python_subprocess32.py │ │ ├── sample_python_treq.py │ │ ├── sample_python_twisted.py │ │ ├── sample_python_txaio_asyncio.py │ │ ├── sample_python_txaio_twisted.py │ │ ├── sample_python_txtorcon.py │ │ ├── sample_python_ubjson_dec.py │ │ ├── sample_python_ubjson_enc.py │ │ ├── test_atop.py │ │ ├── test_crudini.py │ │ ├── test_docker_compose.py │ │ ├── test_dropbear.py │ │ ├── test_glxinfo.py │ │ ├── test_ipython.py │ │ ├── test_lpeg.py │ │ ├── test_lsqlite3.py │ │ ├── test_lua.py │ │ ├── test_lua_cqueues.py │ │ ├── test_lua_curl.py │ │ ├── test_lua_gd.py │ │ ├── test_lua_http.py │ │ ├── test_lua_sdl2.py │ │ ├── test_lua_utf8.py │ │ ├── test_luaexpat.py │ │ ├── test_luafilesystem.py │ │ ├── test_luaossl.py │ │ ├── test_luaposix.py │ │ ├── test_luasec.py │ │ ├── test_luasocket.py │ │ ├── test_luasyslog.py │ │ ├── test_luvi.py │ │ ├── test_lxc.py │ │ ├── test_lxc │ │ │ ├── lxc-kernel.config │ │ │ └── rootfs-overlay │ │ │ │ └── usr │ │ │ │ ├── bin │ │ │ │ └── iperf3.sh │ │ │ │ └── share │ │ │ │ └── lxc │ │ │ │ └── config │ │ │ │ ├── minimal-iperf3.conf │ │ │ │ └── minimal.conf │ │ ├── test_lzlib.py │ │ ├── test_openjdk.py │ │ ├── test_opkg.py │ │ ├── test_opkg │ │ │ └── post-build.sh │ │ ├── test_perl.py │ │ ├── test_perl_class_load.py │ │ ├── test_perl_dbd_mysql.py │ │ ├── test_perl_encode_detect.py │ │ ├── test_perl_gdgraph.py │ │ ├── test_perl_io_socket_multicast.py │ │ ├── test_perl_io_socket_ssl.py │ │ ├── test_perl_libwww_perl.py │ │ ├── test_perl_mail_dkim.py │ │ ├── test_perl_x10.py │ │ ├── test_perl_xml_libxml.py │ │ ├── test_prosody.py │ │ ├── test_python.py │ │ ├── test_python_argh.py │ │ ├── test_python_attrs.py │ │ ├── test_python_autobahn.py │ │ ├── test_python_automat.py │ │ ├── test_python_avro.py │ │ ├── test_python_bitstring.py │ │ ├── test_python_can.py │ │ ├── test_python_cbor.py │ │ ├── test_python_click.py │ │ ├── test_python_constantly.py │ │ ├── test_python_crossbar.py │ │ ├── test_python_cryptography.py │ │ ├── test_python_django.py │ │ ├── test_python_gitdb2.py │ │ ├── test_python_gobject.py │ │ ├── test_python_incremental.py │ │ ├── test_python_passlib.py │ │ ├── test_python_pexpect.py │ │ ├── test_python_pynacl.py │ │ ├── test_python_pyyaml.py │ │ ├── test_python_service_identity.py │ │ ├── test_python_smmap2.py │ │ ├── test_python_subprocess32.py │ │ ├── test_python_treq.py │ │ ├── test_python_twisted.py │ │ ├── test_python_txaio.py │ │ ├── test_python_txtorcon.py │ │ ├── test_python_ubjson.py │ │ ├── test_rings.py │ │ ├── test_rust.py │ │ ├── test_syslog_ng.py │ │ ├── test_tmux.py │ │ └── test_turbolua.py │ │ ├── toolchain │ │ ├── __init__.py │ │ └── test_external.py │ │ └── utils │ │ ├── __init__.py │ │ ├── br2-external │ │ ├── Config.in │ │ ├── external.desc │ │ ├── external.mk │ │ └── package │ │ │ └── external │ │ │ └── external.mk │ │ └── test_check_package.py ├── system │ ├── Config.in │ ├── device_table.txt │ ├── device_table_dev.txt │ ├── skeleton │ │ ├── dev │ │ │ ├── .empty │ │ │ ├── fd │ │ │ ├── stderr │ │ │ ├── stdin │ │ │ └── stdout │ │ ├── etc │ │ │ ├── group │ │ │ ├── hosts │ │ │ ├── mtab │ │ │ ├── passwd │ │ │ ├── profile │ │ │ ├── profile.d │ │ │ │ └── umask.sh │ │ │ ├── protocols │ │ │ ├── resolv.conf │ │ │ ├── services │ │ │ └── shadow │ │ ├── media │ │ │ └── .empty │ │ ├── mnt │ │ │ └── .empty │ │ ├── opt │ │ │ └── .empty │ │ ├── proc │ │ │ └── .empty │ │ ├── root │ │ │ └── .empty │ │ ├── run │ │ │ └── .empty │ │ ├── sys │ │ │ └── .empty │ │ ├── tmp │ │ │ └── .empty │ │ └── usr │ │ │ ├── bin │ │ │ └── .empty │ │ │ ├── lib │ │ │ └── .empty │ │ │ └── sbin │ │ │ └── .empty │ └── system.mk ├── toolchain │ ├── Config.in │ ├── helpers.mk │ ├── toolchain-buildroot │ │ ├── Config.in │ │ └── toolchain-buildroot.mk │ ├── toolchain-external │ │ ├── Config.in │ │ ├── pkg-toolchain-external.mk │ │ ├── toolchain-external-andes-nds32 │ │ │ ├── Config.in │ │ │ ├── Config.in.options │ │ │ ├── toolchain-external-andes-nds32.hash │ │ │ └── toolchain-external-andes-nds32.mk │ │ ├── toolchain-external-arm-aarch64-be │ │ │ ├── Config.in │ │ │ ├── Config.in.options │ │ │ ├── toolchain-external-arm-aarch64-be.hash │ │ │ └── toolchain-external-arm-aarch64-be.mk │ │ ├── toolchain-external-arm-aarch64 │ │ │ ├── Config.in │ │ │ ├── Config.in.options │ │ │ ├── toolchain-external-arm-aarch64.hash │ │ │ └── toolchain-external-arm-aarch64.mk │ │ ├── toolchain-external-arm-arm │ │ │ ├── Config.in │ │ │ ├── Config.in.options │ │ │ ├── toolchain-external-arm-arm.hash │ │ │ └── toolchain-external-arm-arm.mk │ │ ├── toolchain-external-codescape-img-mips │ │ │ ├── Config.in │ │ │ ├── Config.in.options │ │ │ ├── toolchain-external-codescape-img-mips.hash │ │ │ └── toolchain-external-codescape-img-mips.mk │ │ ├── toolchain-external-codescape-mti-mips │ │ │ ├── Config.in │ │ │ ├── Config.in.options │ │ │ ├── toolchain-external-codescape-mti-mips.hash │ │ │ └── toolchain-external-codescape-mti-mips.mk │ │ ├── toolchain-external-codesourcery-aarch64 │ │ │ ├── Config.in │ │ │ ├── Config.in.options │ │ │ ├── toolchain-external-codesourcery-aarch64.hash │ │ │ └── toolchain-external-codesourcery-aarch64.mk │ │ ├── toolchain-external-codesourcery-amd64 │ │ │ ├── Config.in │ │ │ ├── Config.in.options │ │ │ ├── toolchain-external-codesourcery-amd64.hash │ │ │ └── toolchain-external-codesourcery-amd64.mk │ │ ├── toolchain-external-codesourcery-arm │ │ │ ├── Config.in │ │ │ ├── Config.in.options │ │ │ ├── toolchain-external-codesourcery-arm.hash │ │ │ └── toolchain-external-codesourcery-arm.mk │ │ ├── toolchain-external-codesourcery-mips │ │ │ ├── Config.in │ │ │ ├── Config.in.options │ │ │ ├── toolchain-external-codesourcery-mips.hash │ │ │ └── toolchain-external-codesourcery-mips.mk │ │ ├── toolchain-external-codesourcery-niosII │ │ │ ├── Config.in │ │ │ ├── Config.in.options │ │ │ ├── toolchain-external-codesourcery-niosII.hash │ │ │ └── toolchain-external-codesourcery-niosII.mk │ │ ├── toolchain-external-custom │ │ │ ├── Config.in │ │ │ ├── Config.in.options │ │ │ └── toolchain-external-custom.mk │ │ ├── toolchain-external-linaro-aarch64-be │ │ │ ├── Config.in │ │ │ ├── Config.in.options │ │ │ ├── toolchain-external-linaro-aarch64-be.hash │ │ │ └── toolchain-external-linaro-aarch64-be.mk │ │ ├── toolchain-external-linaro-aarch64 │ │ │ ├── Config.in │ │ │ ├── Config.in.options │ │ │ ├── toolchain-external-linaro-aarch64.hash │ │ │ └── toolchain-external-linaro-aarch64.mk │ │ ├── toolchain-external-linaro-arm │ │ │ ├── Config.in │ │ │ ├── Config.in.options │ │ │ ├── toolchain-external-linaro-arm.hash │ │ │ └── toolchain-external-linaro-arm.mk │ │ ├── toolchain-external-linaro-armeb │ │ │ ├── Config.in │ │ │ ├── Config.in.options │ │ │ ├── toolchain-external-linaro-armeb.hash │ │ │ └── toolchain-external-linaro-armeb.mk │ │ ├── toolchain-external-synopsys-arc │ │ │ ├── Config.in │ │ │ ├── Config.in.options │ │ │ ├── toolchain-external-synopsys-arc.hash │ │ │ └── toolchain-external-synopsys-arc.mk │ │ └── toolchain-external.mk │ ├── toolchain-wrapper.c │ ├── toolchain-wrapper.mk │ ├── toolchain.mk │ └── toolchain │ │ └── toolchain.mk └── utils │ ├── brmake │ ├── check-package │ ├── checkpackagelib │ ├── __init__.py │ ├── base.py │ ├── lib.py │ ├── lib_config.py │ ├── lib_hash.py │ ├── lib_mk.py │ ├── lib_patch.py │ └── readme.txt │ ├── config │ ├── diffconfig │ ├── genrandconfig │ ├── get-developers │ ├── getdeveloperlib.py │ ├── readme.txt │ ├── scancpan │ ├── scanpypi │ ├── size-stats-compare │ └── test-pkg └── tinycc ├── .gitignore ├── COPYING ├── Changelog ├── CodingStyle ├── Makefile ├── README ├── RELICENSING ├── TODO ├── VERSION ├── arm-asm.c ├── arm-gen.c ├── arm-link.c ├── arm64-gen.c ├── arm64-link.c ├── c67-gen.c ├── c67-link.c ├── coff.h ├── configure ├── conftest.c ├── elf.h ├── examples ├── ex1.c ├── ex2.c ├── ex3.c ├── ex4.c └── ex5.c ├── i386-asm.c ├── i386-asm.h ├── i386-gen.c ├── i386-link.c ├── i386-tok.h ├── il-gen.c ├── il-opcodes.h ├── include ├── float.h ├── stdalign.h ├── stdarg.h ├── stdbool.h ├── stddef.h ├── stdnoreturn.h └── varargs.h ├── lib ├── Makefile ├── alloca-arm.S ├── alloca86-bt.S ├── alloca86.S ├── alloca86_64-bt.S ├── alloca86_64.S ├── armeabi.c ├── armflush.c ├── bcheck.c ├── bt-dll.c ├── bt-exe.c ├── bt-log.c ├── dsohandle.c ├── lib-arm64.c ├── libtcc1.c └── va_list.c ├── libtcc.c ├── libtcc.h ├── riscv64-gen.c ├── riscv64-link.c ├── stab.def ├── stab.h ├── tcc-doc.texi ├── tcc.c ├── tcc.h ├── tccasm.c ├── tcccoff.c ├── tccelf.c ├── tccgen.c ├── tcclib.h ├── tccpe.c ├── tccpp.c ├── tccrun.c ├── tcctok.h ├── tcctools.c ├── tests ├── 42test.h ├── Makefile ├── abitest.c ├── asm-c-connect-1.c ├── asm-c-connect-2.c ├── asmtest.S ├── boundtest.c ├── gcctestsuite.sh ├── libtcc_test.c ├── libtcc_test_mt.c ├── pp │ ├── 01.c │ ├── 01.expect │ ├── 02.c │ ├── 02.expect │ ├── 03.c │ ├── 03.expect │ ├── 04.c │ ├── 04.expect │ ├── 05.c │ ├── 05.expect │ ├── 06.c │ ├── 06.expect │ ├── 07.c │ ├── 07.expect │ ├── 08.c │ ├── 08.expect │ ├── 09.c │ ├── 09.expect │ ├── 10.c │ ├── 10.expect │ ├── 11.c │ ├── 11.expect │ ├── 12.S │ ├── 12.expect │ ├── 13.S │ ├── 13.expect │ ├── 14.c │ ├── 14.expect │ ├── 15.c │ ├── 15.expect │ ├── 16.c │ ├── 16.expect │ ├── 17.c │ ├── 17.expect │ ├── 18.c │ ├── 18.expect │ ├── 19.c │ ├── 19.expect │ ├── 20.c │ ├── 20.expect │ ├── 21.c │ ├── 21.expect │ ├── Makefile │ ├── pp-counter.c │ └── pp-counter.expect ├── tcctest.c ├── tcctest.h ├── testfp.c ├── tests2 │ ├── 00_assignment.c │ ├── 00_assignment.expect │ ├── 01_comment.c │ ├── 01_comment.expect │ ├── 02_printf.c │ ├── 02_printf.expect │ ├── 03_struct.c │ ├── 03_struct.expect │ ├── 04_for.c │ ├── 04_for.expect │ ├── 05_array.c │ ├── 05_array.expect │ ├── 06_case.c │ ├── 06_case.expect │ ├── 07_function.c │ ├── 07_function.expect │ ├── 08_while.c │ ├── 08_while.expect │ ├── 09_do_while.c │ ├── 09_do_while.expect │ ├── 100_c99array-decls.c │ ├── 100_c99array-decls.expect │ ├── 101_cleanup.c │ ├── 101_cleanup.expect │ ├── 102_alignas.c │ ├── 102_alignas.expect │ ├── 103_implicit_memmove.c │ ├── 103_implicit_memmove.expect │ ├── 104+_inline.c │ ├── 104_inline.c │ ├── 104_inline.expect │ ├── 105_local_extern.c │ ├── 105_local_extern.expect │ ├── 106_pthread.c │ ├── 106_pthread.expect │ ├── 107_stack_safe.c │ ├── 107_stack_safe.expect │ ├── 108_constructor.c │ ├── 108_constructor.expect │ ├── 109_float_struct_calling.c │ ├── 109_float_struct_calling.expect │ ├── 10_pointer.c │ ├── 10_pointer.expect │ ├── 110_average.c │ ├── 110_average.expect │ ├── 111_conversion.c │ ├── 111_conversion.expect │ ├── 112_backtrace.c │ ├── 112_backtrace.expect │ ├── 113_btdll.c │ ├── 113_btdll.expect │ ├── 11_precedence.c │ ├── 11_precedence.expect │ ├── 12_hashdefine.c │ ├── 12_hashdefine.expect │ ├── 13_integer_literals.c │ ├── 13_integer_literals.expect │ ├── 14_if.c │ ├── 14_if.expect │ ├── 15_recursion.c │ ├── 15_recursion.expect │ ├── 16_nesting.c │ ├── 16_nesting.expect │ ├── 17_enum.c │ ├── 17_enum.expect │ ├── 18_include.c │ ├── 18_include.expect │ ├── 18_include.h │ ├── 19_pointer_arithmetic.c │ ├── 19_pointer_arithmetic.expect │ ├── 20_pointer_comparison.c │ ├── 20_pointer_comparison.expect │ ├── 21_char_array.c │ ├── 21_char_array.expect │ ├── 22_floating_point.c │ ├── 22_floating_point.expect │ ├── 23_type_coercion.c │ ├── 23_type_coercion.expect │ ├── 24_math_library.c │ ├── 24_math_library.expect │ ├── 25_quicksort.c │ ├── 25_quicksort.expect │ ├── 26_character_constants.c │ ├── 26_character_constants.expect │ ├── 27_sizeof.c │ ├── 27_sizeof.expect │ ├── 28_strings.c │ ├── 28_strings.expect │ ├── 29_array_address.c │ ├── 29_array_address.expect │ ├── 30_hanoi.c │ ├── 30_hanoi.expect │ ├── 31_args.c │ ├── 31_args.expect │ ├── 32_led.c │ ├── 32_led.expect │ ├── 33_ternary_op.c │ ├── 33_ternary_op.expect │ ├── 34_array_assignment.c │ ├── 34_array_assignment.expect │ ├── 35_sizeof.c │ ├── 35_sizeof.expect │ ├── 36_array_initialisers.c │ ├── 36_array_initialisers.expect │ ├── 37_sprintf.c │ ├── 37_sprintf.expect │ ├── 38_multiple_array_index.c │ ├── 38_multiple_array_index.expect │ ├── 39_typedef.c │ ├── 39_typedef.expect │ ├── 40_stdio.c │ ├── 40_stdio.expect │ ├── 41_hashif.c │ ├── 41_hashif.expect │ ├── 42_function_pointer.c │ ├── 42_function_pointer.expect │ ├── 43_void_param.c │ ├── 43_void_param.expect │ ├── 44_scoped_declarations.c │ ├── 44_scoped_declarations.expect │ ├── 45_empty_for.c │ ├── 45_empty_for.expect │ ├── 46_grep.c │ ├── 46_grep.expect │ ├── 47_switch_return.c │ ├── 47_switch_return.expect │ ├── 48_nested_break.c │ ├── 48_nested_break.expect │ ├── 49_bracket_evaluation.c │ ├── 49_bracket_evaluation.expect │ ├── 50_logical_second_arg.c │ ├── 50_logical_second_arg.expect │ ├── 51_static.c │ ├── 51_static.expect │ ├── 52_unnamed_enum.c │ ├── 52_unnamed_enum.expect │ ├── 54_goto.c │ ├── 54_goto.expect │ ├── 55_lshift_type.c │ ├── 55_lshift_type.expect │ ├── 60_errors_and_warnings.c │ ├── 60_errors_and_warnings.expect │ ├── 64_macro_nesting.c │ ├── 64_macro_nesting.expect │ ├── 67_macro_concat.c │ ├── 67_macro_concat.expect │ ├── 70_floating_point_literals.c │ ├── 70_floating_point_literals.expect │ ├── 71_macro_empty_arg.c │ ├── 71_macro_empty_arg.expect │ ├── 72_long_long_constant.c │ ├── 72_long_long_constant.expect │ ├── 73_arm64.c │ ├── 73_arm64.expect │ ├── 75_array_in_struct_init.c │ ├── 75_array_in_struct_init.expect │ ├── 76_dollars_in_identifiers.c │ ├── 76_dollars_in_identifiers.expect │ ├── 77_push_pop_macro.c │ ├── 77_push_pop_macro.expect │ ├── 78_vla_label.c │ ├── 78_vla_label.expect │ ├── 79_vla_continue.c │ ├── 79_vla_continue.expect │ ├── 80_flexarray.c │ ├── 80_flexarray.expect │ ├── 81_types.c │ ├── 81_types.expect │ ├── 82_attribs_position.c │ ├── 82_attribs_position.expect │ ├── 83_utf8_in_identifiers.c │ ├── 83_utf8_in_identifiers.expect │ ├── 84_hex-float.c │ ├── 84_hex-float.expect │ ├── 85_asm-outside-function.c │ ├── 85_asm-outside-function.expect │ ├── 86_memory-model.c │ ├── 86_memory-model.expect │ ├── 87_dead_code.c │ ├── 87_dead_code.expect │ ├── 88_codeopt.c │ ├── 88_codeopt.expect │ ├── 89_nocode_wanted.c │ ├── 89_nocode_wanted.expect │ ├── 90_struct-init.c │ ├── 90_struct-init.expect │ ├── 91_ptr_longlong_arith32.c │ ├── 91_ptr_longlong_arith32.expect │ ├── 92_enum_bitfield.c │ ├── 92_enum_bitfield.expect │ ├── 93_integer_promotion.c │ ├── 93_integer_promotion.expect │ ├── 94_generic.c │ ├── 94_generic.expect │ ├── 95_bitfields.c │ ├── 95_bitfields.expect │ ├── 95_bitfields_ms.c │ ├── 95_bitfields_ms.expect │ ├── 96_nodata_wanted.c │ ├── 96_nodata_wanted.expect │ ├── 97_utf8_string_literal.c │ ├── 97_utf8_string_literal.expect │ ├── 98_al_ax_extend.c │ ├── 98_al_ax_extend.expect │ ├── 99_fastcall.c │ ├── 99_fastcall.expect │ ├── LICENSE │ └── Makefile └── vla_test.c ├── texi2pod.pl ├── win32 ├── build-tcc.bat ├── examples │ ├── dll.c │ ├── fib.c │ ├── hello_dll.c │ └── hello_win.c ├── include │ ├── _mingw.h │ ├── assert.h │ ├── conio.h │ ├── ctype.h │ ├── dir.h │ ├── direct.h │ ├── dirent.h │ ├── dos.h │ ├── errno.h │ ├── excpt.h │ ├── fcntl.h │ ├── fenv.h │ ├── inttypes.h │ ├── io.h │ ├── iso646.h │ ├── limits.h │ ├── locale.h │ ├── malloc.h │ ├── math.h │ ├── mem.h │ ├── memory.h │ ├── process.h │ ├── sec_api │ │ ├── conio_s.h │ │ ├── crtdbg_s.h │ │ ├── io_s.h │ │ ├── mbstring_s.h │ │ ├── search_s.h │ │ ├── stdio_s.h │ │ ├── stdlib_s.h │ │ ├── stralign_s.h │ │ ├── string_s.h │ │ ├── sys │ │ │ └── timeb_s.h │ │ ├── tchar_s.h │ │ ├── time_s.h │ │ └── wchar_s.h │ ├── setjmp.h │ ├── share.h │ ├── signal.h │ ├── stdint.h │ ├── stdio.h │ ├── stdlib.h │ ├── string.h │ ├── sys │ │ ├── fcntl.h │ │ ├── file.h │ │ ├── locking.h │ │ ├── stat.h │ │ ├── time.h │ │ ├── timeb.h │ │ ├── types.h │ │ ├── unistd.h │ │ └── utime.h │ ├── tcc │ │ └── tcc_libm.h │ ├── tchar.h │ ├── time.h │ ├── uchar.h │ ├── vadefs.h │ ├── values.h │ ├── wchar.h │ ├── wctype.h │ └── winapi │ │ ├── basetsd.h │ │ ├── basetyps.h │ │ ├── guiddef.h │ │ ├── poppack.h │ │ ├── pshpack1.h │ │ ├── pshpack2.h │ │ ├── pshpack4.h │ │ ├── pshpack8.h │ │ ├── qos.h │ │ ├── winbase.h │ │ ├── wincon.h │ │ ├── windef.h │ │ ├── windows.h │ │ ├── winerror.h │ │ ├── wingdi.h │ │ ├── winnls.h │ │ ├── winnt.h │ │ ├── winreg.h │ │ ├── winsock2.h │ │ ├── winuser.h │ │ ├── winver.h │ │ └── ws2ipdef.h ├── lib │ ├── chkstk.S │ ├── crt1.c │ ├── crt1w.c │ ├── dllcrt1.c │ ├── dllmain.c │ ├── gdi32.def │ ├── kernel32.def │ ├── msvcrt.def │ ├── user32.def │ ├── wincrt1.c │ ├── wincrt1w.c │ └── ws2_32.def └── tcc-win32.txt ├── x86_64-asm.h ├── x86_64-gen.c └── x86_64-link.c /.gitmodules: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vowstar/k210-linux-nommu/HEAD/.gitmodules -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vowstar/k210-linux-nommu/HEAD/README.md -------------------------------------------------------------------------------- /busybox/.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vowstar/k210-linux-nommu/HEAD/busybox/.config -------------------------------------------------------------------------------- /busybox/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vowstar/k210-linux-nommu/HEAD/busybox/.gitignore -------------------------------------------------------------------------------- /busybox/.indent.pro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vowstar/k210-linux-nommu/HEAD/busybox/.indent.pro -------------------------------------------------------------------------------- /busybox/AUTHORS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vowstar/k210-linux-nommu/HEAD/busybox/AUTHORS -------------------------------------------------------------------------------- /busybox/Config.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vowstar/k210-linux-nommu/HEAD/busybox/Config.in -------------------------------------------------------------------------------- /busybox/INSTALL: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vowstar/k210-linux-nommu/HEAD/busybox/INSTALL -------------------------------------------------------------------------------- /busybox/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vowstar/k210-linux-nommu/HEAD/busybox/LICENSE -------------------------------------------------------------------------------- /busybox/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vowstar/k210-linux-nommu/HEAD/busybox/Makefile -------------------------------------------------------------------------------- /busybox/Makefile.custom: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vowstar/k210-linux-nommu/HEAD/busybox/Makefile.custom -------------------------------------------------------------------------------- /busybox/Makefile.flags: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vowstar/k210-linux-nommu/HEAD/busybox/Makefile.flags -------------------------------------------------------------------------------- /busybox/Makefile.help: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vowstar/k210-linux-nommu/HEAD/busybox/Makefile.help -------------------------------------------------------------------------------- /busybox/NOFORK_NOEXEC.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vowstar/k210-linux-nommu/HEAD/busybox/NOFORK_NOEXEC.sh -------------------------------------------------------------------------------- /busybox/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vowstar/k210-linux-nommu/HEAD/busybox/README -------------------------------------------------------------------------------- /busybox/TODO: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vowstar/k210-linux-nommu/HEAD/busybox/TODO -------------------------------------------------------------------------------- /busybox/TODO_unicode: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vowstar/k210-linux-nommu/HEAD/busybox/TODO_unicode -------------------------------------------------------------------------------- /busybox/applets/usage.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vowstar/k210-linux-nommu/HEAD/busybox/applets/usage.c -------------------------------------------------------------------------------- /busybox/archival/ar.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vowstar/k210-linux-nommu/HEAD/busybox/archival/ar.c -------------------------------------------------------------------------------- /busybox/archival/bzip2.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vowstar/k210-linux-nommu/HEAD/busybox/archival/bzip2.c -------------------------------------------------------------------------------- /busybox/archival/cpio.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vowstar/k210-linux-nommu/HEAD/busybox/archival/cpio.c -------------------------------------------------------------------------------- /busybox/archival/dpkg.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vowstar/k210-linux-nommu/HEAD/busybox/archival/dpkg.c -------------------------------------------------------------------------------- /busybox/archival/gzip.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vowstar/k210-linux-nommu/HEAD/busybox/archival/gzip.c -------------------------------------------------------------------------------- /busybox/archival/lzop.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vowstar/k210-linux-nommu/HEAD/busybox/archival/lzop.c -------------------------------------------------------------------------------- /busybox/archival/rpm.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vowstar/k210-linux-nommu/HEAD/busybox/archival/rpm.c -------------------------------------------------------------------------------- /busybox/archival/rpm.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vowstar/k210-linux-nommu/HEAD/busybox/archival/rpm.h -------------------------------------------------------------------------------- /busybox/archival/tar.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vowstar/k210-linux-nommu/HEAD/busybox/archival/tar.c -------------------------------------------------------------------------------- /busybox/archival/unzip.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vowstar/k210-linux-nommu/HEAD/busybox/archival/unzip.c -------------------------------------------------------------------------------- /busybox/coreutils/cat.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vowstar/k210-linux-nommu/HEAD/busybox/coreutils/cat.c -------------------------------------------------------------------------------- /busybox/coreutils/comm.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vowstar/k210-linux-nommu/HEAD/busybox/coreutils/comm.c -------------------------------------------------------------------------------- /busybox/coreutils/cp.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vowstar/k210-linux-nommu/HEAD/busybox/coreutils/cp.c -------------------------------------------------------------------------------- /busybox/coreutils/cut.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vowstar/k210-linux-nommu/HEAD/busybox/coreutils/cut.c -------------------------------------------------------------------------------- /busybox/coreutils/date.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vowstar/k210-linux-nommu/HEAD/busybox/coreutils/date.c -------------------------------------------------------------------------------- /busybox/coreutils/dd.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vowstar/k210-linux-nommu/HEAD/busybox/coreutils/dd.c -------------------------------------------------------------------------------- /busybox/coreutils/df.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vowstar/k210-linux-nommu/HEAD/busybox/coreutils/df.c -------------------------------------------------------------------------------- /busybox/coreutils/du.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vowstar/k210-linux-nommu/HEAD/busybox/coreutils/du.c -------------------------------------------------------------------------------- /busybox/coreutils/echo.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vowstar/k210-linux-nommu/HEAD/busybox/coreutils/echo.c -------------------------------------------------------------------------------- /busybox/coreutils/env.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vowstar/k210-linux-nommu/HEAD/busybox/coreutils/env.c -------------------------------------------------------------------------------- /busybox/coreutils/expr.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vowstar/k210-linux-nommu/HEAD/busybox/coreutils/expr.c -------------------------------------------------------------------------------- /busybox/coreutils/fold.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vowstar/k210-linux-nommu/HEAD/busybox/coreutils/fold.c -------------------------------------------------------------------------------- /busybox/coreutils/head.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vowstar/k210-linux-nommu/HEAD/busybox/coreutils/head.c -------------------------------------------------------------------------------- /busybox/coreutils/id.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vowstar/k210-linux-nommu/HEAD/busybox/coreutils/id.c -------------------------------------------------------------------------------- /busybox/coreutils/link.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vowstar/k210-linux-nommu/HEAD/busybox/coreutils/link.c -------------------------------------------------------------------------------- /busybox/coreutils/ln.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vowstar/k210-linux-nommu/HEAD/busybox/coreutils/ln.c -------------------------------------------------------------------------------- /busybox/coreutils/ls.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vowstar/k210-linux-nommu/HEAD/busybox/coreutils/ls.c -------------------------------------------------------------------------------- /busybox/coreutils/mv.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vowstar/k210-linux-nommu/HEAD/busybox/coreutils/mv.c -------------------------------------------------------------------------------- /busybox/coreutils/nice.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vowstar/k210-linux-nommu/HEAD/busybox/coreutils/nice.c -------------------------------------------------------------------------------- /busybox/coreutils/nl.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vowstar/k210-linux-nommu/HEAD/busybox/coreutils/nl.c -------------------------------------------------------------------------------- /busybox/coreutils/od.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vowstar/k210-linux-nommu/HEAD/busybox/coreutils/od.c -------------------------------------------------------------------------------- /busybox/coreutils/pwd.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vowstar/k210-linux-nommu/HEAD/busybox/coreutils/pwd.c -------------------------------------------------------------------------------- /busybox/coreutils/rm.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vowstar/k210-linux-nommu/HEAD/busybox/coreutils/rm.c -------------------------------------------------------------------------------- /busybox/coreutils/seq.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vowstar/k210-linux-nommu/HEAD/busybox/coreutils/seq.c -------------------------------------------------------------------------------- /busybox/coreutils/shuf.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vowstar/k210-linux-nommu/HEAD/busybox/coreutils/shuf.c -------------------------------------------------------------------------------- /busybox/coreutils/sort.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vowstar/k210-linux-nommu/HEAD/busybox/coreutils/sort.c -------------------------------------------------------------------------------- /busybox/coreutils/stat.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vowstar/k210-linux-nommu/HEAD/busybox/coreutils/stat.c -------------------------------------------------------------------------------- /busybox/coreutils/stty.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vowstar/k210-linux-nommu/HEAD/busybox/coreutils/stty.c -------------------------------------------------------------------------------- /busybox/coreutils/sum.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vowstar/k210-linux-nommu/HEAD/busybox/coreutils/sum.c -------------------------------------------------------------------------------- /busybox/coreutils/sync.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vowstar/k210-linux-nommu/HEAD/busybox/coreutils/sync.c -------------------------------------------------------------------------------- /busybox/coreutils/tac.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vowstar/k210-linux-nommu/HEAD/busybox/coreutils/tac.c -------------------------------------------------------------------------------- /busybox/coreutils/tail.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vowstar/k210-linux-nommu/HEAD/busybox/coreutils/tail.c -------------------------------------------------------------------------------- /busybox/coreutils/tee.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vowstar/k210-linux-nommu/HEAD/busybox/coreutils/tee.c -------------------------------------------------------------------------------- /busybox/coreutils/test.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vowstar/k210-linux-nommu/HEAD/busybox/coreutils/test.c -------------------------------------------------------------------------------- /busybox/coreutils/tr.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vowstar/k210-linux-nommu/HEAD/busybox/coreutils/tr.c -------------------------------------------------------------------------------- /busybox/coreutils/true.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vowstar/k210-linux-nommu/HEAD/busybox/coreutils/true.c -------------------------------------------------------------------------------- /busybox/coreutils/tty.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vowstar/k210-linux-nommu/HEAD/busybox/coreutils/tty.c -------------------------------------------------------------------------------- /busybox/coreutils/uniq.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vowstar/k210-linux-nommu/HEAD/busybox/coreutils/uniq.c -------------------------------------------------------------------------------- /busybox/coreutils/wc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vowstar/k210-linux-nommu/HEAD/busybox/coreutils/wc.c -------------------------------------------------------------------------------- /busybox/coreutils/who.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vowstar/k210-linux-nommu/HEAD/busybox/coreutils/who.c -------------------------------------------------------------------------------- /busybox/coreutils/yes.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vowstar/k210-linux-nommu/HEAD/busybox/coreutils/yes.c -------------------------------------------------------------------------------- /busybox/docs/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vowstar/k210-linux-nommu/HEAD/busybox/docs/.gitignore -------------------------------------------------------------------------------- /busybox/docs/cgi/cl.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vowstar/k210-linux-nommu/HEAD/busybox/docs/cgi/cl.html -------------------------------------------------------------------------------- /busybox/docs/cgi/in.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vowstar/k210-linux-nommu/HEAD/busybox/docs/cgi/in.html -------------------------------------------------------------------------------- /busybox/docs/ctty.htm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vowstar/k210-linux-nommu/HEAD/busybox/docs/ctty.htm -------------------------------------------------------------------------------- /busybox/docs/mdev.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vowstar/k210-linux-nommu/HEAD/busybox/docs/mdev.txt -------------------------------------------------------------------------------- /busybox/docs/sigint.htm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vowstar/k210-linux-nommu/HEAD/busybox/docs/sigint.htm -------------------------------------------------------------------------------- /busybox/docs/tar_pax.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vowstar/k210-linux-nommu/HEAD/busybox/docs/tar_pax.txt -------------------------------------------------------------------------------- /busybox/docs/tcp.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vowstar/k210-linux-nommu/HEAD/busybox/docs/tcp.txt -------------------------------------------------------------------------------- /busybox/docs/unicode.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vowstar/k210-linux-nommu/HEAD/busybox/docs/unicode.txt -------------------------------------------------------------------------------- /busybox/e2fsprogs/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vowstar/k210-linux-nommu/HEAD/busybox/e2fsprogs/README -------------------------------------------------------------------------------- /busybox/e2fsprogs/fsck.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vowstar/k210-linux-nommu/HEAD/busybox/e2fsprogs/fsck.c -------------------------------------------------------------------------------- /busybox/editors/awk.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vowstar/k210-linux-nommu/HEAD/busybox/editors/awk.c -------------------------------------------------------------------------------- /busybox/editors/cmp.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vowstar/k210-linux-nommu/HEAD/busybox/editors/cmp.c -------------------------------------------------------------------------------- /busybox/editors/diff.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vowstar/k210-linux-nommu/HEAD/busybox/editors/diff.c -------------------------------------------------------------------------------- /busybox/editors/ed.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vowstar/k210-linux-nommu/HEAD/busybox/editors/ed.c -------------------------------------------------------------------------------- /busybox/editors/patch.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vowstar/k210-linux-nommu/HEAD/busybox/editors/patch.c -------------------------------------------------------------------------------- /busybox/editors/sed.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vowstar/k210-linux-nommu/HEAD/busybox/editors/sed.c -------------------------------------------------------------------------------- /busybox/editors/vi.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vowstar/k210-linux-nommu/HEAD/busybox/editors/vi.c -------------------------------------------------------------------------------- /busybox/examples/depmod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vowstar/k210-linux-nommu/HEAD/busybox/examples/depmod -------------------------------------------------------------------------------- /busybox/examples/dnsd.conf: -------------------------------------------------------------------------------- 1 | thebox 192.168.1.5 2 | -------------------------------------------------------------------------------- /busybox/examples/inittab: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vowstar/k210-linux-nommu/HEAD/busybox/examples/inittab -------------------------------------------------------------------------------- /busybox/examples/undeb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vowstar/k210-linux-nommu/HEAD/busybox/examples/undeb -------------------------------------------------------------------------------- /busybox/examples/unrpm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vowstar/k210-linux-nommu/HEAD/busybox/examples/unrpm -------------------------------------------------------------------------------- /busybox/examples/var_service/dhcp_if/log/run: -------------------------------------------------------------------------------- 1 | #!/bin/sh 2 | exec std_service_logger 3 | -------------------------------------------------------------------------------- /busybox/examples/var_service/dhcpd_if/log/run: -------------------------------------------------------------------------------- 1 | #!/bin/sh 2 | exec std_service_logger 3 | -------------------------------------------------------------------------------- /busybox/examples/var_service/dnsmasq/log/run: -------------------------------------------------------------------------------- 1 | #!/bin/sh 2 | exec std_service_logger 3 | -------------------------------------------------------------------------------- /busybox/examples/var_service/ftpd/log/run: -------------------------------------------------------------------------------- 1 | #!/bin/sh 2 | exec std_service_logger 3 | -------------------------------------------------------------------------------- /busybox/examples/var_service/httpd/log/run: -------------------------------------------------------------------------------- 1 | #!/bin/sh 2 | exec std_service_logger 3 | -------------------------------------------------------------------------------- /busybox/examples/var_service/ifplugd_if/log/run: -------------------------------------------------------------------------------- 1 | #!/bin/sh 2 | exec std_service_logger 3 | -------------------------------------------------------------------------------- /busybox/examples/var_service/inetd/log/run: -------------------------------------------------------------------------------- 1 | #!/bin/sh 2 | exec std_service_logger 3 | -------------------------------------------------------------------------------- /busybox/examples/var_service/ntpd/log/run: -------------------------------------------------------------------------------- 1 | #!/bin/sh 2 | exec std_service_logger 3 | -------------------------------------------------------------------------------- /busybox/examples/var_service/supplicant_if/log/run: -------------------------------------------------------------------------------- 1 | #!/bin/sh 2 | exec std_service_logger 3 | -------------------------------------------------------------------------------- /busybox/examples/var_service/tftpd/log/run: -------------------------------------------------------------------------------- 1 | #!/bin/sh 2 | exec std_service_logger 3 | -------------------------------------------------------------------------------- /busybox/examples/var_service/zcip_if/log/run: -------------------------------------------------------------------------------- 1 | #!/bin/sh 2 | exec std_service_logger 3 | -------------------------------------------------------------------------------- /busybox/findutils/find.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vowstar/k210-linux-nommu/HEAD/busybox/findutils/find.c -------------------------------------------------------------------------------- /busybox/findutils/grep.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vowstar/k210-linux-nommu/HEAD/busybox/findutils/grep.c -------------------------------------------------------------------------------- /busybox/include/ar.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vowstar/k210-linux-nommu/HEAD/busybox/include/ar.h -------------------------------------------------------------------------------- /busybox/include/dump.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vowstar/k210-linux-nommu/HEAD/busybox/include/dump.h -------------------------------------------------------------------------------- /busybox/include/grp_.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vowstar/k210-linux-nommu/HEAD/busybox/include/grp_.h -------------------------------------------------------------------------------- /busybox/include/libbb.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vowstar/k210-linux-nommu/HEAD/busybox/include/libbb.h -------------------------------------------------------------------------------- /busybox/include/pwd_.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vowstar/k210-linux-nommu/HEAD/busybox/include/pwd_.h -------------------------------------------------------------------------------- /busybox/include/rtc_.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vowstar/k210-linux-nommu/HEAD/busybox/include/rtc_.h -------------------------------------------------------------------------------- /busybox/include/xregex.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vowstar/k210-linux-nommu/HEAD/busybox/include/xregex.h -------------------------------------------------------------------------------- /busybox/init/Config.src: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vowstar/k210-linux-nommu/HEAD/busybox/init/Config.src -------------------------------------------------------------------------------- /busybox/init/Kbuild.src: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vowstar/k210-linux-nommu/HEAD/busybox/init/Kbuild.src -------------------------------------------------------------------------------- /busybox/init/halt.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vowstar/k210-linux-nommu/HEAD/busybox/init/halt.c -------------------------------------------------------------------------------- /busybox/init/init.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vowstar/k210-linux-nommu/HEAD/busybox/init/init.c -------------------------------------------------------------------------------- /busybox/init/reboot.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vowstar/k210-linux-nommu/HEAD/busybox/init/reboot.h -------------------------------------------------------------------------------- /busybox/libbb/Config.src: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vowstar/k210-linux-nommu/HEAD/busybox/libbb/Config.src -------------------------------------------------------------------------------- /busybox/libbb/Kbuild.src: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vowstar/k210-linux-nommu/HEAD/busybox/libbb/Kbuild.src -------------------------------------------------------------------------------- /busybox/libbb/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vowstar/k210-linux-nommu/HEAD/busybox/libbb/README -------------------------------------------------------------------------------- /busybox/libbb/bb_cat.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vowstar/k210-linux-nommu/HEAD/busybox/libbb/bb_cat.c -------------------------------------------------------------------------------- /busybox/libbb/bb_pwd.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vowstar/k210-linux-nommu/HEAD/busybox/libbb/bb_pwd.c -------------------------------------------------------------------------------- /busybox/libbb/bb_qsort.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vowstar/k210-linux-nommu/HEAD/busybox/libbb/bb_qsort.c -------------------------------------------------------------------------------- /busybox/libbb/bbunit.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vowstar/k210-linux-nommu/HEAD/busybox/libbb/bbunit.c -------------------------------------------------------------------------------- /busybox/libbb/chomp.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vowstar/k210-linux-nommu/HEAD/busybox/libbb/chomp.c -------------------------------------------------------------------------------- /busybox/libbb/copyfd.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vowstar/k210-linux-nommu/HEAD/busybox/libbb/copyfd.c -------------------------------------------------------------------------------- /busybox/libbb/crc32.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vowstar/k210-linux-nommu/HEAD/busybox/libbb/crc32.c -------------------------------------------------------------------------------- /busybox/libbb/dump.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vowstar/k210-linux-nommu/HEAD/busybox/libbb/dump.c -------------------------------------------------------------------------------- /busybox/libbb/duration.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vowstar/k210-linux-nommu/HEAD/busybox/libbb/duration.c -------------------------------------------------------------------------------- /busybox/libbb/getopt32.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vowstar/k210-linux-nommu/HEAD/busybox/libbb/getopt32.c -------------------------------------------------------------------------------- /busybox/libbb/getpty.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vowstar/k210-linux-nommu/HEAD/busybox/libbb/getpty.c -------------------------------------------------------------------------------- /busybox/libbb/in_ether.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vowstar/k210-linux-nommu/HEAD/busybox/libbb/in_ether.c -------------------------------------------------------------------------------- /busybox/libbb/isqrt.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vowstar/k210-linux-nommu/HEAD/busybox/libbb/isqrt.c -------------------------------------------------------------------------------- /busybox/libbb/lineedit.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vowstar/k210-linux-nommu/HEAD/busybox/libbb/lineedit.c -------------------------------------------------------------------------------- /busybox/libbb/llist.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vowstar/k210-linux-nommu/HEAD/busybox/libbb/llist.c -------------------------------------------------------------------------------- /busybox/libbb/logenv.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vowstar/k210-linux-nommu/HEAD/busybox/libbb/logenv.c -------------------------------------------------------------------------------- /busybox/libbb/login.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vowstar/k210-linux-nommu/HEAD/busybox/libbb/login.c -------------------------------------------------------------------------------- /busybox/libbb/loop.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vowstar/k210-linux-nommu/HEAD/busybox/libbb/loop.c -------------------------------------------------------------------------------- /busybox/libbb/makedev.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vowstar/k210-linux-nommu/HEAD/busybox/libbb/makedev.c -------------------------------------------------------------------------------- /busybox/libbb/messages.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vowstar/k210-linux-nommu/HEAD/busybox/libbb/messages.c -------------------------------------------------------------------------------- /busybox/libbb/mtab.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vowstar/k210-linux-nommu/HEAD/busybox/libbb/mtab.c -------------------------------------------------------------------------------- /busybox/libbb/nuke_str.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vowstar/k210-linux-nommu/HEAD/busybox/libbb/nuke_str.c -------------------------------------------------------------------------------- /busybox/libbb/obscure.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vowstar/k210-linux-nommu/HEAD/busybox/libbb/obscure.c -------------------------------------------------------------------------------- /busybox/libbb/pidfile.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vowstar/k210-linux-nommu/HEAD/busybox/libbb/pidfile.c -------------------------------------------------------------------------------- /busybox/libbb/platform.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vowstar/k210-linux-nommu/HEAD/busybox/libbb/platform.c -------------------------------------------------------------------------------- /busybox/libbb/procps.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vowstar/k210-linux-nommu/HEAD/busybox/libbb/procps.c -------------------------------------------------------------------------------- /busybox/libbb/progress.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vowstar/k210-linux-nommu/HEAD/busybox/libbb/progress.c -------------------------------------------------------------------------------- /busybox/libbb/read.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vowstar/k210-linux-nommu/HEAD/busybox/libbb/read.c -------------------------------------------------------------------------------- /busybox/libbb/read_key.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vowstar/k210-linux-nommu/HEAD/busybox/libbb/read_key.c -------------------------------------------------------------------------------- /busybox/libbb/replace.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vowstar/k210-linux-nommu/HEAD/busybox/libbb/replace.c -------------------------------------------------------------------------------- /busybox/libbb/rtc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vowstar/k210-linux-nommu/HEAD/busybox/libbb/rtc.c -------------------------------------------------------------------------------- /busybox/libbb/signals.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vowstar/k210-linux-nommu/HEAD/busybox/libbb/signals.c -------------------------------------------------------------------------------- /busybox/libbb/strrstr.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vowstar/k210-linux-nommu/HEAD/busybox/libbb/strrstr.c -------------------------------------------------------------------------------- /busybox/libbb/sysconf.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vowstar/k210-linux-nommu/HEAD/busybox/libbb/sysconf.c -------------------------------------------------------------------------------- /busybox/libbb/time.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vowstar/k210-linux-nommu/HEAD/busybox/libbb/time.c -------------------------------------------------------------------------------- /busybox/libbb/trim.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vowstar/k210-linux-nommu/HEAD/busybox/libbb/trim.c -------------------------------------------------------------------------------- /busybox/libbb/ubi.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vowstar/k210-linux-nommu/HEAD/busybox/libbb/ubi.c -------------------------------------------------------------------------------- /busybox/libbb/udp_io.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vowstar/k210-linux-nommu/HEAD/busybox/libbb/udp_io.c -------------------------------------------------------------------------------- /busybox/libbb/unicode.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vowstar/k210-linux-nommu/HEAD/busybox/libbb/unicode.c -------------------------------------------------------------------------------- /busybox/libbb/utmp.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vowstar/k210-linux-nommu/HEAD/busybox/libbb/utmp.c -------------------------------------------------------------------------------- /busybox/libbb/uuencode.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vowstar/k210-linux-nommu/HEAD/busybox/libbb/uuencode.c -------------------------------------------------------------------------------- /busybox/libbb/wfopen.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vowstar/k210-linux-nommu/HEAD/busybox/libbb/wfopen.c -------------------------------------------------------------------------------- /busybox/libbb/write.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vowstar/k210-linux-nommu/HEAD/busybox/libbb/write.c -------------------------------------------------------------------------------- /busybox/libbb/xatonum.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vowstar/k210-linux-nommu/HEAD/busybox/libbb/xatonum.c -------------------------------------------------------------------------------- /busybox/libbb/xconnect.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vowstar/k210-linux-nommu/HEAD/busybox/libbb/xconnect.c -------------------------------------------------------------------------------- /busybox/libbb/xfuncs.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vowstar/k210-linux-nommu/HEAD/busybox/libbb/xfuncs.c -------------------------------------------------------------------------------- /busybox/libbb/xgetcwd.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vowstar/k210-linux-nommu/HEAD/busybox/libbb/xgetcwd.c -------------------------------------------------------------------------------- /busybox/libbb/xregcomp.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vowstar/k210-linux-nommu/HEAD/busybox/libbb/xregcomp.c -------------------------------------------------------------------------------- /busybox/loginutils/su.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vowstar/k210-linux-nommu/HEAD/busybox/loginutils/su.c -------------------------------------------------------------------------------- /busybox/mailutils/mail.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vowstar/k210-linux-nommu/HEAD/busybox/mailutils/mail.c -------------------------------------------------------------------------------- /busybox/mailutils/mail.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vowstar/k210-linux-nommu/HEAD/busybox/mailutils/mail.h -------------------------------------------------------------------------------- /busybox/miscutils/bc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vowstar/k210-linux-nommu/HEAD/busybox/miscutils/bc.c -------------------------------------------------------------------------------- /busybox/miscutils/beep.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vowstar/k210-linux-nommu/HEAD/busybox/miscutils/beep.c -------------------------------------------------------------------------------- /busybox/miscutils/chat.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vowstar/k210-linux-nommu/HEAD/busybox/miscutils/chat.c -------------------------------------------------------------------------------- /busybox/miscutils/dc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vowstar/k210-linux-nommu/HEAD/busybox/miscutils/dc.c -------------------------------------------------------------------------------- /busybox/miscutils/less.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vowstar/k210-linux-nommu/HEAD/busybox/miscutils/less.c -------------------------------------------------------------------------------- /busybox/miscutils/man.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vowstar/k210-linux-nommu/HEAD/busybox/miscutils/man.c -------------------------------------------------------------------------------- /busybox/miscutils/mt.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vowstar/k210-linux-nommu/HEAD/busybox/miscutils/mt.c -------------------------------------------------------------------------------- /busybox/miscutils/rx.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vowstar/k210-linux-nommu/HEAD/busybox/miscutils/rx.c -------------------------------------------------------------------------------- /busybox/miscutils/time.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vowstar/k210-linux-nommu/HEAD/busybox/miscutils/time.c -------------------------------------------------------------------------------- /busybox/miscutils/ts.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vowstar/k210-linux-nommu/HEAD/busybox/miscutils/ts.c -------------------------------------------------------------------------------- /busybox/modutils/lsmod.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vowstar/k210-linux-nommu/HEAD/busybox/modutils/lsmod.c -------------------------------------------------------------------------------- /busybox/modutils/rmmod.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vowstar/k210-linux-nommu/HEAD/busybox/modutils/rmmod.c -------------------------------------------------------------------------------- /busybox/networking/arp.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vowstar/k210-linux-nommu/HEAD/busybox/networking/arp.c -------------------------------------------------------------------------------- /busybox/networking/ip.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vowstar/k210-linux-nommu/HEAD/busybox/networking/ip.c -------------------------------------------------------------------------------- /busybox/networking/nc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vowstar/k210-linux-nommu/HEAD/busybox/networking/nc.c -------------------------------------------------------------------------------- /busybox/networking/tc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vowstar/k210-linux-nommu/HEAD/busybox/networking/tc.c -------------------------------------------------------------------------------- /busybox/networking/tls.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vowstar/k210-linux-nommu/HEAD/busybox/networking/tls.c -------------------------------------------------------------------------------- /busybox/networking/tls.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vowstar/k210-linux-nommu/HEAD/busybox/networking/tls.h -------------------------------------------------------------------------------- /busybox/printutils/lpd.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vowstar/k210-linux-nommu/HEAD/busybox/printutils/lpd.c -------------------------------------------------------------------------------- /busybox/printutils/lpr.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vowstar/k210-linux-nommu/HEAD/busybox/printutils/lpr.c -------------------------------------------------------------------------------- /busybox/procps/free.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vowstar/k210-linux-nommu/HEAD/busybox/procps/free.c -------------------------------------------------------------------------------- /busybox/procps/fuser.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vowstar/k210-linux-nommu/HEAD/busybox/procps/fuser.c -------------------------------------------------------------------------------- /busybox/procps/iostat.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vowstar/k210-linux-nommu/HEAD/busybox/procps/iostat.c -------------------------------------------------------------------------------- /busybox/procps/kill.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vowstar/k210-linux-nommu/HEAD/busybox/procps/kill.c -------------------------------------------------------------------------------- /busybox/procps/lsof.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vowstar/k210-linux-nommu/HEAD/busybox/procps/lsof.c -------------------------------------------------------------------------------- /busybox/procps/mpstat.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vowstar/k210-linux-nommu/HEAD/busybox/procps/mpstat.c -------------------------------------------------------------------------------- /busybox/procps/nmeter.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vowstar/k210-linux-nommu/HEAD/busybox/procps/nmeter.c -------------------------------------------------------------------------------- /busybox/procps/pgrep.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vowstar/k210-linux-nommu/HEAD/busybox/procps/pgrep.c -------------------------------------------------------------------------------- /busybox/procps/pidof.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vowstar/k210-linux-nommu/HEAD/busybox/procps/pidof.c -------------------------------------------------------------------------------- /busybox/procps/pmap.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vowstar/k210-linux-nommu/HEAD/busybox/procps/pmap.c -------------------------------------------------------------------------------- /busybox/procps/ps.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vowstar/k210-linux-nommu/HEAD/busybox/procps/ps.c -------------------------------------------------------------------------------- /busybox/procps/ps.posix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vowstar/k210-linux-nommu/HEAD/busybox/procps/ps.posix -------------------------------------------------------------------------------- /busybox/procps/pstree.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vowstar/k210-linux-nommu/HEAD/busybox/procps/pstree.c -------------------------------------------------------------------------------- /busybox/procps/pwdx.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vowstar/k210-linux-nommu/HEAD/busybox/procps/pwdx.c -------------------------------------------------------------------------------- /busybox/procps/smemcap.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vowstar/k210-linux-nommu/HEAD/busybox/procps/smemcap.c -------------------------------------------------------------------------------- /busybox/procps/sysctl.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vowstar/k210-linux-nommu/HEAD/busybox/procps/sysctl.c -------------------------------------------------------------------------------- /busybox/procps/top.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vowstar/k210-linux-nommu/HEAD/busybox/procps/top.c -------------------------------------------------------------------------------- /busybox/procps/uptime.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vowstar/k210-linux-nommu/HEAD/busybox/procps/uptime.c -------------------------------------------------------------------------------- /busybox/procps/watch.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vowstar/k210-linux-nommu/HEAD/busybox/procps/watch.c -------------------------------------------------------------------------------- /busybox/runit/Config.src: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vowstar/k210-linux-nommu/HEAD/busybox/runit/Config.src -------------------------------------------------------------------------------- /busybox/runit/Kbuild.src: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vowstar/k210-linux-nommu/HEAD/busybox/runit/Kbuild.src -------------------------------------------------------------------------------- /busybox/runit/chpst.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vowstar/k210-linux-nommu/HEAD/busybox/runit/chpst.c -------------------------------------------------------------------------------- /busybox/runit/runsv.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vowstar/k210-linux-nommu/HEAD/busybox/runit/runsv.c -------------------------------------------------------------------------------- /busybox/runit/runsvdir.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vowstar/k210-linux-nommu/HEAD/busybox/runit/runsvdir.c -------------------------------------------------------------------------------- /busybox/runit/sv.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vowstar/k210-linux-nommu/HEAD/busybox/runit/sv.c -------------------------------------------------------------------------------- /busybox/runit/svlogd.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vowstar/k210-linux-nommu/HEAD/busybox/runit/svlogd.c -------------------------------------------------------------------------------- /busybox/scripts/basic/.gitignore: -------------------------------------------------------------------------------- 1 | hash 2 | fixdep 3 | docproc 4 | split-include 5 | -------------------------------------------------------------------------------- /busybox/scripts/echo.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vowstar/k210-linux-nommu/HEAD/busybox/scripts/echo.c -------------------------------------------------------------------------------- /busybox/scripts/kconfig/lxdialog/.gitignore: -------------------------------------------------------------------------------- 1 | # 2 | # Generated files 3 | # 4 | lxdialog 5 | -------------------------------------------------------------------------------- /busybox/scripts/memusage: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vowstar/k210-linux-nommu/HEAD/busybox/scripts/memusage -------------------------------------------------------------------------------- /busybox/scripts/objsizes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vowstar/k210-linux-nommu/HEAD/busybox/scripts/objsizes -------------------------------------------------------------------------------- /busybox/scripts/showasm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vowstar/k210-linux-nommu/HEAD/busybox/scripts/showasm -------------------------------------------------------------------------------- /busybox/scripts/trylink: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vowstar/k210-linux-nommu/HEAD/busybox/scripts/trylink -------------------------------------------------------------------------------- /busybox/selinux/chcon.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vowstar/k210-linux-nommu/HEAD/busybox/selinux/chcon.c -------------------------------------------------------------------------------- /busybox/selinux/runcon.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vowstar/k210-linux-nommu/HEAD/busybox/selinux/runcon.c -------------------------------------------------------------------------------- /busybox/shell/Config.src: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vowstar/k210-linux-nommu/HEAD/busybox/shell/Config.src -------------------------------------------------------------------------------- /busybox/shell/Kbuild.src: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vowstar/k210-linux-nommu/HEAD/busybox/shell/Kbuild.src -------------------------------------------------------------------------------- /busybox/shell/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vowstar/k210-linux-nommu/HEAD/busybox/shell/README -------------------------------------------------------------------------------- /busybox/shell/README.job: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vowstar/k210-linux-nommu/HEAD/busybox/shell/README.job -------------------------------------------------------------------------------- /busybox/shell/ash.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vowstar/k210-linux-nommu/HEAD/busybox/shell/ash.c -------------------------------------------------------------------------------- /busybox/shell/ash_test/ash-arith/arith-bash1.right: -------------------------------------------------------------------------------- 1 | 1 2 | 0 3 | -------------------------------------------------------------------------------- /busybox/shell/ash_test/ash-arith/arith_nested1.right: -------------------------------------------------------------------------------- 1 | 1 2 | -------------------------------------------------------------------------------- /busybox/shell/ash_test/ash-heredoc/heredoc1.right: -------------------------------------------------------------------------------- 1 | qwe 2 | asd 3 | 123 4 | 456 5 | Ok 6 | -------------------------------------------------------------------------------- /busybox/shell/ash_test/ash-heredoc/heredoc2.right: -------------------------------------------------------------------------------- 1 | bar 2 | bar 3 | -------------------------------------------------------------------------------- /busybox/shell/ash_test/ash-heredoc/heredoc4.right: -------------------------------------------------------------------------------- 1 | '$' 2 | -------------------------------------------------------------------------------- /busybox/shell/ash_test/ash-heredoc/heredoc6.right: -------------------------------------------------------------------------------- 1 | test 2 | OK:0 3 | -------------------------------------------------------------------------------- /busybox/shell/ash_test/ash-heredoc/heredoc6.tests: -------------------------------------------------------------------------------- 1 | eval 'cat <<- NOT 2 | test 3 | NOT' 4 | echo OK:$? 5 | -------------------------------------------------------------------------------- /busybox/shell/ash_test/ash-heredoc/heredoc7.right: -------------------------------------------------------------------------------- 1 | _ASBOX 2 | -------------------------------------------------------------------------------- /busybox/shell/ash_test/ash-heredoc/heredoc8.tests: -------------------------------------------------------------------------------- 1 | # ash used to SEGV on this: 2 | 3 | <-10qwertyuiop< 2 | Done 3 | -------------------------------------------------------------------------------- /busybox/shell/ash_test/ash-misc/pid.right: -------------------------------------------------------------------------------- 1 | 0 2 | -------------------------------------------------------------------------------- /busybox/shell/ash_test/ash-misc/return1.right: -------------------------------------------------------------------------------- 1 | Ok:0 2 | -------------------------------------------------------------------------------- /busybox/shell/ash_test/ash-misc/source1.right: -------------------------------------------------------------------------------- 1 | Sourced ok 2 | Done 3 | -------------------------------------------------------------------------------- /busybox/shell/ash_test/ash-misc/source2.right: -------------------------------------------------------------------------------- 1 | Done: 0 2 | -------------------------------------------------------------------------------- /busybox/shell/ash_test/ash-misc/source2.tests: -------------------------------------------------------------------------------- 1 | false 2 | . /dev/null 3 | echo Done: $? 4 | -------------------------------------------------------------------------------- /busybox/shell/ash_test/ash-misc/tickquote1.tests: -------------------------------------------------------------------------------- 1 | echo _`"pwd`_ 2 | -------------------------------------------------------------------------------- /busybox/shell/ash_test/ash-misc/unicode1.right: -------------------------------------------------------------------------------- 1 | 1 2 | 1 3 | Ok 4 | -------------------------------------------------------------------------------- /busybox/shell/ash_test/ash-misc/until1.right: -------------------------------------------------------------------------------- 1 | 1 2 | 1 3 | Ok:0 4 | -------------------------------------------------------------------------------- /busybox/shell/ash_test/ash-misc/wait4.right: -------------------------------------------------------------------------------- 1 | Three:3 2 | -------------------------------------------------------------------------------- /busybox/shell/ash_test/ash-misc/wait5.right: -------------------------------------------------------------------------------- 1 | Zero:0 2 | Three:3 3 | -------------------------------------------------------------------------------- /busybox/shell/ash_test/ash-misc/wait6.right: -------------------------------------------------------------------------------- 1 | 0 2 | 3 3 | -------------------------------------------------------------------------------- /busybox/shell/ash_test/ash-misc/while1.right: -------------------------------------------------------------------------------- 1 | OK:0 2 | -------------------------------------------------------------------------------- /busybox/shell/ash_test/ash-misc/while2.right: -------------------------------------------------------------------------------- 1 | Hello 2 | OK:0 3 | -------------------------------------------------------------------------------- /busybox/shell/ash_test/ash-misc/while4.right: -------------------------------------------------------------------------------- 1 | Ok:0 2 | -------------------------------------------------------------------------------- /busybox/shell/ash_test/ash-misc/while_in_subshell.right: -------------------------------------------------------------------------------- 1 | OK: 0 2 | -------------------------------------------------------------------------------- /busybox/shell/ash_test/ash-parsing/and_or_and_backgrounding.right: -------------------------------------------------------------------------------- 1 | First 2 | Second 3 | Third 4 | Done 5 | -------------------------------------------------------------------------------- /busybox/shell/ash_test/ash-parsing/argv0.right: -------------------------------------------------------------------------------- 1 | OK 2 | -------------------------------------------------------------------------------- /busybox/shell/ash_test/ash-parsing/bkslash_eof1.right: -------------------------------------------------------------------------------- 1 | ok\ 2 | -------------------------------------------------------------------------------- /busybox/shell/ash_test/ash-parsing/bkslash_eof1.tests: -------------------------------------------------------------------------------- 1 | eval 'echo ok\' 2 | -------------------------------------------------------------------------------- /busybox/shell/ash_test/ash-parsing/bkslash_newline1.right: -------------------------------------------------------------------------------- 1 | and1 2 | and2 3 | or1 4 | ok 5 | -------------------------------------------------------------------------------- /busybox/shell/ash_test/ash-parsing/bkslash_newline2.right: -------------------------------------------------------------------------------- 1 | Line with one backslash: 2 | \ 3 | 4 | Ok:0 5 | -------------------------------------------------------------------------------- /busybox/shell/ash_test/ash-parsing/bkslash_newline3.right: -------------------------------------------------------------------------------- 1 | a:[a] 2 | -------------------------------------------------------------------------------- /busybox/shell/ash_test/ash-parsing/eol1.right: -------------------------------------------------------------------------------- 1 | Done:0 2 | -------------------------------------------------------------------------------- /busybox/shell/ash_test/ash-parsing/escape1.right: -------------------------------------------------------------------------------- 1 | \ 2 | a\b 3 | \\ 4 | c\\d 5 | -------------------------------------------------------------------------------- /busybox/shell/ash_test/ash-parsing/escape4.right: -------------------------------------------------------------------------------- 1 | Ok 2 | End 3 | -------------------------------------------------------------------------------- /busybox/shell/ash_test/ash-parsing/group1.right: -------------------------------------------------------------------------------- 1 | word} } 2 | -------------------------------------------------------------------------------- /busybox/shell/ash_test/ash-parsing/group1.tests: -------------------------------------------------------------------------------- 1 | { echo word} }; } 2 | -------------------------------------------------------------------------------- /busybox/shell/ash_test/ash-parsing/group2.right: -------------------------------------------------------------------------------- 1 | got TERM 2 | Done: 0 3 | -------------------------------------------------------------------------------- /busybox/shell/ash_test/ash-parsing/noeol.right: -------------------------------------------------------------------------------- 1 | HELLO 2 | -------------------------------------------------------------------------------- /busybox/shell/ash_test/ash-parsing/noeol.tests: -------------------------------------------------------------------------------- 1 | # next line has no EOL! 2 | echo HELLO -------------------------------------------------------------------------------- /busybox/shell/ash_test/ash-parsing/noeol2.right: -------------------------------------------------------------------------------- 1 | 1 2 | -------------------------------------------------------------------------------- /busybox/shell/ash_test/ash-parsing/noeol3.tests: -------------------------------------------------------------------------------- 1 | # last line has no EOL! 2 | echo "unterminated -------------------------------------------------------------------------------- /busybox/shell/ash_test/ash-parsing/quote1.right: -------------------------------------------------------------------------------- 1 | '1' 2 | -------------------------------------------------------------------------------- /busybox/shell/ash_test/ash-parsing/quote1.tests: -------------------------------------------------------------------------------- 1 | a=1 2 | echo "'$a'" 3 | -------------------------------------------------------------------------------- /busybox/shell/ash_test/ash-parsing/quote2.right: -------------------------------------------------------------------------------- 1 | >1 2 | -------------------------------------------------------------------------------- /busybox/shell/ash_test/ash-parsing/quote2.tests: -------------------------------------------------------------------------------- 1 | a=1 2 | echo ">$a" 3 | -------------------------------------------------------------------------------- /busybox/shell/ash_test/ash-parsing/quote4.right: -------------------------------------------------------------------------------- 1 | a b 2 | -------------------------------------------------------------------------------- /busybox/shell/ash_test/ash-parsing/quote4.tests: -------------------------------------------------------------------------------- 1 | a_b='a b' 2 | echo "$a_b" 3 | -------------------------------------------------------------------------------- /busybox/shell/ash_test/ash-parsing/starquoted3.right: -------------------------------------------------------------------------------- 1 | 2 | <> 3 | -------------------------------------------------------------------------------- /busybox/shell/ash_test/ash-psubst/tick.right: -------------------------------------------------------------------------------- 1 | 1 2 | 1 3 | -------------------------------------------------------------------------------- /busybox/shell/ash_test/ash-psubst/tick2.right: -------------------------------------------------------------------------------- 1 | BAZ 2 | -------------------------------------------------------------------------------- /busybox/shell/ash_test/ash-quoting/bkslash_case2.right: -------------------------------------------------------------------------------- 1 | ok1 2 | ok2 3 | Ok:0 4 | -------------------------------------------------------------------------------- /busybox/shell/ash_test/ash-quoting/case_glob1.right: -------------------------------------------------------------------------------- 1 | s 2 | -------------------------------------------------------------------------------- /busybox/shell/ash_test/ash-quoting/dollar_repl_slash_bash2.right: -------------------------------------------------------------------------------- 1 | \/a\/bc\/def\/file 2 | -------------------------------------------------------------------------------- /busybox/shell/ash_test/ash-quoting/quote_in_varexp1.right: -------------------------------------------------------------------------------- 1 | '' 2 | Ok:0 3 | -------------------------------------------------------------------------------- /busybox/shell/ash_test/ash-quoting/squote_in_varexp3.right: -------------------------------------------------------------------------------- 1 | B 2 | -------------------------------------------------------------------------------- /busybox/shell/ash_test/ash-quoting/squote_in_varexp3.tests: -------------------------------------------------------------------------------- 1 | x=\'B; echo "${x#\'}" 2 | -------------------------------------------------------------------------------- /busybox/shell/ash_test/ash-read/read_SIGCHLD.right: -------------------------------------------------------------------------------- 1 | x='Ok' 2 | exitcode:0 3 | -------------------------------------------------------------------------------- /busybox/shell/ash_test/ash-redir/redir.right: -------------------------------------------------------------------------------- 1 | ash: write error: Bad file descriptor 2 | TEST 3 | -------------------------------------------------------------------------------- /busybox/shell/ash_test/ash-redir/redir2.right: -------------------------------------------------------------------------------- 1 | OK 2 | -------------------------------------------------------------------------------- /busybox/shell/ash_test/ash-redir/redir4.right: -------------------------------------------------------------------------------- 1 | OK 2 | -------------------------------------------------------------------------------- /busybox/shell/ash_test/ash-redir/redir6.right: -------------------------------------------------------------------------------- 1 | Hello 2 | OK 3 | -------------------------------------------------------------------------------- /busybox/shell/ash_test/ash-redir/redir7.right: -------------------------------------------------------------------------------- 1 | Ok 2 | Ok 3 | Done 4 | -------------------------------------------------------------------------------- /busybox/shell/ash_test/ash-redir/redir8.right: -------------------------------------------------------------------------------- 1 | Ok 2 | Ok 3 | Done 4 | -------------------------------------------------------------------------------- /busybox/shell/ash_test/ash-redir/redir9.right: -------------------------------------------------------------------------------- 1 | Ok 2 | Done:0 3 | -------------------------------------------------------------------------------- /busybox/shell/ash_test/ash-redir/redir_escapednum.right: -------------------------------------------------------------------------------- 1 | Ok 2 | -------------------------------------------------------------------------------- /busybox/shell/ash_test/ash-redir/redir_escapednum.tests: -------------------------------------------------------------------------------- 1 | echo NOT SHOWN \2>/dev/null 2 | echo Ok 3 | -------------------------------------------------------------------------------- /busybox/shell/ash_test/ash-redir/redir_script.right: -------------------------------------------------------------------------------- 1 | Ok: script fd is not closed 2 | -------------------------------------------------------------------------------- /busybox/shell/ash_test/ash-signals/continue_and_trap1.right: -------------------------------------------------------------------------------- 1 | Exiting 2 | -------------------------------------------------------------------------------- /busybox/shell/ash_test/ash-signals/reap1.right: -------------------------------------------------------------------------------- 1 | Ok 2 | -------------------------------------------------------------------------------- /busybox/shell/ash_test/ash-signals/return_in_trap1.right: -------------------------------------------------------------------------------- 1 | a:2 2 | b:0 3 | Trap 4 | d:3 5 | -------------------------------------------------------------------------------- /busybox/shell/ash_test/ash-signals/save-ret.right: -------------------------------------------------------------------------------- 1 | YEAH 2 | 0 3 | -------------------------------------------------------------------------------- /busybox/shell/ash_test/ash-signals/sigint1.right: -------------------------------------------------------------------------------- 1 | Sending SIGINT to main shell PID 2 | -------------------------------------------------------------------------------- /busybox/shell/ash_test/ash-signals/signal6.right: -------------------------------------------------------------------------------- 1 | got TERM 2 | Done: 0 3 | -------------------------------------------------------------------------------- /busybox/shell/ash_test/ash-signals/signal7.right: -------------------------------------------------------------------------------- 1 | Bug detected: 0 2 | -------------------------------------------------------------------------------- /busybox/shell/ash_test/ash-signals/signal8.right: -------------------------------------------------------------------------------- 1 | Removing traps 2 | End of exit_func 3 | Done: 0 4 | -------------------------------------------------------------------------------- /busybox/shell/ash_test/ash-signals/signal9.right: -------------------------------------------------------------------------------- 1 | Removing traps 2 | End of exit_func 3 | Done: 0 4 | -------------------------------------------------------------------------------- /busybox/shell/ash_test/ash-signals/signal_read2.right: -------------------------------------------------------------------------------- 1 | Hangup 2 | Done:129 3 | -------------------------------------------------------------------------------- /busybox/shell/ash_test/ash-standalone/nofork_trashes_getopt.right: -------------------------------------------------------------------------------- 1 | 0 2 | -------------------------------------------------------------------------------- /busybox/shell/ash_test/ash-standalone/var_standalone1.right: -------------------------------------------------------------------------------- 1 | Done: 1 2 | -------------------------------------------------------------------------------- /busybox/shell/ash_test/ash-vars/glob_and_vars.tests: -------------------------------------------------------------------------------- 1 | v=. 2 | echo $v/glob_and_vars.[tr]* 3 | -------------------------------------------------------------------------------- /busybox/shell/ash_test/ash-vars/param_subshell.right: -------------------------------------------------------------------------------- 1 | 1=1 2 | 2=2 3 | 3=3 4 | 4=4 5 | 5=5 6 | 6=6 7 | 7=7 8 | -------------------------------------------------------------------------------- /busybox/shell/ash_test/ash-vars/var-do-not-collapse-arithmetic-expansion-at-parse-time.right: -------------------------------------------------------------------------------- 1 | 12 2 | 9 3 | -------------------------------------------------------------------------------- /busybox/shell/ash_test/ash-vars/var-do-not-expand-tilde-in-parameter-expansion-in-quotes.right: -------------------------------------------------------------------------------- 1 | ~root 2 | -------------------------------------------------------------------------------- /busybox/shell/ash_test/ash-vars/var-expand-tilde-in-parameter-expansion.right: -------------------------------------------------------------------------------- 1 | :/root 2 | -------------------------------------------------------------------------------- /busybox/shell/ash_test/ash-vars/var-pattern-replacement-in-parameter-expansion-1.right: -------------------------------------------------------------------------------- 1 | a_\_z_c 2 | -------------------------------------------------------------------------------- /busybox/shell/ash_test/ash-vars/var-pattern-replacement-in-parameter-expansion-2.right: -------------------------------------------------------------------------------- 1 | ax/yc 2 | -------------------------------------------------------------------------------- /busybox/shell/ash_test/ash-vars/var-pattern-replacement-in-parameter-expansion-3.right: -------------------------------------------------------------------------------- 1 | axcabc 2 | -------------------------------------------------------------------------------- /busybox/shell/ash_test/ash-vars/var-pattern-replacement-in-parameter-expansion-4.right: -------------------------------------------------------------------------------- 1 | axcaxc 2 | -------------------------------------------------------------------------------- /busybox/shell/ash_test/ash-vars/var-pattern-replacement-in-parameter-expansion-5.right: -------------------------------------------------------------------------------- 1 | axc 2 | -------------------------------------------------------------------------------- /busybox/shell/ash_test/ash-vars/var-runtime-quote-detection.right: -------------------------------------------------------------------------------- 1 | <> 2 | -------------------------------------------------------------------------------- /busybox/shell/ash_test/ash-vars/var-runtime-quote-detection.tests: -------------------------------------------------------------------------------- 1 | foo=\\ echo "<${foo#[\\]}>" 2 | -------------------------------------------------------------------------------- /busybox/shell/ash_test/ash-vars/var-utf8-length.right: -------------------------------------------------------------------------------- 1 | 26 2 | -------------------------------------------------------------------------------- /busybox/shell/ash_test/ash-vars/var3.right: -------------------------------------------------------------------------------- 1 | 1 2 | 1 3 | 4 | 5 | 0 6 | -------------------------------------------------------------------------------- /busybox/shell/ash_test/ash-vars/var4.right: -------------------------------------------------------------------------------- 1 | bus/usb/1/2 2 | -------------------------------------------------------------------------------- /busybox/shell/ash_test/ash-vars/var_bash7.right: -------------------------------------------------------------------------------- 1 | B 2 | -------------------------------------------------------------------------------- /busybox/shell/ash_test/ash-vars/var_bash7.tests: -------------------------------------------------------------------------------- 1 | x=AB; echo "${x#$'\x41'}" 2 | -------------------------------------------------------------------------------- /busybox/shell/ash_test/ash-vars/var_bash_repl_empty_pattern.right: -------------------------------------------------------------------------------- 1 | v 2 | Ok:0 3 | -------------------------------------------------------------------------------- /busybox/shell/ash_test/ash-vars/var_bash_repl_empty_var.right: -------------------------------------------------------------------------------- 1 | 2 | Ok:0 3 | -------------------------------------------------------------------------------- /busybox/shell/ash_test/ash-vars/var_leaks.right: -------------------------------------------------------------------------------- 1 | OK 2 | -------------------------------------------------------------------------------- /busybox/shell/ash_test/ash-vars/var_wordsplit_ifs5.right: -------------------------------------------------------------------------------- 1 | Zero:0 2 | -------------------------------------------------------------------------------- /busybox/shell/brace.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vowstar/k210-linux-nommu/HEAD/busybox/shell/brace.txt -------------------------------------------------------------------------------- /busybox/shell/cttyhack.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vowstar/k210-linux-nommu/HEAD/busybox/shell/cttyhack.c -------------------------------------------------------------------------------- /busybox/shell/hush.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vowstar/k210-linux-nommu/HEAD/busybox/shell/hush.c -------------------------------------------------------------------------------- /busybox/shell/hush_test/.gitignore: -------------------------------------------------------------------------------- 1 | *.fail 2 | *.xx 3 | 4 | /hush 5 | -------------------------------------------------------------------------------- /busybox/shell/hush_test/hush-arith/arith_nested1.right: -------------------------------------------------------------------------------- 1 | 1 2 | -------------------------------------------------------------------------------- /busybox/shell/hush_test/hush-heredoc/heredoc1.right: -------------------------------------------------------------------------------- 1 | qwe 2 | asd 3 | 123 4 | 456 5 | Ok 6 | -------------------------------------------------------------------------------- /busybox/shell/hush_test/hush-heredoc/heredoc2.right: -------------------------------------------------------------------------------- 1 | bar 2 | bar 3 | -------------------------------------------------------------------------------- /busybox/shell/hush_test/hush-heredoc/heredoc4.right: -------------------------------------------------------------------------------- 1 | '$' 2 | -------------------------------------------------------------------------------- /busybox/shell/hush_test/hush-heredoc/heredoc6.right: -------------------------------------------------------------------------------- 1 | test 2 | OK:0 3 | -------------------------------------------------------------------------------- /busybox/shell/hush_test/hush-heredoc/heredoc6.tests: -------------------------------------------------------------------------------- 1 | eval 'cat <<- NOT 2 | test 3 | NOT' 4 | echo OK:$? 5 | -------------------------------------------------------------------------------- /busybox/shell/hush_test/hush-heredoc/heredoc7.right: -------------------------------------------------------------------------------- 1 | _ASBOX 2 | -------------------------------------------------------------------------------- /busybox/shell/hush_test/hush-heredoc/heredoc8.right: -------------------------------------------------------------------------------- 1 | hush: syntax error at 'then' 2 | -------------------------------------------------------------------------------- /busybox/shell/hush_test/hush-heredoc/heredoc8.tests: -------------------------------------------------------------------------------- 1 | # ash used to SEGV on this: 2 | 3 | <-10qwertyuiop< 2 | Done 3 | -------------------------------------------------------------------------------- /busybox/shell/hush_test/hush-misc/pid.right: -------------------------------------------------------------------------------- 1 | 0 2 | -------------------------------------------------------------------------------- /busybox/shell/hush_test/hush-misc/return1.right: -------------------------------------------------------------------------------- 1 | Ok:0 2 | -------------------------------------------------------------------------------- /busybox/shell/hush_test/hush-misc/source1.right: -------------------------------------------------------------------------------- 1 | Sourced ok 2 | Done 3 | -------------------------------------------------------------------------------- /busybox/shell/hush_test/hush-misc/source2.right: -------------------------------------------------------------------------------- 1 | Done: 0 2 | -------------------------------------------------------------------------------- /busybox/shell/hush_test/hush-misc/source2.tests: -------------------------------------------------------------------------------- 1 | false 2 | . /dev/null 3 | echo Done: $? 4 | -------------------------------------------------------------------------------- /busybox/shell/hush_test/hush-misc/syntax_err_negate.tests: -------------------------------------------------------------------------------- 1 | echo bash 3.2 fails this 2 | ! ! true 3 | -------------------------------------------------------------------------------- /busybox/shell/hush_test/hush-misc/tickquote1.right: -------------------------------------------------------------------------------- 1 | hush: syntax error: unterminated " 2 | -------------------------------------------------------------------------------- /busybox/shell/hush_test/hush-misc/unicode1.right: -------------------------------------------------------------------------------- 1 | 1 2 | 1 3 | Ok 4 | -------------------------------------------------------------------------------- /busybox/shell/hush_test/hush-misc/until1.right: -------------------------------------------------------------------------------- 1 | 1 2 | 1 3 | Ok:0 4 | -------------------------------------------------------------------------------- /busybox/shell/hush_test/hush-misc/wait4.right: -------------------------------------------------------------------------------- 1 | Three:3 2 | -------------------------------------------------------------------------------- /busybox/shell/hush_test/hush-misc/wait5.right: -------------------------------------------------------------------------------- 1 | Zero:0 2 | Three:3 3 | -------------------------------------------------------------------------------- /busybox/shell/hush_test/hush-misc/wait6.right: -------------------------------------------------------------------------------- 1 | 0 2 | 3 3 | -------------------------------------------------------------------------------- /busybox/shell/hush_test/hush-misc/while1.right: -------------------------------------------------------------------------------- 1 | OK:0 2 | -------------------------------------------------------------------------------- /busybox/shell/hush_test/hush-misc/while2.right: -------------------------------------------------------------------------------- 1 | Hello 2 | OK:0 3 | -------------------------------------------------------------------------------- /busybox/shell/hush_test/hush-misc/while3.right: -------------------------------------------------------------------------------- 1 | OK:0 2 | -------------------------------------------------------------------------------- /busybox/shell/hush_test/hush-misc/while4.right: -------------------------------------------------------------------------------- 1 | Ok:0 2 | -------------------------------------------------------------------------------- /busybox/shell/hush_test/hush-misc/while_in_subshell.right: -------------------------------------------------------------------------------- 1 | OK: 0 2 | -------------------------------------------------------------------------------- /busybox/shell/hush_test/hush-parsing/and_or_and_backgrounding.right: -------------------------------------------------------------------------------- 1 | First 2 | Second 3 | Third 4 | Done 5 | -------------------------------------------------------------------------------- /busybox/shell/hush_test/hush-parsing/argv0.right: -------------------------------------------------------------------------------- 1 | OK 2 | -------------------------------------------------------------------------------- /busybox/shell/hush_test/hush-parsing/bkslash_eof1.right: -------------------------------------------------------------------------------- 1 | ok\ 2 | -------------------------------------------------------------------------------- /busybox/shell/hush_test/hush-parsing/bkslash_eof1.tests: -------------------------------------------------------------------------------- 1 | eval 'echo ok\' 2 | -------------------------------------------------------------------------------- /busybox/shell/hush_test/hush-parsing/bkslash_eof2.right: -------------------------------------------------------------------------------- 1 | hush: syntax error: unterminated " 2 | One:1 3 | -------------------------------------------------------------------------------- /busybox/shell/hush_test/hush-parsing/bkslash_newline1.right: -------------------------------------------------------------------------------- 1 | and1 2 | and2 3 | or1 4 | ok 5 | -------------------------------------------------------------------------------- /busybox/shell/hush_test/hush-parsing/bkslash_newline2.right: -------------------------------------------------------------------------------- 1 | Line with one backslash: 2 | \ 3 | 4 | Ok:0 5 | -------------------------------------------------------------------------------- /busybox/shell/hush_test/hush-parsing/bkslash_newline3.right: -------------------------------------------------------------------------------- 1 | a:[a] 2 | -------------------------------------------------------------------------------- /busybox/shell/hush_test/hush-parsing/eol1.right: -------------------------------------------------------------------------------- 1 | Done:0 2 | -------------------------------------------------------------------------------- /busybox/shell/hush_test/hush-parsing/escape1.right: -------------------------------------------------------------------------------- 1 | \ 2 | a\b 3 | \\ 4 | c\\d 5 | -------------------------------------------------------------------------------- /busybox/shell/hush_test/hush-parsing/escape4.right: -------------------------------------------------------------------------------- 1 | Ok 2 | End 3 | -------------------------------------------------------------------------------- /busybox/shell/hush_test/hush-parsing/group1.right: -------------------------------------------------------------------------------- 1 | word} } 2 | -------------------------------------------------------------------------------- /busybox/shell/hush_test/hush-parsing/group1.tests: -------------------------------------------------------------------------------- 1 | { echo word} }; } 2 | -------------------------------------------------------------------------------- /busybox/shell/hush_test/hush-parsing/group2.right: -------------------------------------------------------------------------------- 1 | got TERM 2 | Done: 0 3 | -------------------------------------------------------------------------------- /busybox/shell/hush_test/hush-parsing/noeol.right: -------------------------------------------------------------------------------- 1 | HELLO 2 | -------------------------------------------------------------------------------- /busybox/shell/hush_test/hush-parsing/noeol.tests: -------------------------------------------------------------------------------- 1 | # next line has no EOL! 2 | echo HELLO -------------------------------------------------------------------------------- /busybox/shell/hush_test/hush-parsing/noeol2.right: -------------------------------------------------------------------------------- 1 | 1 2 | -------------------------------------------------------------------------------- /busybox/shell/hush_test/hush-parsing/noeol3.right: -------------------------------------------------------------------------------- 1 | hush: syntax error: unterminated " 2 | -------------------------------------------------------------------------------- /busybox/shell/hush_test/hush-parsing/noeol3.tests: -------------------------------------------------------------------------------- 1 | # last line has no EOL! 2 | echo "unterminated -------------------------------------------------------------------------------- /busybox/shell/hush_test/hush-parsing/quote1.right: -------------------------------------------------------------------------------- 1 | '1' 2 | -------------------------------------------------------------------------------- /busybox/shell/hush_test/hush-parsing/quote1.tests: -------------------------------------------------------------------------------- 1 | a=1 2 | echo "'$a'" 3 | -------------------------------------------------------------------------------- /busybox/shell/hush_test/hush-parsing/quote2.right: -------------------------------------------------------------------------------- 1 | >1 2 | -------------------------------------------------------------------------------- /busybox/shell/hush_test/hush-parsing/quote2.tests: -------------------------------------------------------------------------------- 1 | a=1 2 | echo ">$a" 3 | -------------------------------------------------------------------------------- /busybox/shell/hush_test/hush-parsing/quote4.right: -------------------------------------------------------------------------------- 1 | a b 2 | -------------------------------------------------------------------------------- /busybox/shell/hush_test/hush-parsing/quote4.tests: -------------------------------------------------------------------------------- 1 | a_b='a b' 2 | echo "$a_b" 3 | -------------------------------------------------------------------------------- /busybox/shell/hush_test/hush-parsing/starquoted3.right: -------------------------------------------------------------------------------- 1 | 2 | <> 3 | -------------------------------------------------------------------------------- /busybox/shell/hush_test/hush-psubst/falsetick2.right: -------------------------------------------------------------------------------- 1 | Two:2 v:[] 2 | -------------------------------------------------------------------------------- /busybox/shell/hush_test/hush-psubst/falsetick2.tests: -------------------------------------------------------------------------------- 1 | v=v 2 | v=`exit 2` `false` 3 | echo Two:$? v:"[$v]" 4 | -------------------------------------------------------------------------------- /busybox/shell/hush_test/hush-psubst/tick.right: -------------------------------------------------------------------------------- 1 | 1 2 | 1 3 | -------------------------------------------------------------------------------- /busybox/shell/hush_test/hush-psubst/tick2.right: -------------------------------------------------------------------------------- 1 | BAZ 2 | -------------------------------------------------------------------------------- /busybox/shell/hush_test/hush-psubst/tick5.right: -------------------------------------------------------------------------------- 1 | 1 2 | -------------------------------------------------------------------------------- /busybox/shell/hush_test/hush-psubst/tick5.tests: -------------------------------------------------------------------------------- 1 | true; echo `false` $? 2 | -------------------------------------------------------------------------------- /busybox/shell/hush_test/hush-quoting/bkslash_case2.right: -------------------------------------------------------------------------------- 1 | ok1 2 | ok2 3 | Ok:0 4 | -------------------------------------------------------------------------------- /busybox/shell/hush_test/hush-quoting/case_glob1.right: -------------------------------------------------------------------------------- 1 | s 2 | -------------------------------------------------------------------------------- /busybox/shell/hush_test/hush-quoting/dollar_repl_slash_bash2.right: -------------------------------------------------------------------------------- 1 | \/a\/bc\/def\/file 2 | -------------------------------------------------------------------------------- /busybox/shell/hush_test/hush-quoting/quote_in_varexp1.right: -------------------------------------------------------------------------------- 1 | '' 2 | Ok:0 3 | -------------------------------------------------------------------------------- /busybox/shell/hush_test/hush-quoting/squote_in_varexp3.right: -------------------------------------------------------------------------------- 1 | B 2 | -------------------------------------------------------------------------------- /busybox/shell/hush_test/hush-quoting/squote_in_varexp3.tests: -------------------------------------------------------------------------------- 1 | x=\'B; echo "${x#\'}" 2 | -------------------------------------------------------------------------------- /busybox/shell/hush_test/hush-read/read_SIGCHLD.right: -------------------------------------------------------------------------------- 1 | x='Ok' 2 | exitcode:0 3 | -------------------------------------------------------------------------------- /busybox/shell/hush_test/hush-redir/redir.right: -------------------------------------------------------------------------------- 1 | hush: write error: Bad file descriptor 2 | TEST 3 | -------------------------------------------------------------------------------- /busybox/shell/hush_test/hush-redir/redir2.right: -------------------------------------------------------------------------------- 1 | OK 2 | -------------------------------------------------------------------------------- /busybox/shell/hush_test/hush-redir/redir4.right: -------------------------------------------------------------------------------- 1 | OK 2 | -------------------------------------------------------------------------------- /busybox/shell/hush_test/hush-redir/redir6.right: -------------------------------------------------------------------------------- 1 | Hello 2 | OK 3 | -------------------------------------------------------------------------------- /busybox/shell/hush_test/hush-redir/redir7.right: -------------------------------------------------------------------------------- 1 | Ok 2 | Ok 3 | Done 4 | -------------------------------------------------------------------------------- /busybox/shell/hush_test/hush-redir/redir8.right: -------------------------------------------------------------------------------- 1 | Ok 2 | Ok 3 | Done 4 | -------------------------------------------------------------------------------- /busybox/shell/hush_test/hush-redir/redir9.right: -------------------------------------------------------------------------------- 1 | Ok 2 | Done:0 3 | -------------------------------------------------------------------------------- /busybox/shell/hush_test/hush-redir/redir_escapednum.right: -------------------------------------------------------------------------------- 1 | Ok 2 | -------------------------------------------------------------------------------- /busybox/shell/hush_test/hush-redir/redir_escapednum.tests: -------------------------------------------------------------------------------- 1 | echo NOT SHOWN \2>/dev/null 2 | echo Ok 3 | -------------------------------------------------------------------------------- /busybox/shell/hush_test/hush-redir/redir_script.right: -------------------------------------------------------------------------------- 1 | Ok: script fd is not closed 2 | -------------------------------------------------------------------------------- /busybox/shell/hush_test/hush-signals/continue_and_trap1.right: -------------------------------------------------------------------------------- 1 | Exiting 2 | -------------------------------------------------------------------------------- /busybox/shell/hush_test/hush-signals/reap1.right: -------------------------------------------------------------------------------- 1 | Ok 2 | -------------------------------------------------------------------------------- /busybox/shell/hush_test/hush-signals/return_in_trap1.right: -------------------------------------------------------------------------------- 1 | a:2 2 | b:0 3 | Trap 4 | d:3 5 | -------------------------------------------------------------------------------- /busybox/shell/hush_test/hush-signals/save-ret.right: -------------------------------------------------------------------------------- 1 | YEAH 2 | 0 3 | -------------------------------------------------------------------------------- /busybox/shell/hush_test/hush-signals/sigint1.right: -------------------------------------------------------------------------------- 1 | Sending SIGINT to main shell PID 2 | -------------------------------------------------------------------------------- /busybox/shell/hush_test/hush-signals/signal6.right: -------------------------------------------------------------------------------- 1 | got TERM 2 | Done: 0 3 | -------------------------------------------------------------------------------- /busybox/shell/hush_test/hush-signals/signal7.right: -------------------------------------------------------------------------------- 1 | Bug detected: 0 2 | -------------------------------------------------------------------------------- /busybox/shell/hush_test/hush-signals/signal8.right: -------------------------------------------------------------------------------- 1 | Removing traps 2 | End of exit_func 3 | Done: 0 4 | -------------------------------------------------------------------------------- /busybox/shell/hush_test/hush-signals/signal9.right: -------------------------------------------------------------------------------- 1 | Removing traps 2 | End of exit_func 3 | Done: 0 4 | -------------------------------------------------------------------------------- /busybox/shell/hush_test/hush-signals/signal_read1.right: -------------------------------------------------------------------------------- 1 | Got HUP:0 2 | -------------------------------------------------------------------------------- /busybox/shell/hush_test/hush-signals/signal_read2.right: -------------------------------------------------------------------------------- 1 | HUP 2 | Done:129 3 | -------------------------------------------------------------------------------- /busybox/shell/hush_test/hush-standalone/nofork_trashes_getopt.right: -------------------------------------------------------------------------------- 1 | 0 2 | -------------------------------------------------------------------------------- /busybox/shell/hush_test/hush-standalone/var_standalone1.right: -------------------------------------------------------------------------------- 1 | Done: 1 2 | -------------------------------------------------------------------------------- /busybox/shell/hush_test/hush-vars/glob_and_vars.tests: -------------------------------------------------------------------------------- 1 | v=. 2 | echo $v/glob_and_vars.[tr]* 3 | -------------------------------------------------------------------------------- /busybox/shell/hush_test/hush-vars/var-do-not-collapse-arithmetic-expansion-at-parse-time.right: -------------------------------------------------------------------------------- 1 | 12 2 | 9 3 | -------------------------------------------------------------------------------- /busybox/shell/hush_test/hush-vars/var-do-not-expand-tilde-in-parameter-expansion-in-quotes.right: -------------------------------------------------------------------------------- 1 | ~root 2 | -------------------------------------------------------------------------------- /busybox/shell/hush_test/hush-vars/var-pattern-replacement-in-parameter-expansion-1.right: -------------------------------------------------------------------------------- 1 | a_\_z_c 2 | -------------------------------------------------------------------------------- /busybox/shell/hush_test/hush-vars/var-pattern-replacement-in-parameter-expansion-2.right: -------------------------------------------------------------------------------- 1 | ax/yc 2 | -------------------------------------------------------------------------------- /busybox/shell/hush_test/hush-vars/var-pattern-replacement-in-parameter-expansion-3.right: -------------------------------------------------------------------------------- 1 | axcabc 2 | -------------------------------------------------------------------------------- /busybox/shell/hush_test/hush-vars/var-pattern-replacement-in-parameter-expansion-4.right: -------------------------------------------------------------------------------- 1 | axcaxc 2 | -------------------------------------------------------------------------------- /busybox/shell/hush_test/hush-vars/var-pattern-replacement-in-parameter-expansion-5.right: -------------------------------------------------------------------------------- 1 | axc 2 | -------------------------------------------------------------------------------- /busybox/shell/hush_test/hush-vars/var-runtime-quote-detection.right: -------------------------------------------------------------------------------- 1 | <> 2 | -------------------------------------------------------------------------------- /busybox/shell/hush_test/hush-vars/var-runtime-quote-detection.tests: -------------------------------------------------------------------------------- 1 | foo=\\ echo "<${foo#[\\]}>" 2 | -------------------------------------------------------------------------------- /busybox/shell/hush_test/hush-vars/var-utf8-length.right: -------------------------------------------------------------------------------- 1 | 26 2 | -------------------------------------------------------------------------------- /busybox/shell/hush_test/hush-vars/var3.right: -------------------------------------------------------------------------------- 1 | 1 2 | 1 3 | 4 | 5 | 0 6 | -------------------------------------------------------------------------------- /busybox/shell/hush_test/hush-vars/var4.right: -------------------------------------------------------------------------------- 1 | bus/usb/1/2 2 | -------------------------------------------------------------------------------- /busybox/shell/hush_test/hush-vars/var_bash_repl_empty_pattern.right: -------------------------------------------------------------------------------- 1 | v 2 | Ok:0 3 | -------------------------------------------------------------------------------- /busybox/shell/hush_test/hush-vars/var_bash_repl_empty_var.right: -------------------------------------------------------------------------------- 1 | 2 | Ok:0 3 | -------------------------------------------------------------------------------- /busybox/shell/hush_test/hush-vars/var_leaks.right: -------------------------------------------------------------------------------- 1 | OK 2 | -------------------------------------------------------------------------------- /busybox/shell/hush_test/hush-vars/var_nested2.right: -------------------------------------------------------------------------------- 1 | aB 2 | -------------------------------------------------------------------------------- /busybox/shell/hush_test/hush-vars/var_wordsplit_ifs5.right: -------------------------------------------------------------------------------- 1 | Zero:0 2 | -------------------------------------------------------------------------------- /busybox/shell/hush_test/hush-z_slow/leak_all1.right: -------------------------------------------------------------------------------- 1 | Warm up 2 | Measuring memory leak... 3 | Ok 4 | -------------------------------------------------------------------------------- /busybox/shell/hush_test/hush-z_slow/leak_all2.right: -------------------------------------------------------------------------------- 1 | Warm up 2 | Measuring memory leak... 3 | Ok 4 | -------------------------------------------------------------------------------- /busybox/shell/hush_test/hush-z_slow/leak_empty_tick.right: -------------------------------------------------------------------------------- 1 | Warm up 2 | Measuring memory leak... 3 | Ok 4 | -------------------------------------------------------------------------------- /busybox/shell/hush_test/hush-z_slow/leak_heredoc1.right: -------------------------------------------------------------------------------- 1 | Warm up 2 | Measuring memory leak... 3 | Ok 4 | -------------------------------------------------------------------------------- /busybox/shell/hush_test/hush-z_slow/leak_var.right: -------------------------------------------------------------------------------- 1 | Measuring memory leak... 2 | Ok 3 | -------------------------------------------------------------------------------- /busybox/shell/hush_test/hush-z_slow/leak_var2.right: -------------------------------------------------------------------------------- 1 | Warm up 2 | Measuring memory leak... 3 | Ok 4 | -------------------------------------------------------------------------------- /busybox/shell/hush_test/hush-z_slow/leak_var3.right: -------------------------------------------------------------------------------- 1 | Warm up 2 | Measuring memory leak... 3 | Ok 4 | -------------------------------------------------------------------------------- /busybox/shell/match.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vowstar/k210-linux-nommu/HEAD/busybox/shell/match.c -------------------------------------------------------------------------------- /busybox/shell/match.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vowstar/k210-linux-nommu/HEAD/busybox/shell/match.h -------------------------------------------------------------------------------- /busybox/shell/math.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vowstar/k210-linux-nommu/HEAD/busybox/shell/math.c -------------------------------------------------------------------------------- /busybox/shell/math.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vowstar/k210-linux-nommu/HEAD/busybox/shell/math.h -------------------------------------------------------------------------------- /busybox/shell/random.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vowstar/k210-linux-nommu/HEAD/busybox/shell/random.c -------------------------------------------------------------------------------- /busybox/shell/random.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vowstar/k210-linux-nommu/HEAD/busybox/shell/random.h -------------------------------------------------------------------------------- /busybox/sysklogd/klogd.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vowstar/k210-linux-nommu/HEAD/busybox/sysklogd/klogd.c -------------------------------------------------------------------------------- /busybox/testsuite/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vowstar/k210-linux-nommu/HEAD/busybox/testsuite/README -------------------------------------------------------------------------------- /busybox/testsuite/TODO: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vowstar/k210-linux-nommu/HEAD/busybox/testsuite/TODO -------------------------------------------------------------------------------- /busybox/testsuite/bc_arrays_results.txt: -------------------------------------------------------------------------------- 1 | 2 2 | 4 3 | 2 4 | -------------------------------------------------------------------------------- /busybox/testsuite/cut/cut-cuts-a-character: -------------------------------------------------------------------------------- 1 | test $(echo abcd | busybox cut -c 3) = c 2 | -------------------------------------------------------------------------------- /busybox/testsuite/cut/cut-cuts-a-closed-range: -------------------------------------------------------------------------------- 1 | test $(echo abcd | busybox cut -c 1-2) = ab 2 | -------------------------------------------------------------------------------- /busybox/testsuite/cut/cut-cuts-a-field: -------------------------------------------------------------------------------- 1 | test $($ECHO -e "f1\tf2\tf3" | busybox cut -f 2) = f2 2 | -------------------------------------------------------------------------------- /busybox/testsuite/cut/cut-cuts-an-open-range: -------------------------------------------------------------------------------- 1 | test $(echo abcd | busybox cut -c -3) = abc 2 | -------------------------------------------------------------------------------- /busybox/testsuite/cut/cut-cuts-an-unclosed-range: -------------------------------------------------------------------------------- 1 | test $(echo abcd | busybox cut -c 3-) = cd 2 | -------------------------------------------------------------------------------- /busybox/testsuite/dirname/dirname-handles-empty-path: -------------------------------------------------------------------------------- 1 | test $(busybox dirname '') = . 2 | -------------------------------------------------------------------------------- /busybox/testsuite/dirname/dirname-handles-root: -------------------------------------------------------------------------------- 1 | test $(busybox dirname /) = / 2 | -------------------------------------------------------------------------------- /busybox/testsuite/dirname/dirname-handles-single-component: -------------------------------------------------------------------------------- 1 | test $(busybox dirname foo) = . 2 | -------------------------------------------------------------------------------- /busybox/testsuite/echo/echo-prints-newline: -------------------------------------------------------------------------------- 1 | test `busybox echo word | wc -c` -eq 5 2 | -------------------------------------------------------------------------------- /busybox/testsuite/false/false-is-silent: -------------------------------------------------------------------------------- 1 | busybox false 2>&1 | cmp - /dev/null 2 | -------------------------------------------------------------------------------- /busybox/testsuite/false/false-returns-failure: -------------------------------------------------------------------------------- 1 | ! busybox false 2 | -------------------------------------------------------------------------------- /busybox/testsuite/gunzip.tests: -------------------------------------------------------------------------------- 1 | #!/bin/sh 2 | 3 | . ./bunzip2.tests 4 | -------------------------------------------------------------------------------- /busybox/testsuite/gzip/gzip-accepts-single-minus: -------------------------------------------------------------------------------- 1 | echo foo | busybox gzip - >/dev/null 2 | -------------------------------------------------------------------------------- /busybox/testsuite/tar/tar-demands-at-least-one-ctx: -------------------------------------------------------------------------------- 1 | ! busybox tar v 2 | -------------------------------------------------------------------------------- /busybox/testsuite/tar/tar-demands-at-most-one-ctx: -------------------------------------------------------------------------------- 1 | ! busybox tar tx 2 | -------------------------------------------------------------------------------- /busybox/testsuite/true/true-is-silent: -------------------------------------------------------------------------------- 1 | busybox true 2>&1 | cmp - /dev/null 2 | -------------------------------------------------------------------------------- /busybox/testsuite/true/true-returns-success: -------------------------------------------------------------------------------- 1 | busybox true 2 | -------------------------------------------------------------------------------- /busybox/testsuite/uptime/uptime-works: -------------------------------------------------------------------------------- 1 | busybox uptime 2 | -------------------------------------------------------------------------------- /busybox/testsuite/wc/wc-counts-characters: -------------------------------------------------------------------------------- 1 | test `echo i\'m a little teapot | busybox wc -c` -eq 20 2 | -------------------------------------------------------------------------------- /busybox/testsuite/wc/wc-counts-lines: -------------------------------------------------------------------------------- 1 | test `echo i\'m a little teapot | busybox wc -l` -eq 1 2 | -------------------------------------------------------------------------------- /busybox/testsuite/wc/wc-counts-words: -------------------------------------------------------------------------------- 1 | test `echo i\'m a little teapot | busybox wc -w` -eq 4 2 | -------------------------------------------------------------------------------- /busybox/util-linux/cal.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vowstar/k210-linux-nommu/HEAD/busybox/util-linux/cal.c -------------------------------------------------------------------------------- /busybox/util-linux/rev.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vowstar/k210-linux-nommu/HEAD/busybox/util-linux/rev.c -------------------------------------------------------------------------------- /fixk210.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vowstar/k210-linux-nommu/HEAD/fixk210.patch -------------------------------------------------------------------------------- /init: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vowstar/k210-linux-nommu/HEAD/init -------------------------------------------------------------------------------- /k210_lib/.clang-format: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vowstar/k210-linux-nommu/HEAD/k210_lib/.clang-format -------------------------------------------------------------------------------- /k210_lib/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vowstar/k210-linux-nommu/HEAD/k210_lib/Makefile -------------------------------------------------------------------------------- /k210_lib/crt1.S: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vowstar/k210-linux-nommu/HEAD/k210_lib/crt1.S -------------------------------------------------------------------------------- /k210_lib/crti.S: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vowstar/k210-linux-nommu/HEAD/k210_lib/crti.S -------------------------------------------------------------------------------- /k210_lib/crtn.S: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vowstar/k210-linux-nommu/HEAD/k210_lib/crtn.S -------------------------------------------------------------------------------- /k210_lib/dummy.S: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /k210_lib/entry.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vowstar/k210-linux-nommu/HEAD/k210_lib/entry.c -------------------------------------------------------------------------------- /k210_lib/printf.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vowstar/k210-linux-nommu/HEAD/k210_lib/printf.c -------------------------------------------------------------------------------- /k210_lib/printf.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vowstar/k210-linux-nommu/HEAD/k210_lib/printf.h -------------------------------------------------------------------------------- /k210_lib/stdio.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vowstar/k210-linux-nommu/HEAD/k210_lib/stdio.h -------------------------------------------------------------------------------- /k210_lib/syscall.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vowstar/k210-linux-nommu/HEAD/k210_lib/syscall.c -------------------------------------------------------------------------------- /k210_lib/syscall.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vowstar/k210-linux-nommu/HEAD/k210_lib/syscall.h -------------------------------------------------------------------------------- /prepare_buildroot.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vowstar/k210-linux-nommu/HEAD/prepare_buildroot.sh -------------------------------------------------------------------------------- /prepare_k210_bin.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vowstar/k210-linux-nommu/HEAD/prepare_k210_bin.sh -------------------------------------------------------------------------------- /prepare_k210_cpio.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vowstar/k210-linux-nommu/HEAD/prepare_k210_cpio.sh -------------------------------------------------------------------------------- /riscv64-nommu-buildroot/board/andes/ae3xx/ae3xx.fragment: -------------------------------------------------------------------------------- 1 | CONFIG_NDS32_BUILTIN_DTB="ae3xx" 2 | -------------------------------------------------------------------------------- /riscv64-nommu-buildroot/board/freescale/warpboard/linux.fragment: -------------------------------------------------------------------------------- 1 | CONFIG_CFG80211_WEXT=y 2 | -------------------------------------------------------------------------------- /riscv64-nommu-buildroot/board/olimex/a10_olinuxino/boot.cmd: -------------------------------------------------------------------------------- 1 | ../a20_olinuxino/boot.cmd -------------------------------------------------------------------------------- /riscv64-nommu-buildroot/board/olimex/a10_olinuxino/genimage.cfg: -------------------------------------------------------------------------------- 1 | ../a20_olinuxino/genimage.cfg -------------------------------------------------------------------------------- /riscv64-nommu-buildroot/board/olimex/a10_olinuxino/post-build.sh: -------------------------------------------------------------------------------- 1 | ../a20_olinuxino/post-build.sh -------------------------------------------------------------------------------- /riscv64-nommu-buildroot/board/raspberrypi0: -------------------------------------------------------------------------------- 1 | raspberrypi -------------------------------------------------------------------------------- /riscv64-nommu-buildroot/board/raspberrypi0w: -------------------------------------------------------------------------------- 1 | raspberrypi -------------------------------------------------------------------------------- /riscv64-nommu-buildroot/board/raspberrypi2: -------------------------------------------------------------------------------- 1 | raspberrypi -------------------------------------------------------------------------------- /riscv64-nommu-buildroot/board/raspberrypi3: -------------------------------------------------------------------------------- 1 | raspberrypi -------------------------------------------------------------------------------- /riscv64-nommu-buildroot/board/raspberrypi3-64: -------------------------------------------------------------------------------- 1 | raspberrypi -------------------------------------------------------------------------------- /riscv64-nommu-buildroot/board/raspberrypi4: -------------------------------------------------------------------------------- 1 | raspberrypi -------------------------------------------------------------------------------- /riscv64-nommu-buildroot/board/raspberrypi4-64: -------------------------------------------------------------------------------- 1 | raspberrypi -------------------------------------------------------------------------------- /riscv64-nommu-buildroot/board/solidrun/clearfog/linux.fragment: -------------------------------------------------------------------------------- 1 | CONFIG_SENSORS_MCP3021=y 2 | -------------------------------------------------------------------------------- /riscv64-nommu-buildroot/board/solidrun/clearfog_gt_8k/genimage.cfg: -------------------------------------------------------------------------------- 1 | ../macchiatobin/genimage.cfg -------------------------------------------------------------------------------- /riscv64-nommu-buildroot/board/udoo/mx6qdl/linux.fragment: -------------------------------------------------------------------------------- 1 | # CONFIG_USB is not set 2 | -------------------------------------------------------------------------------- /riscv64-nommu-buildroot/boot/barebox/barebox-aux/barebox-aux.hash: -------------------------------------------------------------------------------- 1 | ../barebox.hash -------------------------------------------------------------------------------- /riscv64-nommu-buildroot/boot/barebox/barebox/barebox.hash: -------------------------------------------------------------------------------- 1 | ../barebox.hash -------------------------------------------------------------------------------- /riscv64-nommu-buildroot/boot/common.mk: -------------------------------------------------------------------------------- 1 | include $(sort $(wildcard boot/*/*.mk)) 2 | -------------------------------------------------------------------------------- /riscv64-nommu-buildroot/boot/gummiboot/loader.conf: -------------------------------------------------------------------------------- 1 | timeout 3 2 | default buildroot 3 | -------------------------------------------------------------------------------- /riscv64-nommu-buildroot/docs/images: -------------------------------------------------------------------------------- 1 | website/images -------------------------------------------------------------------------------- /riscv64-nommu-buildroot/docs/website/robots.txt: -------------------------------------------------------------------------------- 1 | User-agent: * 2 | Disallow: /cgi-bin/ 3 | -------------------------------------------------------------------------------- /riscv64-nommu-buildroot/package/audit/audit_tmpfiles.conf: -------------------------------------------------------------------------------- 1 | d /var/log/audit 0755 - - 2 | -------------------------------------------------------------------------------- /riscv64-nommu-buildroot/package/fftw/fftw-double/fftw-double.hash: -------------------------------------------------------------------------------- 1 | ../fftw.hash -------------------------------------------------------------------------------- /riscv64-nommu-buildroot/package/fftw/fftw-long-double/fftw-long-double.hash: -------------------------------------------------------------------------------- 1 | ../fftw.hash -------------------------------------------------------------------------------- /riscv64-nommu-buildroot/package/fftw/fftw-quad/fftw-quad.hash: -------------------------------------------------------------------------------- 1 | ../fftw.hash -------------------------------------------------------------------------------- /riscv64-nommu-buildroot/package/fftw/fftw-single/fftw-single.hash: -------------------------------------------------------------------------------- 1 | ../fftw.hash -------------------------------------------------------------------------------- /riscv64-nommu-buildroot/package/fluxbox/xsession: -------------------------------------------------------------------------------- 1 | #!/bin/sh 2 | exec startfluxbox 3 | -------------------------------------------------------------------------------- /riscv64-nommu-buildroot/package/gcc/gcc-final/gcc-final.hash: -------------------------------------------------------------------------------- 1 | ../gcc.hash -------------------------------------------------------------------------------- /riscv64-nommu-buildroot/package/gcc/gcc-initial/gcc-initial.hash: -------------------------------------------------------------------------------- 1 | ../gcc.hash -------------------------------------------------------------------------------- /riscv64-nommu-buildroot/package/ifupdown-scripts/network/if-down.d/.empty: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /riscv64-nommu-buildroot/package/ifupdown-scripts/network/if-post-down.d/.empty: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /riscv64-nommu-buildroot/package/ifupdown-scripts/network/if-up.d/.empty: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /riscv64-nommu-buildroot/package/kodi-jsonschemabuilder/kodi-jsonschemabuilder.hash: -------------------------------------------------------------------------------- 1 | ../kodi/kodi.hash -------------------------------------------------------------------------------- /riscv64-nommu-buildroot/package/kodi-texturepacker/kodi-texturepacker.hash: -------------------------------------------------------------------------------- 1 | ../kodi/kodi.hash -------------------------------------------------------------------------------- /riscv64-nommu-buildroot/package/linux-headers/Config.in: -------------------------------------------------------------------------------- 1 | config BR2_PACKAGE_LINUX_HEADERS 2 | bool 3 | -------------------------------------------------------------------------------- /riscv64-nommu-buildroot/package/linux-headers/linux-headers.hash: -------------------------------------------------------------------------------- 1 | ../../linux/linux.hash -------------------------------------------------------------------------------- /riscv64-nommu-buildroot/package/mender/artifact_info: -------------------------------------------------------------------------------- 1 | artifact_name=BUILDROOT_ARTIFACT 2 | -------------------------------------------------------------------------------- /riscv64-nommu-buildroot/package/mender/device_type: -------------------------------------------------------------------------------- 1 | device_type=BUILDROOT_DEVICE 2 | -------------------------------------------------------------------------------- /riscv64-nommu-buildroot/package/mesa3d-headers/mesa3d-headers.hash: -------------------------------------------------------------------------------- 1 | ../mesa3d/mesa3d.hash -------------------------------------------------------------------------------- /riscv64-nommu-buildroot/package/opengl/opengl.mk: -------------------------------------------------------------------------------- 1 | include $(sort $(wildcard package/opengl/*/*.mk)) 2 | -------------------------------------------------------------------------------- /riscv64-nommu-buildroot/package/openssh/sshd-sysusers.conf: -------------------------------------------------------------------------------- 1 | u sshd - "SSH drop priv user" /var/empty 2 | -------------------------------------------------------------------------------- /riscv64-nommu-buildroot/package/python3-mako/python3-mako.hash: -------------------------------------------------------------------------------- 1 | ../python-mako/python-mako.hash -------------------------------------------------------------------------------- /riscv64-nommu-buildroot/package/qt5/qt5base/qplatformdefs.h: -------------------------------------------------------------------------------- 1 | #include "../../linux-g++/qplatformdefs.h" 2 | -------------------------------------------------------------------------------- /riscv64-nommu-buildroot/package/skeleton-init-openrc/skeleton/dev/log: -------------------------------------------------------------------------------- 1 | ../tmp/log -------------------------------------------------------------------------------- /riscv64-nommu-buildroot/package/skeleton-init-openrc/skeleton/etc/conf.d/.empty: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /riscv64-nommu-buildroot/package/skeleton-init-openrc/skeleton/etc/runlevels/default/.empty: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /riscv64-nommu-buildroot/package/skeleton-init-openrc/skeleton/var/cache: -------------------------------------------------------------------------------- 1 | ../tmp -------------------------------------------------------------------------------- /riscv64-nommu-buildroot/package/skeleton-init-openrc/skeleton/var/lib/misc: -------------------------------------------------------------------------------- 1 | ../../tmp -------------------------------------------------------------------------------- /riscv64-nommu-buildroot/package/skeleton-init-openrc/skeleton/var/lock: -------------------------------------------------------------------------------- 1 | ../tmp -------------------------------------------------------------------------------- /riscv64-nommu-buildroot/package/skeleton-init-openrc/skeleton/var/log: -------------------------------------------------------------------------------- 1 | ../tmp -------------------------------------------------------------------------------- /riscv64-nommu-buildroot/package/skeleton-init-openrc/skeleton/var/run: -------------------------------------------------------------------------------- 1 | ../run -------------------------------------------------------------------------------- /riscv64-nommu-buildroot/package/skeleton-init-openrc/skeleton/var/spool: -------------------------------------------------------------------------------- 1 | ../tmp -------------------------------------------------------------------------------- /riscv64-nommu-buildroot/package/skeleton-init-openrc/skeleton/var/tmp: -------------------------------------------------------------------------------- 1 | ../tmp -------------------------------------------------------------------------------- /riscv64-nommu-buildroot/package/skeleton-init-sysv/skeleton/dev/log: -------------------------------------------------------------------------------- 1 | ../tmp/log -------------------------------------------------------------------------------- /riscv64-nommu-buildroot/package/skeleton-init-sysv/skeleton/dev/pts/.empty: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /riscv64-nommu-buildroot/package/skeleton-init-sysv/skeleton/dev/shm/.empty: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /riscv64-nommu-buildroot/package/skeleton-init-sysv/skeleton/var/cache: -------------------------------------------------------------------------------- 1 | ../tmp -------------------------------------------------------------------------------- /riscv64-nommu-buildroot/package/skeleton-init-sysv/skeleton/var/lib/misc: -------------------------------------------------------------------------------- 1 | ../../tmp -------------------------------------------------------------------------------- /riscv64-nommu-buildroot/package/skeleton-init-sysv/skeleton/var/lock: -------------------------------------------------------------------------------- 1 | ../tmp -------------------------------------------------------------------------------- /riscv64-nommu-buildroot/package/skeleton-init-sysv/skeleton/var/log: -------------------------------------------------------------------------------- 1 | ../tmp -------------------------------------------------------------------------------- /riscv64-nommu-buildroot/package/skeleton-init-sysv/skeleton/var/run: -------------------------------------------------------------------------------- 1 | ../run -------------------------------------------------------------------------------- /riscv64-nommu-buildroot/package/skeleton-init-sysv/skeleton/var/spool: -------------------------------------------------------------------------------- 1 | ../tmp -------------------------------------------------------------------------------- /riscv64-nommu-buildroot/package/skeleton-init-sysv/skeleton/var/tmp: -------------------------------------------------------------------------------- 1 | ../tmp -------------------------------------------------------------------------------- /riscv64-nommu-buildroot/package/systemd/boot-files/loader.conf: -------------------------------------------------------------------------------- 1 | timeout 3 2 | default buildroot 3 | -------------------------------------------------------------------------------- /riscv64-nommu-buildroot/package/ti-gfx/powervr.ini: -------------------------------------------------------------------------------- 1 | [default] 2 | WindowSystem=libpvrPVR2D_FRONTWSEGL.so 3 | -------------------------------------------------------------------------------- /riscv64-nommu-buildroot/package/x11r7/x11r7.mk: -------------------------------------------------------------------------------- 1 | include $(sort $(wildcard package/x11r7/*/*.mk)) 2 | -------------------------------------------------------------------------------- /riscv64-nommu-buildroot/riscv64-uclibc-nommu/initramfs/bin/arch: -------------------------------------------------------------------------------- 1 | busybox -------------------------------------------------------------------------------- /riscv64-nommu-buildroot/riscv64-uclibc-nommu/initramfs/bin/cat: -------------------------------------------------------------------------------- 1 | busybox -------------------------------------------------------------------------------- /riscv64-nommu-buildroot/riscv64-uclibc-nommu/initramfs/bin/chgrp: -------------------------------------------------------------------------------- 1 | busybox -------------------------------------------------------------------------------- /riscv64-nommu-buildroot/riscv64-uclibc-nommu/initramfs/bin/chmod: -------------------------------------------------------------------------------- 1 | busybox -------------------------------------------------------------------------------- /riscv64-nommu-buildroot/riscv64-uclibc-nommu/initramfs/bin/chown: -------------------------------------------------------------------------------- 1 | busybox -------------------------------------------------------------------------------- /riscv64-nommu-buildroot/riscv64-uclibc-nommu/initramfs/bin/cp: -------------------------------------------------------------------------------- 1 | busybox -------------------------------------------------------------------------------- /riscv64-nommu-buildroot/riscv64-uclibc-nommu/initramfs/bin/date: -------------------------------------------------------------------------------- 1 | busybox -------------------------------------------------------------------------------- /riscv64-nommu-buildroot/riscv64-uclibc-nommu/initramfs/bin/dmesg: -------------------------------------------------------------------------------- 1 | busybox -------------------------------------------------------------------------------- /riscv64-nommu-buildroot/riscv64-uclibc-nommu/initramfs/bin/echo: -------------------------------------------------------------------------------- 1 | busybox -------------------------------------------------------------------------------- /riscv64-nommu-buildroot/riscv64-uclibc-nommu/initramfs/bin/false: -------------------------------------------------------------------------------- 1 | busybox -------------------------------------------------------------------------------- /riscv64-nommu-buildroot/riscv64-uclibc-nommu/initramfs/bin/hush: -------------------------------------------------------------------------------- 1 | busybox -------------------------------------------------------------------------------- /riscv64-nommu-buildroot/riscv64-uclibc-nommu/initramfs/bin/kill: -------------------------------------------------------------------------------- 1 | busybox -------------------------------------------------------------------------------- /riscv64-nommu-buildroot/riscv64-uclibc-nommu/initramfs/bin/link: -------------------------------------------------------------------------------- 1 | busybox -------------------------------------------------------------------------------- /riscv64-nommu-buildroot/riscv64-uclibc-nommu/initramfs/bin/ln: -------------------------------------------------------------------------------- 1 | busybox -------------------------------------------------------------------------------- /riscv64-nommu-buildroot/riscv64-uclibc-nommu/initramfs/bin/ls: -------------------------------------------------------------------------------- 1 | busybox -------------------------------------------------------------------------------- /riscv64-nommu-buildroot/riscv64-uclibc-nommu/initramfs/bin/mkdir: -------------------------------------------------------------------------------- 1 | busybox -------------------------------------------------------------------------------- /riscv64-nommu-buildroot/riscv64-uclibc-nommu/initramfs/bin/mknod: -------------------------------------------------------------------------------- 1 | busybox -------------------------------------------------------------------------------- /riscv64-nommu-buildroot/riscv64-uclibc-nommu/initramfs/bin/more: -------------------------------------------------------------------------------- 1 | busybox -------------------------------------------------------------------------------- /riscv64-nommu-buildroot/riscv64-uclibc-nommu/initramfs/bin/mount: -------------------------------------------------------------------------------- 1 | busybox -------------------------------------------------------------------------------- /riscv64-nommu-buildroot/riscv64-uclibc-nommu/initramfs/bin/mv: -------------------------------------------------------------------------------- 1 | busybox -------------------------------------------------------------------------------- /riscv64-nommu-buildroot/riscv64-uclibc-nommu/initramfs/bin/printenv: -------------------------------------------------------------------------------- 1 | busybox -------------------------------------------------------------------------------- /riscv64-nommu-buildroot/riscv64-uclibc-nommu/initramfs/bin/ps: -------------------------------------------------------------------------------- 1 | busybox -------------------------------------------------------------------------------- /riscv64-nommu-buildroot/riscv64-uclibc-nommu/initramfs/bin/pwd: -------------------------------------------------------------------------------- 1 | busybox -------------------------------------------------------------------------------- /riscv64-nommu-buildroot/riscv64-uclibc-nommu/initramfs/bin/rm: -------------------------------------------------------------------------------- 1 | busybox -------------------------------------------------------------------------------- /riscv64-nommu-buildroot/riscv64-uclibc-nommu/initramfs/bin/rmdir: -------------------------------------------------------------------------------- 1 | busybox -------------------------------------------------------------------------------- /riscv64-nommu-buildroot/riscv64-uclibc-nommu/initramfs/bin/setserial: -------------------------------------------------------------------------------- 1 | busybox -------------------------------------------------------------------------------- /riscv64-nommu-buildroot/riscv64-uclibc-nommu/initramfs/bin/sh: -------------------------------------------------------------------------------- 1 | busybox -------------------------------------------------------------------------------- /riscv64-nommu-buildroot/riscv64-uclibc-nommu/initramfs/bin/sleep: -------------------------------------------------------------------------------- 1 | busybox -------------------------------------------------------------------------------- /riscv64-nommu-buildroot/riscv64-uclibc-nommu/initramfs/bin/stty: -------------------------------------------------------------------------------- 1 | busybox -------------------------------------------------------------------------------- /riscv64-nommu-buildroot/riscv64-uclibc-nommu/initramfs/bin/touch: -------------------------------------------------------------------------------- 1 | busybox -------------------------------------------------------------------------------- /riscv64-nommu-buildroot/riscv64-uclibc-nommu/initramfs/bin/true: -------------------------------------------------------------------------------- 1 | busybox -------------------------------------------------------------------------------- /riscv64-nommu-buildroot/riscv64-uclibc-nommu/initramfs/bin/umount: -------------------------------------------------------------------------------- 1 | busybox -------------------------------------------------------------------------------- /riscv64-nommu-buildroot/riscv64-uclibc-nommu/initramfs/bin/uname: -------------------------------------------------------------------------------- 1 | busybox -------------------------------------------------------------------------------- /riscv64-nommu-buildroot/riscv64-uclibc-nommu/initramfs/bin/usleep: -------------------------------------------------------------------------------- 1 | busybox -------------------------------------------------------------------------------- /riscv64-nommu-buildroot/riscv64-uclibc-nommu/initramfs/initramfs-new2/bin/arch: -------------------------------------------------------------------------------- 1 | busybox -------------------------------------------------------------------------------- /riscv64-nommu-buildroot/riscv64-uclibc-nommu/initramfs/initramfs-new2/bin/cat: -------------------------------------------------------------------------------- 1 | busybox -------------------------------------------------------------------------------- /riscv64-nommu-buildroot/riscv64-uclibc-nommu/initramfs/initramfs-new2/bin/chgrp: -------------------------------------------------------------------------------- 1 | busybox -------------------------------------------------------------------------------- /riscv64-nommu-buildroot/riscv64-uclibc-nommu/initramfs/initramfs-new2/bin/chmod: -------------------------------------------------------------------------------- 1 | busybox -------------------------------------------------------------------------------- /riscv64-nommu-buildroot/riscv64-uclibc-nommu/initramfs/initramfs-new2/bin/chown: -------------------------------------------------------------------------------- 1 | busybox -------------------------------------------------------------------------------- /riscv64-nommu-buildroot/riscv64-uclibc-nommu/initramfs/initramfs-new2/bin/cp: -------------------------------------------------------------------------------- 1 | busybox -------------------------------------------------------------------------------- /riscv64-nommu-buildroot/riscv64-uclibc-nommu/initramfs/initramfs-new2/bin/date: -------------------------------------------------------------------------------- 1 | busybox -------------------------------------------------------------------------------- /riscv64-nommu-buildroot/riscv64-uclibc-nommu/initramfs/initramfs-new2/bin/dmesg: -------------------------------------------------------------------------------- 1 | busybox -------------------------------------------------------------------------------- /riscv64-nommu-buildroot/riscv64-uclibc-nommu/initramfs/initramfs-new2/bin/echo: -------------------------------------------------------------------------------- 1 | busybox -------------------------------------------------------------------------------- /riscv64-nommu-buildroot/riscv64-uclibc-nommu/initramfs/initramfs-new2/bin/false: -------------------------------------------------------------------------------- 1 | busybox -------------------------------------------------------------------------------- /riscv64-nommu-buildroot/riscv64-uclibc-nommu/initramfs/initramfs-new2/bin/hush: -------------------------------------------------------------------------------- 1 | busybox -------------------------------------------------------------------------------- /riscv64-nommu-buildroot/riscv64-uclibc-nommu/initramfs/initramfs-new2/bin/kill: -------------------------------------------------------------------------------- 1 | busybox -------------------------------------------------------------------------------- /riscv64-nommu-buildroot/riscv64-uclibc-nommu/initramfs/initramfs-new2/bin/link: -------------------------------------------------------------------------------- 1 | busybox -------------------------------------------------------------------------------- /riscv64-nommu-buildroot/riscv64-uclibc-nommu/initramfs/initramfs-new2/bin/ln: -------------------------------------------------------------------------------- 1 | busybox -------------------------------------------------------------------------------- /riscv64-nommu-buildroot/riscv64-uclibc-nommu/initramfs/initramfs-new2/bin/ls: -------------------------------------------------------------------------------- 1 | busybox -------------------------------------------------------------------------------- /riscv64-nommu-buildroot/riscv64-uclibc-nommu/initramfs/initramfs-new2/bin/mkdir: -------------------------------------------------------------------------------- 1 | busybox -------------------------------------------------------------------------------- /riscv64-nommu-buildroot/riscv64-uclibc-nommu/initramfs/initramfs-new2/bin/mknod: -------------------------------------------------------------------------------- 1 | busybox -------------------------------------------------------------------------------- /riscv64-nommu-buildroot/riscv64-uclibc-nommu/initramfs/initramfs-new2/bin/more: -------------------------------------------------------------------------------- 1 | busybox -------------------------------------------------------------------------------- /riscv64-nommu-buildroot/riscv64-uclibc-nommu/initramfs/initramfs-new2/bin/mount: -------------------------------------------------------------------------------- 1 | busybox -------------------------------------------------------------------------------- /riscv64-nommu-buildroot/riscv64-uclibc-nommu/initramfs/initramfs-new2/bin/mv: -------------------------------------------------------------------------------- 1 | busybox -------------------------------------------------------------------------------- /riscv64-nommu-buildroot/riscv64-uclibc-nommu/initramfs/initramfs-new2/bin/printenv: -------------------------------------------------------------------------------- 1 | busybox -------------------------------------------------------------------------------- /riscv64-nommu-buildroot/riscv64-uclibc-nommu/initramfs/initramfs-new2/bin/ps: -------------------------------------------------------------------------------- 1 | busybox -------------------------------------------------------------------------------- /riscv64-nommu-buildroot/riscv64-uclibc-nommu/initramfs/initramfs-new2/bin/pwd: -------------------------------------------------------------------------------- 1 | busybox -------------------------------------------------------------------------------- /riscv64-nommu-buildroot/riscv64-uclibc-nommu/initramfs/initramfs-new2/bin/rm: -------------------------------------------------------------------------------- 1 | busybox -------------------------------------------------------------------------------- /riscv64-nommu-buildroot/riscv64-uclibc-nommu/initramfs/initramfs-new2/bin/rmdir: -------------------------------------------------------------------------------- 1 | busybox -------------------------------------------------------------------------------- /riscv64-nommu-buildroot/riscv64-uclibc-nommu/initramfs/initramfs-new2/bin/setserial: -------------------------------------------------------------------------------- 1 | busybox -------------------------------------------------------------------------------- /riscv64-nommu-buildroot/riscv64-uclibc-nommu/initramfs/initramfs-new2/bin/sh: -------------------------------------------------------------------------------- 1 | busybox -------------------------------------------------------------------------------- /riscv64-nommu-buildroot/riscv64-uclibc-nommu/initramfs/initramfs-new2/bin/sleep: -------------------------------------------------------------------------------- 1 | busybox -------------------------------------------------------------------------------- /riscv64-nommu-buildroot/riscv64-uclibc-nommu/initramfs/initramfs-new2/bin/stty: -------------------------------------------------------------------------------- 1 | busybox -------------------------------------------------------------------------------- /riscv64-nommu-buildroot/riscv64-uclibc-nommu/initramfs/initramfs-new2/bin/touch: -------------------------------------------------------------------------------- 1 | busybox -------------------------------------------------------------------------------- /riscv64-nommu-buildroot/riscv64-uclibc-nommu/initramfs/initramfs-new2/bin/true: -------------------------------------------------------------------------------- 1 | busybox -------------------------------------------------------------------------------- /riscv64-nommu-buildroot/riscv64-uclibc-nommu/initramfs/initramfs-new2/bin/umount: -------------------------------------------------------------------------------- 1 | busybox -------------------------------------------------------------------------------- /riscv64-nommu-buildroot/riscv64-uclibc-nommu/initramfs/initramfs-new2/bin/uname: -------------------------------------------------------------------------------- 1 | busybox -------------------------------------------------------------------------------- /riscv64-nommu-buildroot/riscv64-uclibc-nommu/initramfs/initramfs-new2/bin/usleep: -------------------------------------------------------------------------------- 1 | busybox -------------------------------------------------------------------------------- /riscv64-nommu-buildroot/riscv64-uclibc-nommu/initramfs/initramfs-new2/sbin/runlevel: -------------------------------------------------------------------------------- 1 | ../bin/busybox -------------------------------------------------------------------------------- /riscv64-nommu-buildroot/riscv64-uclibc-nommu/initramfs/initramfs-new2/usr/bin/[: -------------------------------------------------------------------------------- 1 | ../../bin/busybox -------------------------------------------------------------------------------- /riscv64-nommu-buildroot/riscv64-uclibc-nommu/initramfs/initramfs-new2/usr/bin/[[: -------------------------------------------------------------------------------- 1 | ../../bin/busybox -------------------------------------------------------------------------------- /riscv64-nommu-buildroot/riscv64-uclibc-nommu/initramfs/initramfs-new2/usr/bin/basename: -------------------------------------------------------------------------------- 1 | ../../bin/busybox -------------------------------------------------------------------------------- /riscv64-nommu-buildroot/riscv64-uclibc-nommu/initramfs/initramfs-new2/usr/bin/dirname: -------------------------------------------------------------------------------- 1 | ../../bin/busybox -------------------------------------------------------------------------------- /riscv64-nommu-buildroot/riscv64-uclibc-nommu/initramfs/initramfs-new2/usr/bin/env: -------------------------------------------------------------------------------- 1 | ../../bin/busybox -------------------------------------------------------------------------------- /riscv64-nommu-buildroot/riscv64-uclibc-nommu/initramfs/initramfs-new2/usr/bin/expr: -------------------------------------------------------------------------------- 1 | ../../bin/busybox -------------------------------------------------------------------------------- /riscv64-nommu-buildroot/riscv64-uclibc-nommu/initramfs/initramfs-new2/usr/bin/head: -------------------------------------------------------------------------------- 1 | ../../bin/busybox -------------------------------------------------------------------------------- /riscv64-nommu-buildroot/riscv64-uclibc-nommu/initramfs/initramfs-new2/usr/bin/hostid: -------------------------------------------------------------------------------- 1 | ../../bin/busybox -------------------------------------------------------------------------------- /riscv64-nommu-buildroot/riscv64-uclibc-nommu/initramfs/initramfs-new2/usr/bin/id: -------------------------------------------------------------------------------- 1 | ../../bin/busybox -------------------------------------------------------------------------------- /riscv64-nommu-buildroot/riscv64-uclibc-nommu/initramfs/initramfs-new2/usr/bin/last: -------------------------------------------------------------------------------- 1 | ../../bin/busybox -------------------------------------------------------------------------------- /riscv64-nommu-buildroot/riscv64-uclibc-nommu/initramfs/initramfs-new2/usr/bin/printf: -------------------------------------------------------------------------------- 1 | ../../bin/busybox -------------------------------------------------------------------------------- /riscv64-nommu-buildroot/riscv64-uclibc-nommu/initramfs/initramfs-new2/usr/bin/readlink: -------------------------------------------------------------------------------- 1 | ../../bin/busybox -------------------------------------------------------------------------------- /riscv64-nommu-buildroot/riscv64-uclibc-nommu/initramfs/initramfs-new2/usr/bin/realpath: -------------------------------------------------------------------------------- 1 | ../../bin/busybox -------------------------------------------------------------------------------- /riscv64-nommu-buildroot/riscv64-uclibc-nommu/initramfs/initramfs-new2/usr/bin/seq: -------------------------------------------------------------------------------- 1 | ../../bin/busybox -------------------------------------------------------------------------------- /riscv64-nommu-buildroot/riscv64-uclibc-nommu/initramfs/initramfs-new2/usr/bin/tail: -------------------------------------------------------------------------------- 1 | ../../bin/busybox -------------------------------------------------------------------------------- /riscv64-nommu-buildroot/riscv64-uclibc-nommu/initramfs/initramfs-new2/usr/bin/tee: -------------------------------------------------------------------------------- 1 | ../../bin/busybox -------------------------------------------------------------------------------- /riscv64-nommu-buildroot/riscv64-uclibc-nommu/initramfs/initramfs-new2/usr/bin/test: -------------------------------------------------------------------------------- 1 | ../../bin/busybox -------------------------------------------------------------------------------- /riscv64-nommu-buildroot/riscv64-uclibc-nommu/initramfs/initramfs-new2/usr/bin/tty: -------------------------------------------------------------------------------- 1 | ../../bin/busybox -------------------------------------------------------------------------------- /riscv64-nommu-buildroot/riscv64-uclibc-nommu/initramfs/initramfs-new2/usr/bin/uniq: -------------------------------------------------------------------------------- 1 | ../../bin/busybox -------------------------------------------------------------------------------- /riscv64-nommu-buildroot/riscv64-uclibc-nommu/initramfs/initramfs-new2/usr/bin/unlink: -------------------------------------------------------------------------------- 1 | ../../bin/busybox -------------------------------------------------------------------------------- /riscv64-nommu-buildroot/riscv64-uclibc-nommu/initramfs/initramfs-new2/usr/bin/users: -------------------------------------------------------------------------------- 1 | ../../bin/busybox -------------------------------------------------------------------------------- /riscv64-nommu-buildroot/riscv64-uclibc-nommu/initramfs/initramfs-new2/usr/bin/w: -------------------------------------------------------------------------------- 1 | ../../bin/busybox -------------------------------------------------------------------------------- /riscv64-nommu-buildroot/riscv64-uclibc-nommu/initramfs/initramfs-new2/usr/bin/wall: -------------------------------------------------------------------------------- 1 | ../../bin/busybox -------------------------------------------------------------------------------- /riscv64-nommu-buildroot/riscv64-uclibc-nommu/initramfs/initramfs-new2/usr/bin/wc: -------------------------------------------------------------------------------- 1 | ../../bin/busybox -------------------------------------------------------------------------------- /riscv64-nommu-buildroot/riscv64-uclibc-nommu/initramfs/initramfs-new2/usr/bin/who: -------------------------------------------------------------------------------- 1 | ../../bin/busybox -------------------------------------------------------------------------------- /riscv64-nommu-buildroot/riscv64-uclibc-nommu/initramfs/initramfs-new2/usr/bin/yes: -------------------------------------------------------------------------------- 1 | ../../bin/busybox -------------------------------------------------------------------------------- /riscv64-nommu-buildroot/riscv64-uclibc-nommu/initramfs/initramfs-new2/usr/sbin/chroot: -------------------------------------------------------------------------------- 1 | ../../bin/busybox -------------------------------------------------------------------------------- /riscv64-nommu-buildroot/riscv64-uclibc-nommu/initramfs/initramfs-new2/usr/sbin/readahead: -------------------------------------------------------------------------------- 1 | ../../bin/busybox -------------------------------------------------------------------------------- /riscv64-nommu-buildroot/riscv64-uclibc-nommu/initramfs/sbin/runlevel: -------------------------------------------------------------------------------- 1 | ../bin/busybox -------------------------------------------------------------------------------- /riscv64-nommu-buildroot/riscv64-uclibc-nommu/initramfs/usr/bin/[: -------------------------------------------------------------------------------- 1 | ../../bin/busybox -------------------------------------------------------------------------------- /riscv64-nommu-buildroot/riscv64-uclibc-nommu/initramfs/usr/bin/[[: -------------------------------------------------------------------------------- 1 | ../../bin/busybox -------------------------------------------------------------------------------- /riscv64-nommu-buildroot/riscv64-uclibc-nommu/initramfs/usr/bin/basename: -------------------------------------------------------------------------------- 1 | ../../bin/busybox -------------------------------------------------------------------------------- /riscv64-nommu-buildroot/riscv64-uclibc-nommu/initramfs/usr/bin/dirname: -------------------------------------------------------------------------------- 1 | ../../bin/busybox -------------------------------------------------------------------------------- /riscv64-nommu-buildroot/riscv64-uclibc-nommu/initramfs/usr/bin/env: -------------------------------------------------------------------------------- 1 | ../../bin/busybox -------------------------------------------------------------------------------- /riscv64-nommu-buildroot/riscv64-uclibc-nommu/initramfs/usr/bin/expr: -------------------------------------------------------------------------------- 1 | ../../bin/busybox -------------------------------------------------------------------------------- /riscv64-nommu-buildroot/riscv64-uclibc-nommu/initramfs/usr/bin/head: -------------------------------------------------------------------------------- 1 | ../../bin/busybox -------------------------------------------------------------------------------- /riscv64-nommu-buildroot/riscv64-uclibc-nommu/initramfs/usr/bin/hostid: -------------------------------------------------------------------------------- 1 | ../../bin/busybox -------------------------------------------------------------------------------- /riscv64-nommu-buildroot/riscv64-uclibc-nommu/initramfs/usr/bin/id: -------------------------------------------------------------------------------- 1 | ../../bin/busybox -------------------------------------------------------------------------------- /riscv64-nommu-buildroot/riscv64-uclibc-nommu/initramfs/usr/bin/last: -------------------------------------------------------------------------------- 1 | ../../bin/busybox -------------------------------------------------------------------------------- /riscv64-nommu-buildroot/riscv64-uclibc-nommu/initramfs/usr/bin/printf: -------------------------------------------------------------------------------- 1 | ../../bin/busybox -------------------------------------------------------------------------------- /riscv64-nommu-buildroot/riscv64-uclibc-nommu/initramfs/usr/bin/readlink: -------------------------------------------------------------------------------- 1 | ../../bin/busybox -------------------------------------------------------------------------------- /riscv64-nommu-buildroot/riscv64-uclibc-nommu/initramfs/usr/bin/realpath: -------------------------------------------------------------------------------- 1 | ../../bin/busybox -------------------------------------------------------------------------------- /riscv64-nommu-buildroot/riscv64-uclibc-nommu/initramfs/usr/bin/seq: -------------------------------------------------------------------------------- 1 | ../../bin/busybox -------------------------------------------------------------------------------- /riscv64-nommu-buildroot/riscv64-uclibc-nommu/initramfs/usr/bin/tail: -------------------------------------------------------------------------------- 1 | ../../bin/busybox -------------------------------------------------------------------------------- /riscv64-nommu-buildroot/riscv64-uclibc-nommu/initramfs/usr/bin/tee: -------------------------------------------------------------------------------- 1 | ../../bin/busybox -------------------------------------------------------------------------------- /riscv64-nommu-buildroot/riscv64-uclibc-nommu/initramfs/usr/bin/test: -------------------------------------------------------------------------------- 1 | ../../bin/busybox -------------------------------------------------------------------------------- /riscv64-nommu-buildroot/riscv64-uclibc-nommu/initramfs/usr/bin/tty: -------------------------------------------------------------------------------- 1 | ../../bin/busybox -------------------------------------------------------------------------------- /riscv64-nommu-buildroot/riscv64-uclibc-nommu/initramfs/usr/bin/uniq: -------------------------------------------------------------------------------- 1 | ../../bin/busybox -------------------------------------------------------------------------------- /riscv64-nommu-buildroot/riscv64-uclibc-nommu/initramfs/usr/bin/unlink: -------------------------------------------------------------------------------- 1 | ../../bin/busybox -------------------------------------------------------------------------------- /riscv64-nommu-buildroot/riscv64-uclibc-nommu/initramfs/usr/bin/users: -------------------------------------------------------------------------------- 1 | ../../bin/busybox -------------------------------------------------------------------------------- /riscv64-nommu-buildroot/riscv64-uclibc-nommu/initramfs/usr/bin/w: -------------------------------------------------------------------------------- 1 | ../../bin/busybox -------------------------------------------------------------------------------- /riscv64-nommu-buildroot/riscv64-uclibc-nommu/initramfs/usr/bin/wall: -------------------------------------------------------------------------------- 1 | ../../bin/busybox -------------------------------------------------------------------------------- /riscv64-nommu-buildroot/riscv64-uclibc-nommu/initramfs/usr/bin/wc: -------------------------------------------------------------------------------- 1 | ../../bin/busybox -------------------------------------------------------------------------------- /riscv64-nommu-buildroot/riscv64-uclibc-nommu/initramfs/usr/bin/who: -------------------------------------------------------------------------------- 1 | ../../bin/busybox -------------------------------------------------------------------------------- /riscv64-nommu-buildroot/riscv64-uclibc-nommu/initramfs/usr/bin/yes: -------------------------------------------------------------------------------- 1 | ../../bin/busybox -------------------------------------------------------------------------------- /riscv64-nommu-buildroot/riscv64-uclibc-nommu/initramfs/usr/sbin/chroot: -------------------------------------------------------------------------------- 1 | ../../bin/busybox -------------------------------------------------------------------------------- /riscv64-nommu-buildroot/riscv64-uclibc-nommu/initramfs/usr/sbin/readahead: -------------------------------------------------------------------------------- 1 | ../../bin/busybox -------------------------------------------------------------------------------- /riscv64-nommu-buildroot/riscv64-uclibc-nommu/riscv64-uclibc-toolchain/bin/riscv64-linux-cc: -------------------------------------------------------------------------------- 1 | toolchain-wrapper -------------------------------------------------------------------------------- /riscv64-nommu-buildroot/riscv64-uclibc-nommu/riscv64-uclibc-toolchain/bin/riscv64-linux-cpp: -------------------------------------------------------------------------------- 1 | toolchain-wrapper -------------------------------------------------------------------------------- /riscv64-nommu-buildroot/riscv64-uclibc-nommu/riscv64-uclibc-toolchain/bin/riscv64-linux-gcc: -------------------------------------------------------------------------------- 1 | toolchain-wrapper -------------------------------------------------------------------------------- /riscv64-nommu-buildroot/riscv64-uclibc-nommu/riscv64-uclibc-toolchain/lib/libcc1.so: -------------------------------------------------------------------------------- 1 | libcc1.so.0.0.0 -------------------------------------------------------------------------------- /riscv64-nommu-buildroot/riscv64-uclibc-nommu/riscv64-uclibc-toolchain/lib/libcc1.so.0: -------------------------------------------------------------------------------- 1 | libcc1.so.0.0.0 -------------------------------------------------------------------------------- /riscv64-nommu-buildroot/riscv64-uclibc-nommu/riscv64-uclibc-toolchain/lib/libgmp.so: -------------------------------------------------------------------------------- 1 | libgmp.so.10.3.2 -------------------------------------------------------------------------------- /riscv64-nommu-buildroot/riscv64-uclibc-nommu/riscv64-uclibc-toolchain/lib/libgmp.so.10: -------------------------------------------------------------------------------- 1 | libgmp.so.10.3.2 -------------------------------------------------------------------------------- /riscv64-nommu-buildroot/riscv64-uclibc-nommu/riscv64-uclibc-toolchain/lib/libmpc.so: -------------------------------------------------------------------------------- 1 | libmpc.so.3.1.0 -------------------------------------------------------------------------------- /riscv64-nommu-buildroot/riscv64-uclibc-nommu/riscv64-uclibc-toolchain/lib/libmpc.so.3: -------------------------------------------------------------------------------- 1 | libmpc.so.3.1.0 -------------------------------------------------------------------------------- /riscv64-nommu-buildroot/riscv64-uclibc-nommu/riscv64-uclibc-toolchain/lib/libmpfr.so: -------------------------------------------------------------------------------- 1 | libmpfr.so.6.0.2 -------------------------------------------------------------------------------- /riscv64-nommu-buildroot/riscv64-uclibc-nommu/riscv64-uclibc-toolchain/lib/libmpfr.so.6: -------------------------------------------------------------------------------- 1 | libmpfr.so.6.0.2 -------------------------------------------------------------------------------- /riscv64-nommu-buildroot/riscv64-uclibc-nommu/riscv64-uclibc-toolchain/lib/libz.so: -------------------------------------------------------------------------------- 1 | libz.so.1.2.11 -------------------------------------------------------------------------------- /riscv64-nommu-buildroot/riscv64-uclibc-nommu/riscv64-uclibc-toolchain/lib/libz.so.1: -------------------------------------------------------------------------------- 1 | libz.so.1.2.11 -------------------------------------------------------------------------------- /riscv64-nommu-buildroot/riscv64-uclibc-nommu/riscv64-uclibc-toolchain/lib64: -------------------------------------------------------------------------------- 1 | lib -------------------------------------------------------------------------------- /riscv64-nommu-buildroot/riscv64-uclibc-nommu/riscv64-uclibc-toolchain/usr: -------------------------------------------------------------------------------- 1 | . -------------------------------------------------------------------------------- /riscv64-nommu-buildroot/support/testing/tests/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /riscv64-nommu-buildroot/support/testing/tests/boot/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /riscv64-nommu-buildroot/support/testing/tests/core/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /riscv64-nommu-buildroot/support/testing/tests/core/post-fakeroot.sh: -------------------------------------------------------------------------------- 1 | post-build.sh -------------------------------------------------------------------------------- /riscv64-nommu-buildroot/support/testing/tests/core/post-image.sh: -------------------------------------------------------------------------------- 1 | post-build.sh -------------------------------------------------------------------------------- /riscv64-nommu-buildroot/support/testing/tests/core/rootfs-overlay1/test-file1: -------------------------------------------------------------------------------- 1 | foobar 2 | -------------------------------------------------------------------------------- /riscv64-nommu-buildroot/support/testing/tests/core/rootfs-overlay2/etc/test-file2: -------------------------------------------------------------------------------- 1 | barfoo 2 | -------------------------------------------------------------------------------- /riscv64-nommu-buildroot/support/testing/tests/download/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /riscv64-nommu-buildroot/support/testing/tests/download/br2-external/git-hash/Config.in: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /riscv64-nommu-buildroot/support/testing/tests/download/br2-external/git-refs/Config.in: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /riscv64-nommu-buildroot/support/testing/tests/fs/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /riscv64-nommu-buildroot/support/testing/tests/init/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /riscv64-nommu-buildroot/support/testing/tests/init/systemd-factory/var/foo/bar: -------------------------------------------------------------------------------- 1 | foobar 2 | -------------------------------------------------------------------------------- /riscv64-nommu-buildroot/support/testing/tests/package/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /riscv64-nommu-buildroot/support/testing/tests/toolchain/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /riscv64-nommu-buildroot/support/testing/tests/utils/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /riscv64-nommu-buildroot/support/testing/tests/utils/br2-external/Config.in: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /riscv64-nommu-buildroot/support/testing/tests/utils/br2-external/external.desc: -------------------------------------------------------------------------------- 1 | name: CHECK_PACKAGE 2 | -------------------------------------------------------------------------------- /riscv64-nommu-buildroot/system/skeleton/dev/.empty: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /riscv64-nommu-buildroot/system/skeleton/dev/fd: -------------------------------------------------------------------------------- 1 | ../proc/self/fd -------------------------------------------------------------------------------- /riscv64-nommu-buildroot/system/skeleton/dev/stderr: -------------------------------------------------------------------------------- 1 | ../proc/self/fd/2 -------------------------------------------------------------------------------- /riscv64-nommu-buildroot/system/skeleton/dev/stdin: -------------------------------------------------------------------------------- 1 | ../proc/self/fd/0 -------------------------------------------------------------------------------- /riscv64-nommu-buildroot/system/skeleton/dev/stdout: -------------------------------------------------------------------------------- 1 | ../proc/self/fd/1 -------------------------------------------------------------------------------- /riscv64-nommu-buildroot/system/skeleton/etc/hosts: -------------------------------------------------------------------------------- 1 | 127.0.0.1 localhost 2 | -------------------------------------------------------------------------------- /riscv64-nommu-buildroot/system/skeleton/etc/mtab: -------------------------------------------------------------------------------- 1 | ../proc/self/mounts -------------------------------------------------------------------------------- /riscv64-nommu-buildroot/system/skeleton/etc/profile.d/umask.sh: -------------------------------------------------------------------------------- 1 | umask 022 2 | -------------------------------------------------------------------------------- /riscv64-nommu-buildroot/system/skeleton/etc/resolv.conf: -------------------------------------------------------------------------------- 1 | ../tmp/resolv.conf -------------------------------------------------------------------------------- /riscv64-nommu-buildroot/system/skeleton/media/.empty: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /riscv64-nommu-buildroot/system/skeleton/mnt/.empty: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /riscv64-nommu-buildroot/system/skeleton/opt/.empty: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /riscv64-nommu-buildroot/system/skeleton/proc/.empty: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /riscv64-nommu-buildroot/system/skeleton/root/.empty: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /riscv64-nommu-buildroot/system/skeleton/run/.empty: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /riscv64-nommu-buildroot/system/skeleton/sys/.empty: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /riscv64-nommu-buildroot/system/skeleton/tmp/.empty: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /riscv64-nommu-buildroot/system/skeleton/usr/bin/.empty: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /riscv64-nommu-buildroot/system/skeleton/usr/lib/.empty: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /riscv64-nommu-buildroot/system/skeleton/usr/sbin/.empty: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /riscv64-nommu-buildroot/utils/checkpackagelib/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tinycc/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vowstar/k210-linux-nommu/HEAD/tinycc/.gitignore -------------------------------------------------------------------------------- /tinycc/COPYING: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vowstar/k210-linux-nommu/HEAD/tinycc/COPYING -------------------------------------------------------------------------------- /tinycc/Changelog: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vowstar/k210-linux-nommu/HEAD/tinycc/Changelog -------------------------------------------------------------------------------- /tinycc/CodingStyle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vowstar/k210-linux-nommu/HEAD/tinycc/CodingStyle -------------------------------------------------------------------------------- /tinycc/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vowstar/k210-linux-nommu/HEAD/tinycc/Makefile -------------------------------------------------------------------------------- /tinycc/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vowstar/k210-linux-nommu/HEAD/tinycc/README -------------------------------------------------------------------------------- /tinycc/RELICENSING: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vowstar/k210-linux-nommu/HEAD/tinycc/RELICENSING -------------------------------------------------------------------------------- /tinycc/TODO: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vowstar/k210-linux-nommu/HEAD/tinycc/TODO -------------------------------------------------------------------------------- /tinycc/VERSION: -------------------------------------------------------------------------------- 1 | 0.9.27 2 | -------------------------------------------------------------------------------- /tinycc/arm-asm.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vowstar/k210-linux-nommu/HEAD/tinycc/arm-asm.c -------------------------------------------------------------------------------- /tinycc/arm-gen.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vowstar/k210-linux-nommu/HEAD/tinycc/arm-gen.c -------------------------------------------------------------------------------- /tinycc/arm-link.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vowstar/k210-linux-nommu/HEAD/tinycc/arm-link.c -------------------------------------------------------------------------------- /tinycc/arm64-gen.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vowstar/k210-linux-nommu/HEAD/tinycc/arm64-gen.c -------------------------------------------------------------------------------- /tinycc/arm64-link.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vowstar/k210-linux-nommu/HEAD/tinycc/arm64-link.c -------------------------------------------------------------------------------- /tinycc/c67-gen.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vowstar/k210-linux-nommu/HEAD/tinycc/c67-gen.c -------------------------------------------------------------------------------- /tinycc/c67-link.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vowstar/k210-linux-nommu/HEAD/tinycc/c67-link.c -------------------------------------------------------------------------------- /tinycc/coff.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vowstar/k210-linux-nommu/HEAD/tinycc/coff.h -------------------------------------------------------------------------------- /tinycc/configure: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vowstar/k210-linux-nommu/HEAD/tinycc/configure -------------------------------------------------------------------------------- /tinycc/conftest.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vowstar/k210-linux-nommu/HEAD/tinycc/conftest.c -------------------------------------------------------------------------------- /tinycc/elf.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vowstar/k210-linux-nommu/HEAD/tinycc/elf.h -------------------------------------------------------------------------------- /tinycc/examples/ex1.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vowstar/k210-linux-nommu/HEAD/tinycc/examples/ex1.c -------------------------------------------------------------------------------- /tinycc/examples/ex2.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vowstar/k210-linux-nommu/HEAD/tinycc/examples/ex2.c -------------------------------------------------------------------------------- /tinycc/examples/ex3.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vowstar/k210-linux-nommu/HEAD/tinycc/examples/ex3.c -------------------------------------------------------------------------------- /tinycc/examples/ex4.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vowstar/k210-linux-nommu/HEAD/tinycc/examples/ex4.c -------------------------------------------------------------------------------- /tinycc/examples/ex5.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vowstar/k210-linux-nommu/HEAD/tinycc/examples/ex5.c -------------------------------------------------------------------------------- /tinycc/i386-asm.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vowstar/k210-linux-nommu/HEAD/tinycc/i386-asm.c -------------------------------------------------------------------------------- /tinycc/i386-asm.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vowstar/k210-linux-nommu/HEAD/tinycc/i386-asm.h -------------------------------------------------------------------------------- /tinycc/i386-gen.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vowstar/k210-linux-nommu/HEAD/tinycc/i386-gen.c -------------------------------------------------------------------------------- /tinycc/i386-link.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vowstar/k210-linux-nommu/HEAD/tinycc/i386-link.c -------------------------------------------------------------------------------- /tinycc/i386-tok.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vowstar/k210-linux-nommu/HEAD/tinycc/i386-tok.h -------------------------------------------------------------------------------- /tinycc/il-gen.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vowstar/k210-linux-nommu/HEAD/tinycc/il-gen.c -------------------------------------------------------------------------------- /tinycc/il-opcodes.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vowstar/k210-linux-nommu/HEAD/tinycc/il-opcodes.h -------------------------------------------------------------------------------- /tinycc/lib/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vowstar/k210-linux-nommu/HEAD/tinycc/lib/Makefile -------------------------------------------------------------------------------- /tinycc/lib/alloca86.S: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vowstar/k210-linux-nommu/HEAD/tinycc/lib/alloca86.S -------------------------------------------------------------------------------- /tinycc/lib/armeabi.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vowstar/k210-linux-nommu/HEAD/tinycc/lib/armeabi.c -------------------------------------------------------------------------------- /tinycc/lib/armflush.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vowstar/k210-linux-nommu/HEAD/tinycc/lib/armflush.c -------------------------------------------------------------------------------- /tinycc/lib/bcheck.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vowstar/k210-linux-nommu/HEAD/tinycc/lib/bcheck.c -------------------------------------------------------------------------------- /tinycc/lib/bt-dll.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vowstar/k210-linux-nommu/HEAD/tinycc/lib/bt-dll.c -------------------------------------------------------------------------------- /tinycc/lib/bt-exe.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vowstar/k210-linux-nommu/HEAD/tinycc/lib/bt-exe.c -------------------------------------------------------------------------------- /tinycc/lib/bt-log.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vowstar/k210-linux-nommu/HEAD/tinycc/lib/bt-log.c -------------------------------------------------------------------------------- /tinycc/lib/libtcc1.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vowstar/k210-linux-nommu/HEAD/tinycc/lib/libtcc1.c -------------------------------------------------------------------------------- /tinycc/lib/va_list.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vowstar/k210-linux-nommu/HEAD/tinycc/lib/va_list.c -------------------------------------------------------------------------------- /tinycc/libtcc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vowstar/k210-linux-nommu/HEAD/tinycc/libtcc.c -------------------------------------------------------------------------------- /tinycc/libtcc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vowstar/k210-linux-nommu/HEAD/tinycc/libtcc.h -------------------------------------------------------------------------------- /tinycc/riscv64-gen.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vowstar/k210-linux-nommu/HEAD/tinycc/riscv64-gen.c -------------------------------------------------------------------------------- /tinycc/riscv64-link.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vowstar/k210-linux-nommu/HEAD/tinycc/riscv64-link.c -------------------------------------------------------------------------------- /tinycc/stab.def: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vowstar/k210-linux-nommu/HEAD/tinycc/stab.def -------------------------------------------------------------------------------- /tinycc/stab.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vowstar/k210-linux-nommu/HEAD/tinycc/stab.h -------------------------------------------------------------------------------- /tinycc/tcc-doc.texi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vowstar/k210-linux-nommu/HEAD/tinycc/tcc-doc.texi -------------------------------------------------------------------------------- /tinycc/tcc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vowstar/k210-linux-nommu/HEAD/tinycc/tcc.c -------------------------------------------------------------------------------- /tinycc/tcc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vowstar/k210-linux-nommu/HEAD/tinycc/tcc.h -------------------------------------------------------------------------------- /tinycc/tccasm.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vowstar/k210-linux-nommu/HEAD/tinycc/tccasm.c -------------------------------------------------------------------------------- /tinycc/tcccoff.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vowstar/k210-linux-nommu/HEAD/tinycc/tcccoff.c -------------------------------------------------------------------------------- /tinycc/tccelf.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vowstar/k210-linux-nommu/HEAD/tinycc/tccelf.c -------------------------------------------------------------------------------- /tinycc/tccgen.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vowstar/k210-linux-nommu/HEAD/tinycc/tccgen.c -------------------------------------------------------------------------------- /tinycc/tcclib.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vowstar/k210-linux-nommu/HEAD/tinycc/tcclib.h -------------------------------------------------------------------------------- /tinycc/tccpe.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vowstar/k210-linux-nommu/HEAD/tinycc/tccpe.c -------------------------------------------------------------------------------- /tinycc/tccpp.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vowstar/k210-linux-nommu/HEAD/tinycc/tccpp.c -------------------------------------------------------------------------------- /tinycc/tccrun.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vowstar/k210-linux-nommu/HEAD/tinycc/tccrun.c -------------------------------------------------------------------------------- /tinycc/tcctok.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vowstar/k210-linux-nommu/HEAD/tinycc/tcctok.h -------------------------------------------------------------------------------- /tinycc/tcctools.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vowstar/k210-linux-nommu/HEAD/tinycc/tcctools.c -------------------------------------------------------------------------------- /tinycc/tests/42test.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vowstar/k210-linux-nommu/HEAD/tinycc/tests/42test.h -------------------------------------------------------------------------------- /tinycc/tests/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vowstar/k210-linux-nommu/HEAD/tinycc/tests/Makefile -------------------------------------------------------------------------------- /tinycc/tests/pp/01.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vowstar/k210-linux-nommu/HEAD/tinycc/tests/pp/01.c -------------------------------------------------------------------------------- /tinycc/tests/pp/01.expect: -------------------------------------------------------------------------------- 1 | char p[] = "x ## y"; 2 | -------------------------------------------------------------------------------- /tinycc/tests/pp/02.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vowstar/k210-linux-nommu/HEAD/tinycc/tests/pp/02.c -------------------------------------------------------------------------------- /tinycc/tests/pp/03.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vowstar/k210-linux-nommu/HEAD/tinycc/tests/pp/03.c -------------------------------------------------------------------------------- /tinycc/tests/pp/04.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vowstar/k210-linux-nommu/HEAD/tinycc/tests/pp/04.c -------------------------------------------------------------------------------- /tinycc/tests/pp/04.expect: -------------------------------------------------------------------------------- 1 | (1) 2 | -------------------------------------------------------------------------------- /tinycc/tests/pp/05.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vowstar/k210-linux-nommu/HEAD/tinycc/tests/pp/05.c -------------------------------------------------------------------------------- /tinycc/tests/pp/06.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vowstar/k210-linux-nommu/HEAD/tinycc/tests/pp/06.c -------------------------------------------------------------------------------- /tinycc/tests/pp/06.expect: -------------------------------------------------------------------------------- 1 | foo 2 | -------------------------------------------------------------------------------- /tinycc/tests/pp/07.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vowstar/k210-linux-nommu/HEAD/tinycc/tests/pp/07.c -------------------------------------------------------------------------------- /tinycc/tests/pp/07.expect: -------------------------------------------------------------------------------- 1 | a 2 | YES 3 | -------------------------------------------------------------------------------- /tinycc/tests/pp/08.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vowstar/k210-linux-nommu/HEAD/tinycc/tests/pp/08.c -------------------------------------------------------------------------------- /tinycc/tests/pp/08.expect: -------------------------------------------------------------------------------- 1 | (hej.s_s.s_pos) 2 | -------------------------------------------------------------------------------- /tinycc/tests/pp/09.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vowstar/k210-linux-nommu/HEAD/tinycc/tests/pp/09.c -------------------------------------------------------------------------------- /tinycc/tests/pp/09.expect: -------------------------------------------------------------------------------- 1 | aaaaoooo 2 | -------------------------------------------------------------------------------- /tinycc/tests/pp/10.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vowstar/k210-linux-nommu/HEAD/tinycc/tests/pp/10.c -------------------------------------------------------------------------------- /tinycc/tests/pp/11.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vowstar/k210-linux-nommu/HEAD/tinycc/tests/pp/11.c -------------------------------------------------------------------------------- /tinycc/tests/pp/12.S: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vowstar/k210-linux-nommu/HEAD/tinycc/tests/pp/12.S -------------------------------------------------------------------------------- /tinycc/tests/pp/13.S: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vowstar/k210-linux-nommu/HEAD/tinycc/tests/pp/13.S -------------------------------------------------------------------------------- /tinycc/tests/pp/14.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vowstar/k210-linux-nommu/HEAD/tinycc/tests/pp/14.c -------------------------------------------------------------------------------- /tinycc/tests/pp/15.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vowstar/k210-linux-nommu/HEAD/tinycc/tests/pp/15.c -------------------------------------------------------------------------------- /tinycc/tests/pp/16.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vowstar/k210-linux-nommu/HEAD/tinycc/tests/pp/16.c -------------------------------------------------------------------------------- /tinycc/tests/pp/16.expect: -------------------------------------------------------------------------------- 1 | 2 | 16.c:3: warning: A redefined 3 | -------------------------------------------------------------------------------- /tinycc/tests/pp/17.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vowstar/k210-linux-nommu/HEAD/tinycc/tests/pp/17.c -------------------------------------------------------------------------------- /tinycc/tests/pp/18.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vowstar/k210-linux-nommu/HEAD/tinycc/tests/pp/18.c -------------------------------------------------------------------------------- /tinycc/tests/pp/19.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vowstar/k210-linux-nommu/HEAD/tinycc/tests/pp/19.c -------------------------------------------------------------------------------- /tinycc/tests/pp/20.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vowstar/k210-linux-nommu/HEAD/tinycc/tests/pp/20.c -------------------------------------------------------------------------------- /tinycc/tests/pp/21.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vowstar/k210-linux-nommu/HEAD/tinycc/tests/pp/21.c -------------------------------------------------------------------------------- /tinycc/tests/testfp.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vowstar/k210-linux-nommu/HEAD/tinycc/tests/testfp.c -------------------------------------------------------------------------------- /tinycc/tests/tests2/00_assignment.expect: -------------------------------------------------------------------------------- 1 | 42 2 | 64 3 | 12, 34 4 | -------------------------------------------------------------------------------- /tinycc/tests/tests2/07_function.expect: -------------------------------------------------------------------------------- 1 | 9 2 | 16 3 | a=1234 4 | qfunc() 5 | -------------------------------------------------------------------------------- /tinycc/tests/tests2/100_c99array-decls.expect: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tinycc/tests/tests2/102_alignas.expect: -------------------------------------------------------------------------------- 1 | 3T0A. -------------------------------------------------------------------------------- /tinycc/tests/tests2/103_implicit_memmove.expect: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tinycc/tests/tests2/105_local_extern.expect: -------------------------------------------------------------------------------- 1 | f 2 | f 3 | -------------------------------------------------------------------------------- /tinycc/tests/tests2/106_pthread.expect: -------------------------------------------------------------------------------- 1 | ok 2 | -------------------------------------------------------------------------------- /tinycc/tests/tests2/107_stack_safe.expect: -------------------------------------------------------------------------------- 1 | 1 2 3 4 -------------------------------------------------------------------------------- /tinycc/tests/tests2/110_average.expect: -------------------------------------------------------------------------------- 1 | 15 2 2 | -------------------------------------------------------------------------------- /tinycc/tests/tests2/111_conversion.expect: -------------------------------------------------------------------------------- 1 | 42 2 | -------------------------------------------------------------------------------- /tinycc/tests/tests2/12_hashdefine.expect: -------------------------------------------------------------------------------- 1 | 12 2 | 12, 24, 36 3 | -------------------------------------------------------------------------------- /tinycc/tests/tests2/17_enum.expect: -------------------------------------------------------------------------------- 1 | 0 1 2 3 54 73 74 75 2 | 12 3 | 54 4 | enum to int: 1 5 | -------------------------------------------------------------------------------- /tinycc/tests/tests2/18_include.h: -------------------------------------------------------------------------------- 1 | printf("included\n"); 2 | -------------------------------------------------------------------------------- /tinycc/tests/tests2/20_pointer_comparison.expect: -------------------------------------------------------------------------------- 1 | 12 2 | 34 3 | 0 4 | 1 5 | 1 6 | 0 7 | -------------------------------------------------------------------------------- /tinycc/tests/tests2/27_sizeof.expect: -------------------------------------------------------------------------------- 1 | 1 2 | 4 3 | 8 4 | 4 5 | -------------------------------------------------------------------------------- /tinycc/tests/tests2/29_array_address.expect: -------------------------------------------------------------------------------- 1 | bcdef 2 | -------------------------------------------------------------------------------- /tinycc/tests/tests2/35_sizeof.expect: -------------------------------------------------------------------------------- 1 | 1 1 2 | 2 2 3 | -------------------------------------------------------------------------------- /tinycc/tests/tests2/41_hashif.expect: -------------------------------------------------------------------------------- 1 | #include test 2 | b 3 | g 4 | i 5 | p 6 | r 7 | -------------------------------------------------------------------------------- /tinycc/tests/tests2/42_function_pointer.expect: -------------------------------------------------------------------------------- 1 | yo 24 2 | 42 3 | -------------------------------------------------------------------------------- /tinycc/tests/tests2/43_void_param.expect: -------------------------------------------------------------------------------- 1 | yo 2 | -------------------------------------------------------------------------------- /tinycc/tests/tests2/44_scoped_declarations.expect: -------------------------------------------------------------------------------- 1 | it's all good 2 | -------------------------------------------------------------------------------- /tinycc/tests/tests2/47_switch_return.expect: -------------------------------------------------------------------------------- 1 | 1 2 | 2 3 | out 4 | 3 5 | -------------------------------------------------------------------------------- /tinycc/tests/tests2/48_nested_break.expect: -------------------------------------------------------------------------------- 1 | 0 2 | -------------------------------------------------------------------------------- /tinycc/tests/tests2/55_lshift_type.expect: -------------------------------------------------------------------------------- 1 | 0 test(s) failed 2 | -------------------------------------------------------------------------------- /tinycc/tests/tests2/64_macro_nesting.expect: -------------------------------------------------------------------------------- 1 | 42 2 | -------------------------------------------------------------------------------- /tinycc/tests/tests2/67_macro_concat.expect: -------------------------------------------------------------------------------- 1 | jim: 21, bob: 42 2 | jim: 63 3 | -------------------------------------------------------------------------------- /tinycc/tests/tests2/71_macro_empty_arg.expect: -------------------------------------------------------------------------------- 1 | 17 2 | -------------------------------------------------------------------------------- /tinycc/tests/tests2/80_flexarray.expect: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tinycc/tests/tests2/81_types.expect: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tinycc/tests/tests2/82_attribs_position.expect: -------------------------------------------------------------------------------- 1 | 42 2 | 42 3 | -------------------------------------------------------------------------------- /tinycc/tests/tests2/83_utf8_in_identifiers.expect: -------------------------------------------------------------------------------- 1 | привет=0.1 2 | Lefèvre=2 3 | -------------------------------------------------------------------------------- /tinycc/tests/tests2/84_hex-float.expect: -------------------------------------------------------------------------------- 1 | n+1 = 15 2 | -------------------------------------------------------------------------------- /tinycc/tests/tests2/85_asm-outside-function.expect: -------------------------------------------------------------------------------- 1 | okay 2 | -------------------------------------------------------------------------------- /tinycc/tests/tests2/86_memory-model.expect: -------------------------------------------------------------------------------- 1 | Ok 2 | -------------------------------------------------------------------------------- /tinycc/tests/tests2/91_ptr_longlong_arith32.expect: -------------------------------------------------------------------------------- 1 | data = "0123-5678" 2 | -------------------------------------------------------------------------------- /tinycc/tests/tests2/92_enum_bitfield.expect: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tinycc/tests/tests2/95_bitfields_ms.c: -------------------------------------------------------------------------------- 1 | #define MS_BITFIELDS 1 2 | #include "95_bitfields.c" 3 | -------------------------------------------------------------------------------- /tinycc/tests/tests2/99_fastcall.expect: -------------------------------------------------------------------------------- 1 | TEST OK 2 | -------------------------------------------------------------------------------- /tinycc/texi2pod.pl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vowstar/k210-linux-nommu/HEAD/tinycc/texi2pod.pl -------------------------------------------------------------------------------- /tinycc/x86_64-asm.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vowstar/k210-linux-nommu/HEAD/tinycc/x86_64-asm.h -------------------------------------------------------------------------------- /tinycc/x86_64-gen.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vowstar/k210-linux-nommu/HEAD/tinycc/x86_64-gen.c -------------------------------------------------------------------------------- /tinycc/x86_64-link.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vowstar/k210-linux-nommu/HEAD/tinycc/x86_64-link.c --------------------------------------------------------------------------------