├── Makefile ├── alsa-utils-1.0.23 ├── ABOUT-NLS ├── COPYING ├── ChangeLog ├── INSTALL ├── Makefile.am ├── Makefile.in ├── README ├── TODO ├── acinclude.m4 ├── aclocal.m4 ├── alsaconf │ ├── Makefile.am │ ├── Makefile.in │ ├── alsaconf.8 │ ├── alsaconf.fr.8 │ ├── alsaconf.in │ └── po │ │ ├── Makefile.in │ │ ├── ja.po │ │ └── ru.po ├── alsactl │ ├── Makefile.am │ ├── Makefile.in │ ├── alsactl.1 │ ├── alsactl.c │ ├── alsactl.h │ ├── alsactl_init.7 │ ├── alsactl_init.xml │ ├── init │ │ ├── 00main │ │ ├── Makefile.am │ │ ├── Makefile.in │ │ ├── default │ │ ├── hda │ │ ├── help │ │ ├── info │ │ └── test │ ├── init_parse.c │ ├── init_sysdeps.c │ ├── init_sysfs.c │ ├── init_utils_run.c │ ├── init_utils_string.c │ ├── list.h │ ├── state.c │ └── utils.c ├── alsamixer │ ├── Makefile.am │ ├── Makefile.in │ ├── alsamixer.1 │ ├── card_select.c │ ├── card_select.h │ ├── cli.c │ ├── colors.c │ ├── colors.h │ ├── device_name.c │ ├── device_name.h │ ├── die.c │ ├── die.h │ ├── mainloop.c │ ├── mainloop.h │ ├── mem.c │ ├── mem.h │ ├── mixer_controls.c │ ├── mixer_controls.h │ ├── mixer_display.c │ ├── mixer_display.h │ ├── mixer_widget.c │ ├── mixer_widget.h │ ├── proc_files.c │ ├── proc_files.h │ ├── textbox.c │ ├── textbox.h │ ├── utils.c │ ├── utils.h │ ├── widget.c │ └── widget.h ├── amidi │ ├── Makefile.am │ ├── Makefile.in │ ├── amidi.1 │ └── amidi.c ├── amixer │ ├── Makefile.am │ ├── Makefile.in │ ├── amixer.1 │ ├── amixer.c │ └── amixer.h ├── aplay │ ├── Makefile.am │ ├── Makefile.in │ ├── aplay.1 │ ├── aplay.c │ ├── arecord │ ├── arecord.1 │ ├── formats.h │ ├── test.pk │ └── test.wav ├── config.guess ├── config.rpath ├── config.sub ├── configure ├── configure.in ├── depcomp ├── gitcompile ├── iecset │ ├── Makefile.am │ ├── Makefile.in │ ├── iecbits.c │ ├── iecset.1 │ └── iecset.c ├── include │ ├── Makefile.am │ ├── Makefile.in │ ├── aconfig.h.in │ ├── gettext.h │ ├── gettext_curses.h │ └── version.h ├── install-sh ├── m4 │ ├── Makefile.am │ ├── Makefile.in │ ├── codeset.m4 │ ├── gettext.m4 │ ├── glibc2.m4 │ ├── glibc21.m4 │ ├── iconv.m4 │ ├── intdiv0.m4 │ ├── intmax.m4 │ ├── inttypes-h.m4 │ ├── inttypes-pri.m4 │ ├── inttypes_h.m4 │ ├── lcmessage.m4 │ ├── lib-ld.m4 │ ├── lib-link.m4 │ ├── lib-prefix.m4 │ ├── lock.m4 │ ├── longdouble.m4 │ ├── longlong.m4 │ ├── nls.m4 │ ├── po.m4 │ ├── printf-posix.m4 │ ├── progtest.m4 │ ├── signed.m4 │ ├── size_max.m4 │ ├── stdint_h.m4 │ ├── uintmax_t.m4 │ ├── ulonglong.m4 │ ├── visibility.m4 │ ├── wchar_t.m4 │ ├── wint_t.m4 │ └── xsize.m4 ├── missing ├── po │ ├── LINGUAS │ ├── Makefile.in.in │ ├── Makevars │ ├── POTFILES.in │ ├── Rules-quot │ ├── alsa-utils.pot │ ├── boldquot.sed │ ├── de.gmo │ ├── de.po │ ├── en@boldquot.header │ ├── en@quot.header │ ├── insert-header.sin │ ├── ja.gmo │ ├── ja.po │ ├── quot.sed │ ├── remove-potcdate.sin │ └── stamp-po ├── seq │ ├── Makefile.am │ ├── Makefile.in │ ├── aconnect │ │ ├── Makefile.am │ │ ├── Makefile.in │ │ ├── README.aconnect │ │ ├── aconnect.1 │ │ └── aconnect.c │ ├── aplaymidi │ │ ├── Makefile.am │ │ ├── Makefile.in │ │ ├── aplaymidi.1 │ │ ├── aplaymidi.c │ │ ├── arecordmidi.1 │ │ └── arecordmidi.c │ ├── aseqdump │ │ ├── Makefile.am │ │ ├── Makefile.in │ │ ├── aseqdump.1 │ │ └── aseqdump.c │ └── aseqnet │ │ ├── Makefile.am │ │ ├── Makefile.in │ │ ├── README.aseqnet │ │ ├── aseqnet.1 │ │ └── aseqnet.c ├── speaker-test │ ├── Makefile.am │ ├── Makefile.in │ ├── pink.c │ ├── pink.h │ ├── readme.txt │ ├── samples │ │ ├── Front_Center.wav │ │ ├── Front_Left.wav │ │ ├── Front_Right.wav │ │ ├── Makefile.am │ │ ├── Makefile.in │ │ ├── Noise.wav │ │ ├── Rear_Center.wav │ │ ├── Rear_Left.wav │ │ ├── Rear_Right.wav │ │ ├── Side_Left.wav │ │ ├── Side_Right.wav │ │ └── sample_map.csv │ ├── speaker-test.1 │ └── speaker-test.c ├── utils │ ├── Makefile.am │ ├── Makefile.in │ ├── alsa-utils.spec.in │ └── buildrpm └── version ├── benchmark └── netperf-2.6.0 │ ├── AUTHORS │ ├── COPYING │ ├── ChangeLog │ ├── INSTALL │ ├── Makefile │ ├── Makefile.am │ ├── Makefile.in │ ├── NEWS │ ├── README │ ├── README.aix │ ├── README.hpux │ ├── README.osx │ ├── README.ovms │ ├── README.solaris │ ├── README.vmware │ ├── README.windows │ ├── Release_Notes │ ├── acinclude.m4 │ ├── aclocal.m4 │ ├── autogen.sh │ ├── config.guess │ ├── config.h │ ├── config.h.in │ ├── config.log │ ├── config.status │ ├── config.sub │ ├── configure │ ├── configure.ac │ ├── depcomp │ ├── doc │ ├── Makefile │ ├── Makefile.am │ ├── Makefile.in │ ├── examples │ │ ├── Makefile │ │ ├── Makefile.am │ │ ├── Makefile.in │ │ ├── arr_script │ │ ├── packet_byte_script │ │ ├── sctp_stream_script │ │ ├── snapshot_script │ │ ├── tcp_range_script │ │ ├── tcp_rr_script │ │ ├── tcp_stream_script │ │ ├── udp_rr_script │ │ └── udp_stream_script │ ├── netperf.info │ ├── netperf.man │ ├── netperf.texi │ ├── netperf_old.ps │ ├── netserver.man │ └── texinfo.tex │ ├── inet_ntop.c │ ├── install-sh │ ├── m4 │ ├── .svn │ │ ├── all-wcprops │ │ └── entries │ └── m4 │ │ ├── .svn │ │ ├── all-wcprops │ │ ├── entries │ │ └── text-base │ │ │ ├── salen.m4.svn-base │ │ │ ├── sockaddrin6.m4.svn-base │ │ │ └── sockinttypes.m4.svn-base │ │ ├── salen.m4 │ │ ├── sockaddrin6.m4 │ │ └── sockinttypes.m4 │ ├── missing │ ├── mkinstalldirs │ ├── netperf.spec │ ├── netperf.spec.in │ ├── src │ ├── .deps │ │ ├── dscp.Po │ │ ├── net_uuid.Po │ │ ├── netcpu_procstat.Po │ │ ├── netdrv_ethtool.Po │ │ ├── netlib.Po │ │ ├── netperf.Po │ │ ├── netrt_rtnetlink.Po │ │ ├── netsec_linux.Po │ │ ├── netsec_none.Po │ │ ├── netserver.Po │ │ ├── netsh.Po │ │ ├── netslot_linux.Po │ │ ├── netsys_linux.Po │ │ ├── nettest_bsd.Po │ │ ├── nettest_dlpi.Po │ │ ├── nettest_omni.Po │ │ ├── nettest_sctp.Po │ │ ├── nettest_sdp.Po │ │ ├── nettest_unix.Po │ │ └── nettest_xti.Po │ ├── Makefile │ ├── Makefile.am │ ├── Makefile.in │ ├── Makefile.uw │ ├── Makefile~ │ ├── NetPerfDir │ │ ├── inet_ntop.c │ │ ├── makefile │ │ └── sources │ ├── NetServerDir │ │ ├── inet_ntop.c │ │ ├── makefile │ │ └── sources │ ├── dirs │ ├── dscp.c │ ├── hist.h │ ├── missing │ │ ├── .deps │ │ │ ├── getaddrinfo.Po │ │ │ └── inet_ntop.Po │ │ ├── Makefile │ │ ├── Makefile.am │ │ ├── Makefile.in │ │ ├── getaddrinfo.c │ │ ├── getaddrinfo.h │ │ ├── inet_ntop.c │ │ └── m4 │ │ │ ├── Makefile │ │ │ ├── Makefile.am │ │ │ ├── Makefile.in │ │ │ ├── herrno.m4 │ │ │ ├── in6addr.m4 │ │ │ ├── salen.m4 │ │ │ ├── sockaddrin6.m4 │ │ │ ├── sockinttypes.m4 │ │ │ ├── socklent.m4 │ │ │ └── type_socklen_t.m4 │ ├── net_uuid.c │ ├── netcpu.h │ ├── netcpu_kstat.c │ ├── netcpu_kstat10.c │ ├── netcpu_looper.c │ ├── netcpu_none.c │ ├── netcpu_ntperf.c │ ├── netcpu_osx.c │ ├── netcpu_perfstat.c │ ├── netcpu_procstat.c │ ├── netcpu_pstat.c │ ├── netcpu_pstatnew.c │ ├── netcpu_sysctl.c │ ├── netdrv_ethtool.c │ ├── netdrv_none.c │ ├── netdrv_solaris.c │ ├── netlib.c │ ├── netlib.h │ ├── netperf.c │ ├── netperf_version.h.in │ ├── netrt_none.c │ ├── netrt_rtmget.c │ ├── netrt_rtnetlink.c │ ├── netsec_linux.c │ ├── netsec_none.c │ ├── netserver.c │ ├── netsh.c │ ├── netsh.h │ ├── netslot_linux.c │ ├── netslot_none.c │ ├── netslot_solaris.c │ ├── netslot_ux1131.c │ ├── netsys_hpux11i.c │ ├── netsys_linux.c │ ├── netsys_none.c │ ├── netsys_solaris.c │ ├── nettest_bsd.c │ ├── nettest_bsd.h │ ├── nettest_dlpi.c │ ├── nettest_dlpi.h │ ├── nettest_omni.c │ ├── nettest_sctp.c │ ├── nettest_sctp.h │ ├── nettest_sdp.c │ ├── nettest_sdp.h │ ├── nettest_unix.c │ ├── nettest_unix.h │ ├── nettest_xti.c │ └── nettest_xti.h │ └── stamp-h1 ├── busybox-1.22.1 ├── .indent.pro ├── AUTHORS ├── Config.in ├── INSTALL ├── LICENSE ├── Makefile ├── Makefile.custom ├── Makefile.flags ├── Makefile.help ├── README ├── TODO ├── TODO_unicode ├── applets │ ├── Kbuild.src │ ├── applet_tables.c │ ├── applets.c │ ├── busybox.mkll │ ├── busybox.mksuid │ ├── individual.c │ ├── install.sh │ ├── usage.c │ ├── usage_compressed │ └── usage_pod.c ├── applets_sh │ ├── README │ ├── dos2unix │ ├── nologin │ ├── tac │ └── unix2dos ├── arch │ └── i386 │ │ └── Makefile ├── 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 │ │ ├── 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 │ │ ├── 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 │ │ └── 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 │ ├── rpm2cpio.c │ ├── tar.c │ └── unzip.c ├── configs │ ├── TEST_nommu_defconfig │ ├── TEST_noprintf_defconfig │ ├── TEST_rh9_defconfig │ ├── android2_defconfig │ ├── android_defconfig │ ├── android_ndk_defconfig │ ├── cygwin_defconfig │ └── freebsd_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 │ ├── cal.c │ ├── cat.c │ ├── catv.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 │ ├── false.c │ ├── fold.c │ ├── fsync.c │ ├── head.c │ ├── hostid.c │ ├── id.c │ ├── id_test.sh │ ├── install.c │ ├── length.c.disabled │ ├── libcoreutils │ │ ├── Kbuild.src │ │ ├── coreutils.h │ │ ├── cp_mv_stat.c │ │ └── getopt_mk_fifo_nod.c │ ├── ln.c │ ├── logname.c │ ├── ls.c │ ├── md5_sha1_sum.c │ ├── mkdir.c │ ├── mkfifo.c │ ├── mknod.c │ ├── mv.c │ ├── nice.c │ ├── nohup.c │ ├── od.c │ ├── od_bloaty.c │ ├── printenv.c │ ├── printf.c │ ├── pwd.c │ ├── readlink.c │ ├── realpath.c │ ├── rm.c │ ├── rmdir.c │ ├── seq.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 │ ├── touch.c │ ├── tr.c │ ├── true.c │ ├── tty.c │ ├── uname.c │ ├── uniq.c │ ├── usleep.c │ ├── uudecode.c │ ├── uuencode.c │ ├── wc.c │ ├── who.c │ ├── whoami.c │ └── yes.c ├── debianutils │ ├── Config.src │ ├── Kbuild.src │ ├── mktemp.c │ ├── pipe_progress.c │ ├── run_parts.c │ ├── start_stop_daemon.c │ └── which.c ├── docs │ ├── BusyBox.html │ ├── BusyBox.txt │ ├── Serial-Programming-HOWTO.txt │ ├── busybox.1 │ ├── busybox.net │ │ └── BusyBox.html │ ├── busybox.pod │ ├── busybox_footer.pod │ ├── busybox_header.pod │ ├── cgi │ │ ├── cl.html │ │ ├── env.html │ │ ├── in.html │ │ ├── interface.html │ │ └── out.html │ ├── contributing.txt │ ├── ctty.htm │ ├── draft-coar-cgi-v11-03-clean.html │ ├── ifupdown_design.txt │ ├── keep_data_small.txt │ ├── logging_and_backgrounding.txt │ ├── mdev.txt │ ├── new-applet-HOWTO.txt │ ├── nofork_noexec.txt │ ├── posix_conformance.txt │ ├── sigint.htm │ ├── smallint.txt │ ├── style-guide.txt │ ├── syslog.conf.txt │ ├── tar_pax.txt │ ├── tcp.txt │ ├── unicode.txt │ ├── unicode_UTF-8-test.txt │ └── unicode_full-bmp.txt ├── e2fsprogs │ ├── Config.src │ ├── Kbuild.src │ ├── README │ ├── chattr.c │ ├── e2fs_lib.c │ ├── e2fs_lib.h │ ├── fsck.c │ ├── lsattr.c │ ├── old_e2fsprogs │ │ ├── Config.src │ │ ├── Kbuild.src │ │ ├── README │ │ ├── blkid │ │ │ ├── Kbuild.src │ │ │ ├── blkid.h │ │ │ ├── blkidP.h │ │ │ ├── blkid_getsize.c │ │ │ ├── cache.c │ │ │ ├── dev.c │ │ │ ├── devname.c │ │ │ ├── devno.c │ │ │ ├── list.c │ │ │ ├── list.h │ │ │ ├── probe.c │ │ │ ├── probe.h │ │ │ ├── read.c │ │ │ ├── resolve.c │ │ │ ├── save.c │ │ │ └── tag.c │ │ ├── chattr.c │ │ ├── e2fsbb.h │ │ ├── e2fsck.c │ │ ├── e2fsck.h │ │ ├── e2p │ │ │ ├── Kbuild.src │ │ │ ├── e2p.h │ │ │ ├── feature.c │ │ │ ├── fgetsetflags.c │ │ │ ├── fgetsetversion.c │ │ │ ├── hashstr.c │ │ │ ├── iod.c │ │ │ ├── ls.c │ │ │ ├── mntopts.c │ │ │ ├── ostype.c │ │ │ ├── parse_num.c │ │ │ ├── pe.c │ │ │ ├── pf.c │ │ │ ├── ps.c │ │ │ └── uuid.c │ │ ├── ext2fs │ │ │ ├── Kbuild.src │ │ │ ├── alloc.c │ │ │ ├── alloc_sb.c │ │ │ ├── alloc_stats.c │ │ │ ├── alloc_tables.c │ │ │ ├── badblocks.c │ │ │ ├── bb_compat.c │ │ │ ├── bb_inode.c │ │ │ ├── bitmaps.c │ │ │ ├── bitops.c │ │ │ ├── bitops.h │ │ │ ├── block.c │ │ │ ├── bmap.c │ │ │ ├── bmove.c │ │ │ ├── brel.h │ │ │ ├── brel_ma.c │ │ │ ├── check_desc.c │ │ │ ├── closefs.c │ │ │ ├── cmp_bitmaps.c │ │ │ ├── dblist.c │ │ │ ├── dblist_dir.c │ │ │ ├── dir_iterate.c │ │ │ ├── dirblock.c │ │ │ ├── dirhash.c │ │ │ ├── dupfs.c │ │ │ ├── e2image.h │ │ │ ├── expanddir.c │ │ │ ├── ext2_err.h │ │ │ ├── ext2_ext_attr.h │ │ │ ├── ext2_fs.h │ │ │ ├── ext2_io.h │ │ │ ├── ext2_types.h │ │ │ ├── ext2fs.h │ │ │ ├── ext2fsP.h │ │ │ ├── ext2fs_inline.c │ │ │ ├── ext_attr.c │ │ │ ├── fileio.c │ │ │ ├── finddev.c │ │ │ ├── flushb.c │ │ │ ├── freefs.c │ │ │ ├── gen_bitmap.c │ │ │ ├── get_pathname.c │ │ │ ├── getsectsize.c │ │ │ ├── getsize.c │ │ │ ├── icount.c │ │ │ ├── imager.c │ │ │ ├── ind_block.c │ │ │ ├── initialize.c │ │ │ ├── inline.c │ │ │ ├── inode.c │ │ │ ├── inode_io.c │ │ │ ├── io_manager.c │ │ │ ├── irel.h │ │ │ ├── irel_ma.c │ │ │ ├── ismounted.c │ │ │ ├── jfs_dat.h │ │ │ ├── kernel-jbd.h │ │ │ ├── kernel-list.h │ │ │ ├── link.c │ │ │ ├── lookup.c │ │ │ ├── mkdir.c │ │ │ ├── mkjournal.c │ │ │ ├── namei.c │ │ │ ├── newdir.c │ │ │ ├── openfs.c │ │ │ ├── read_bb.c │ │ │ ├── read_bb_file.c │ │ │ ├── res_gdt.c │ │ │ ├── rs_bitmap.c │ │ │ ├── rw_bitmaps.c │ │ │ ├── sparse.c │ │ │ ├── swapfs.c │ │ │ ├── test_io.c │ │ │ ├── unix_io.c │ │ │ ├── unlink.c │ │ │ ├── valid_blk.c │ │ │ ├── version.c │ │ │ └── write_bb_file.c │ │ ├── fsck.c │ │ ├── fsck.h │ │ ├── lsattr.c │ │ ├── mke2fs.c │ │ ├── tune2fs.c │ │ ├── util.c │ │ ├── util.h │ │ └── uuid │ │ │ ├── Kbuild.src │ │ │ ├── compare.c │ │ │ ├── gen_uuid.c │ │ │ ├── pack.c │ │ │ ├── parse.c │ │ │ ├── unpack.c │ │ │ ├── unparse.c │ │ │ ├── uuid.h │ │ │ ├── uuidP.h │ │ │ └── uuid_time.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 │ ├── udhcp │ │ ├── sample.bound │ │ ├── sample.deconfig │ │ ├── sample.nak │ │ ├── sample.renew │ │ ├── sample.script │ │ ├── simple.script │ │ └── udhcpd.conf │ ├── undeb │ ├── unrpm │ ├── var_service │ │ ├── README │ │ ├── dhcp_if │ │ │ ├── convert2ipconf │ │ │ ├── convert2ntpconf │ │ │ ├── dhcp_handler │ │ │ ├── log │ │ │ │ └── run │ │ │ ├── p_log │ │ │ ├── run │ │ │ └── w_log │ │ ├── dhcp_if_pinger │ │ │ └── run │ │ ├── ftpd │ │ │ ├── log │ │ │ │ └── run │ │ │ ├── p_log │ │ │ ├── run │ │ │ └── w_log │ │ ├── fw │ │ │ ├── conf │ │ │ │ ├── 11.22.33.44.ipconf-- │ │ │ │ ├── 192.168.0.1.ipconf │ │ │ │ └── lo.ipconf │ │ │ ├── etc │ │ │ │ ├── hosts │ │ │ │ └── resolv.conf │ │ │ ├── run │ │ │ └── stat │ │ ├── getty_tty1 │ │ │ ├── alt08x16+unimap.fnt │ │ │ ├── cfg │ │ │ ├── koi8r_to_uni.trans │ │ │ ├── login.sh │ │ │ ├── ru_koi8r.keymap │ │ │ └── run │ │ ├── gpm │ │ │ └── run │ │ ├── httpd │ │ │ ├── log │ │ │ │ └── run │ │ │ ├── p_log │ │ │ ├── run │ │ │ └── w_log │ │ ├── ifplugd_if │ │ │ ├── ifplugd_handler │ │ │ ├── log │ │ │ │ └── run │ │ │ ├── p_log │ │ │ ├── run │ │ │ └── w_log │ │ ├── inetd │ │ │ ├── inetd.conf │ │ │ ├── log │ │ │ │ └── run │ │ │ ├── p_log │ │ │ ├── run │ │ │ └── w_log │ │ ├── nmeter │ │ │ └── run │ │ ├── ntpd │ │ │ ├── log │ │ │ │ └── run │ │ │ ├── ntp.script │ │ │ ├── p_log │ │ │ ├── run │ │ │ └── w_log │ │ └── tftpd │ │ │ ├── log │ │ │ └── run │ │ │ ├── p_log │ │ │ ├── run │ │ │ └── w_log │ └── zcip.script ├── findutils │ ├── Config.src │ ├── Kbuild.src │ ├── find.c │ ├── grep.c │ └── xargs.c ├── include │ ├── applet_metadata.h │ ├── 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 │ ├── mesg.c │ └── reboot.h ├── libbb │ ├── Config.src │ ├── Kbuild.src │ ├── README │ ├── appletlib.c │ ├── ask_confirmation.c │ ├── bb_askpass.c │ ├── bb_bswap_64.c │ ├── bb_do_delay.c │ ├── bb_pwd.c │ ├── bb_qsort.c │ ├── bb_strtod.c │ ├── bb_strtonum.c │ ├── change_identity.c │ ├── chomp.c │ ├── compare_string_array.c │ ├── concat_path_file.c │ ├── concat_subpath_file.c │ ├── copy_file.c │ ├── copyfd.c │ ├── correct_password.c │ ├── crc32.c │ ├── default_error_retval.c │ ├── device_open.c │ ├── die_if_bad_username.c │ ├── dump.c │ ├── endofname.c │ ├── execable.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 │ ├── getpty.c │ ├── hash_md5_sha.c │ ├── hash_md5prime.c │ ├── herror_msg.c │ ├── human_readable.c │ ├── in_ether.c │ ├── inet_cksum.c │ ├── inet_common.c │ ├── info_msg.c │ ├── inode_hash.c │ ├── isdirectory.c │ ├── kernel_version.c │ ├── last_char_is.c │ ├── lineedit.c │ ├── lineedit_ptr_hack.c │ ├── llist.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 │ ├── 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 │ ├── rtc.c │ ├── run_shell.c │ ├── safe_gethostname.c │ ├── safe_poll.c │ ├── safe_strncpy.c │ ├── safe_write.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 │ ├── systemd_support.c │ ├── time.c │ ├── trim.c │ ├── u_signal_names.c │ ├── udp_io.c │ ├── unicode.c │ ├── update_passwd.c │ ├── utmp.c │ ├── uuencode.c │ ├── vdprintf.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 │ ├── pwd_grp_internal.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 ├── miscutils │ ├── Config.src │ ├── Kbuild.src │ ├── adjtimex.c │ ├── bbconfig.c │ ├── beep.c │ ├── chat.c │ ├── chrt.c │ ├── conspy.c │ ├── crond.c │ ├── crontab.c │ ├── dc.c │ ├── devfsd.c │ ├── devmem.c │ ├── eject.c │ ├── fbsplash.c │ ├── fbsplash.cfg │ ├── flash_eraseall.c │ ├── flash_lock_unlock.c │ ├── flashcp.c │ ├── hdparm.c │ ├── inotifyd.c │ ├── ionice.c │ ├── last.c │ ├── last_fancy.c │ ├── less.c │ ├── makedevs.c │ ├── man.c │ ├── microcom.c │ ├── mountpoint.c │ ├── mt.c │ ├── nandwrite.c │ ├── raidautorun.c │ ├── readahead.c │ ├── rfkill.c │ ├── runlevel.c │ ├── rx.c │ ├── setserial.c │ ├── setsid.c │ ├── strings.c │ ├── taskset.c │ ├── time.c │ ├── timeout.c │ ├── ttysize.c │ ├── ubi_tools.c │ ├── volname.c │ ├── wall.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_indexcgi.c │ ├── httpd_post_upload.txt │ ├── 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 │ │ ├── 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_simple.c │ ├── ping.c │ ├── pscan.c │ ├── route.c │ ├── slattach.c │ ├── tc.c │ ├── tcpudp.c │ ├── tcpudp_perhost.c │ ├── tcpudp_perhost.h │ ├── telnet.c │ ├── telnetd.c │ ├── telnetd.ctrlSQ.patch │ ├── tftp.c │ ├── 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 │ │ ├── files.c │ │ ├── leases.c │ │ ├── packet.c │ │ ├── signalpipe.c │ │ ├── socket.c │ │ └── static_leases.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 │ ├── renice.c │ ├── smemcap.c │ ├── sysctl.c │ ├── top.c │ ├── uptime.c │ └── watch.c ├── 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 │ │ ├── Makefile │ │ ├── docproc.c │ │ ├── fixdep.c │ │ └── split-include.c │ ├── bb_release │ ├── bloat-o-meter │ ├── checkhelp.awk │ ├── checkstack.pl │ ├── cleanup_printf2puts │ ├── echo.c │ ├── find_bad_common_bufsiz │ ├── find_stray_common_vars │ ├── find_stray_empty_lines │ ├── fix_ws.sh │ ├── gcc-version.sh │ ├── gen_build_files.sh │ ├── kconfig │ │ ├── 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 │ │ │ ├── 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 │ └── 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 │ │ ├── ash-alias │ │ │ ├── alias.right │ │ │ └── alias.tests │ │ ├── ash-arith │ │ │ ├── README.ash │ │ │ ├── arith-bash1.right │ │ │ ├── arith-bash1.tests │ │ │ ├── arith-for.right │ │ │ ├── arith-for.testsx │ │ │ ├── arith.right │ │ │ ├── arith.tests │ │ │ ├── arith1.sub │ │ │ └── arith2.sub │ │ ├── ash-heredoc │ │ │ ├── heredoc.right │ │ │ └── heredoc.tests │ │ ├── ash-invert │ │ │ ├── invert.right │ │ │ └── invert.tests │ │ ├── ash-misc │ │ │ ├── echo_write_error.right │ │ │ ├── echo_write_error.tests │ │ │ ├── last_amp.right │ │ │ ├── last_amp.tests │ │ │ ├── nulltick1.right │ │ │ ├── nulltick1.tests │ │ │ ├── shift1.right │ │ │ ├── shift1.tests │ │ │ ├── source1.right │ │ │ ├── source1.tests │ │ │ ├── source2.right │ │ │ └── source2.tests │ │ ├── ash-quoting │ │ │ ├── dollar_repl_slash_bash1.right │ │ │ ├── dollar_repl_slash_bash1.tests │ │ │ ├── dollar_squote_bash1.right │ │ │ └── dollar_squote_bash1.tests │ │ ├── ash-read │ │ │ ├── read_REPLY.right │ │ │ ├── read_REPLY.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 │ │ ├── ash-redir │ │ │ ├── redir.right │ │ │ ├── redir.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 │ │ ├── ash-signals │ │ │ ├── reap1.right │ │ │ ├── reap1.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 │ │ ├── ash-standalone │ │ │ ├── noexec_gets_no_env.right │ │ │ ├── noexec_gets_no_env.tests │ │ │ ├── nofork_trashes_getopt.right │ │ │ ├── nofork_trashes_getopt.tests │ │ │ ├── var_standalone1.right │ │ │ └── var_standalone1.tests │ │ ├── ash-vars │ │ │ ├── var1.right │ │ │ ├── var1.tests │ │ │ ├── var2.right │ │ │ ├── var2.tests │ │ │ ├── var_bash1.right │ │ │ ├── var_bash1.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_leak.right │ │ │ ├── var_leak.tests │ │ │ ├── var_posix1.right │ │ │ └── var_posix1.tests │ │ ├── printenv.c │ │ ├── recho.c │ │ ├── run-all │ │ └── zecho.c │ ├── brace.txt │ ├── cttyhack.c │ ├── hush.c │ ├── hush_doc.txt │ ├── hush_leaktool.sh │ ├── hush_test │ │ ├── hush-arith │ │ │ ├── arith.right │ │ │ ├── arith.tests │ │ │ ├── arith1.sub │ │ │ └── arith2.sub │ │ ├── hush-bugs │ │ │ ├── and_or_and_backgrounding.right │ │ │ ├── and_or_and_backgrounding.tests │ │ │ ├── export_exp.right │ │ │ └── export_exp.tests.disabled │ │ ├── hush-glob │ │ │ ├── bash_brace1.right │ │ │ ├── bash_brace1.tests │ │ │ ├── glob1.right │ │ │ ├── glob1.tests │ │ │ ├── glob2.right │ │ │ ├── glob2.tests │ │ │ ├── glob_and_assign.right │ │ │ ├── glob_and_assign.tests │ │ │ ├── glob_redir.right │ │ │ └── glob_redir.tests │ │ ├── hush-leak │ │ │ ├── leak_argv1.right │ │ │ └── leak_argv1.tests │ │ ├── hush-misc │ │ │ ├── and-or.right │ │ │ ├── and-or.tests │ │ │ ├── assignment1.right │ │ │ ├── assignment1.tests │ │ │ ├── assignment2.rigth │ │ │ ├── assignment2.tests │ │ │ ├── assignment3.right │ │ │ ├── assignment3.tests │ │ │ ├── assignment4.right │ │ │ ├── assignment4.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 │ │ │ ├── compound.right │ │ │ ├── compound.tests │ │ │ ├── continue1.right │ │ │ ├── continue1.tests │ │ │ ├── continue2.right │ │ │ ├── continue2.tests │ │ │ ├── continue3.right │ │ │ ├── continue3.tests │ │ │ ├── echo_write_error.right │ │ │ ├── echo_write_error.tests │ │ │ ├── empty_args.right │ │ │ ├── empty_args.tests │ │ │ ├── empty_for.right │ │ │ ├── empty_for.tests │ │ │ ├── empty_for2.right │ │ │ ├── empty_for2.tests │ │ │ ├── env_and_func.right │ │ │ ├── env_and_func.tests │ │ │ ├── exec.right │ │ │ ├── exec.tests │ │ │ ├── exit1.right │ │ │ ├── exit1.tests │ │ │ ├── export-n.right │ │ │ ├── export-n.tests │ │ │ ├── export.right │ │ │ ├── export.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 │ │ │ ├── heredoc1.right │ │ │ ├── heredoc1.tests │ │ │ ├── heredoc2.right │ │ │ ├── heredoc2.tests │ │ │ ├── heredoc3.right │ │ │ ├── heredoc3.tests │ │ │ ├── heredoc_backslash1.right │ │ │ ├── heredoc_backslash1.tests │ │ │ ├── heredoc_huge.right │ │ │ ├── heredoc_huge.tests │ │ │ ├── if_false_exitcode.right │ │ │ ├── if_false_exitcode.tests │ │ │ ├── nommu1.right │ │ │ ├── nommu1.tests │ │ │ ├── nommu2.right │ │ │ ├── nommu2.tests │ │ │ ├── opts1.right │ │ │ ├── opts1.tests │ │ │ ├── pid.right │ │ │ ├── pid.tests │ │ │ ├── pipefail.right │ │ │ ├── pipefail.tests │ │ │ ├── read.right │ │ │ ├── read.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 │ │ │ ├── return1.right │ │ │ ├── return1.tests │ │ │ ├── shift.right │ │ │ ├── shift.tests │ │ │ ├── sig_exitcode.right │ │ │ ├── sig_exitcode.tests │ │ │ ├── sigint1.right │ │ │ ├── sigint1.tests │ │ │ ├── source1.right │ │ │ ├── source1.tests │ │ │ ├── source2.right │ │ │ ├── source2.tests │ │ │ ├── syntax_err.right │ │ │ ├── syntax_err.tests │ │ │ ├── syntax_err_negate.right │ │ │ ├── syntax_err_negate.tests │ │ │ ├── until1.right │ │ │ ├── until1.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 │ │ │ ├── argv0.right │ │ │ ├── argv0.tests │ │ │ ├── brace1.right │ │ │ ├── brace1.tests │ │ │ ├── brace2.right │ │ │ ├── brace2.tests │ │ │ ├── comment1.right │ │ │ ├── comment1.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 │ │ │ ├── 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 │ │ │ ├── redir_space.right │ │ │ ├── redir_space.tests │ │ │ ├── starquoted.right │ │ │ ├── starquoted.tests │ │ │ ├── starquoted2.right │ │ │ └── starquoted2.tests │ │ ├── hush-psubst │ │ │ ├── emptytick.right │ │ │ ├── emptytick.tests │ │ │ ├── falsetick.right │ │ │ ├── falsetick.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-read │ │ │ ├── read_REPLY.right │ │ │ ├── read_REPLY.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 │ │ ├── hush-trap │ │ │ ├── catch.right │ │ │ ├── catch.tests │ │ │ ├── exit.right │ │ │ ├── exit.tests │ │ │ ├── save-ret.right │ │ │ ├── save-ret.tests │ │ │ ├── savetrap.right │ │ │ ├── savetrap.tests │ │ │ ├── signal7.right │ │ │ ├── signal7.tests │ │ │ ├── signal_read1.right │ │ │ ├── signal_read1.tests │ │ │ ├── signal_read2.right │ │ │ ├── signal_read2.tests │ │ │ ├── subshell.right │ │ │ ├── subshell.tests │ │ │ ├── usage.right │ │ │ └── usage.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_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_glob.right │ │ │ ├── param_glob.tests │ │ │ ├── param_subshell.right │ │ │ ├── param_subshell.tests │ │ │ ├── star.right │ │ │ ├── star.tests │ │ │ ├── unset.right │ │ │ ├── unset.tests │ │ │ ├── var1.right │ │ │ ├── var1.tests │ │ │ ├── var2.right │ │ │ ├── var2.tests │ │ │ ├── var3.right │ │ │ ├── var3.tests │ │ │ ├── var_bash1.right │ │ │ ├── var_bash1.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_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_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 │ │ ├── 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 │ │ └── run-all │ ├── match.c │ ├── match.h │ ├── math.c │ ├── math.h │ ├── msh_test │ │ ├── msh-bugs │ │ │ ├── noeol3.right │ │ │ ├── noeol3.tests │ │ │ ├── process_subst.right │ │ │ ├── process_subst.tests │ │ │ ├── read.right │ │ │ ├── read.tests │ │ │ ├── shift.right │ │ │ ├── shift.tests │ │ │ ├── starquoted.right │ │ │ ├── starquoted.tests │ │ │ ├── syntax_err.right │ │ │ ├── syntax_err.tests │ │ │ ├── var_expand_in_assign.right │ │ │ ├── var_expand_in_assign.tests │ │ │ ├── var_expand_in_redir.right │ │ │ └── var_expand_in_redir.tests │ │ ├── msh-execution │ │ │ ├── exitcode_EACCES.right │ │ │ ├── exitcode_EACCES.tests │ │ │ ├── exitcode_ENOENT.right │ │ │ ├── exitcode_ENOENT.tests │ │ │ ├── many_continues.right │ │ │ ├── many_continues.tests │ │ │ ├── nested_break.right │ │ │ └── nested_break.tests │ │ ├── msh-misc │ │ │ ├── tick.right │ │ │ └── tick.tests │ │ ├── msh-parsing │ │ │ ├── argv0.right │ │ │ ├── argv0.tests │ │ │ ├── noeol.right │ │ │ ├── noeol.tests │ │ │ ├── noeol2.right │ │ │ ├── noeol2.tests │ │ │ ├── quote1.right │ │ │ ├── quote1.tests │ │ │ ├── quote2.right │ │ │ ├── quote2.tests │ │ │ ├── quote3.right │ │ │ ├── quote3.tests │ │ │ ├── quote4.right │ │ │ └── quote4.tests │ │ ├── msh-vars │ │ │ ├── star.right │ │ │ ├── star.tests │ │ │ ├── var.right │ │ │ ├── var.tests │ │ │ ├── var_subst_in_for.right │ │ │ └── var_subst_in_for.tests │ │ └── run-all │ ├── random.c │ ├── random.h │ ├── shell_common.c │ └── shell_common.h ├── 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 │ ├── bunzip2.tests │ ├── bunzip2 │ │ ├── bunzip2-reads-from-standard-input │ │ ├── bunzip2-removes-compressed-file │ │ └── bzcat-does-not-remove-compressed-file │ ├── busybox.tests │ ├── bzcat.tests │ ├── cal.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 │ ├── 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 │ ├── dd │ │ ├── dd-accepts-if │ │ ├── dd-accepts-of │ │ ├── dd-copies-from-standard-input-to-standard-output │ │ ├── dd-prints-count-to-standard-error │ │ └── dd-reports-write-errors │ ├── diff.tests │ ├── dirname │ │ ├── dirname-handles-absolute-path │ │ ├── dirname-handles-empty-path │ │ ├── dirname-handles-multiple-slashes │ │ ├── dirname-handles-relative-path │ │ ├── dirname-handles-root │ │ ├── dirname-handles-single-component │ │ └── dirname-works │ ├── du │ │ ├── du-h-works │ │ ├── du-k-works │ │ ├── du-l-works │ │ ├── du-m-works │ │ ├── du-s-works │ │ └── du-works │ ├── echo │ │ ├── echo-does-not-print-newline │ │ ├── echo-prints-argument │ │ ├── echo-prints-arguments │ │ ├── echo-prints-dash │ │ ├── echo-prints-newline │ │ ├── echo-prints-non-opts │ │ ├── echo-prints-slash-zero │ │ ├── echo-prints-slash_00041 │ │ ├── echo-prints-slash_0041 │ │ ├── echo-prints-slash_041 │ │ └── echo-prints-slash_41 │ ├── expand.tests │ ├── expand │ │ └── expand-works-like-GNU │ ├── expr │ │ ├── expr-big │ │ └── expr-works │ ├── false │ │ ├── false-is-silent │ │ └── false-returns-failure │ ├── 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-removes-original-file │ ├── head │ │ ├── head-n-works │ │ └── head-works │ ├── hostid │ │ └── hostid-works │ ├── hostname │ │ ├── hostname-d-works │ │ ├── hostname-i-works │ │ ├── hostname-s-works │ │ └── hostname-works │ ├── id │ │ ├── id-g-works │ │ ├── id-u-works │ │ ├── id-un-works │ │ └── id-ur-works │ ├── ln │ │ ├── ln-creates-hard-links │ │ ├── ln-creates-soft-links │ │ ├── ln-force-creates-hard-links │ │ ├── ln-force-creates-soft-links │ │ ├── ln-preserves-hard-links │ │ └── ln-preserves-soft-links │ ├── ls.mk_uni_tests │ ├── ls.tests │ ├── ls │ │ ├── ls-1-works │ │ ├── ls-h-works │ │ ├── ls-l-works │ │ └── ls-s-works │ ├── makedevs.device_table.txt │ ├── makedevs.tests │ ├── md5sum.tests │ ├── md5sum │ │ └── md5sum-verifies-non-binary-file │ ├── mdev.tests │ ├── mkdir │ │ ├── mkdir-makes-a-directory │ │ └── mkdir-makes-parent-directories │ ├── mkfs.minix.tests │ ├── mount.testroot │ ├── mount.tests │ ├── msh │ │ └── msh-supports-underscores-in-variable-names │ ├── 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 │ ├── 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 │ │ ├── tar-archives-multiple-files │ │ ├── tar-complains-about-missing-file │ │ ├── tar-demands-at-least-one-ctx │ │ ├── tar-demands-at-most-one-ctx │ │ ├── tar-extracts-all-subdirs │ │ ├── tar-extracts-file │ │ ├── tar-extracts-from-standard-input │ │ ├── tar-extracts-multiple-files │ │ ├── tar-extracts-to-standard-output │ │ ├── tar-handles-cz-options │ │ ├── tar-handles-empty-include-and-non-empty-exclude-list │ │ ├── tar-handles-exclude-and-extract-lists │ │ ├── tar-handles-multiple-X-options │ │ ├── tar-handles-nested-exclude │ │ ├── tar_with_link_with_size │ │ └── tar_with_prefix_fields │ ├── taskset.tests │ ├── tee │ │ ├── tee-appends-input │ │ └── tee-tees-input │ ├── test.tests │ ├── testing.sh │ ├── touch │ │ ├── touch-creates-file │ │ ├── touch-does-not-create-file │ │ └── touch-touches-files-after-non-existent-file │ ├── tr.tests │ ├── tr │ │ ├── tr-d-alnum-works │ │ ├── tr-d-works │ │ ├── tr-non-gnu │ │ ├── tr-rejects-wrong-class │ │ └── tr-works │ ├── true │ │ ├── true-is-silent │ │ └── true-returns-success │ ├── umlwrapper.sh │ ├── uncompress.tests │ ├── unexpand.tests │ ├── unexpand │ │ └── unexpand-works-like-GNU │ ├── uniq.tests │ ├── unzip.tests │ ├── 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 │ ├── blkid.c │ ├── blockdev.c │ ├── dmesg.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 │ ├── fstrim.c │ ├── getopt.c │ ├── hexdump.c │ ├── hwclock.c │ ├── ipcrm.c │ ├── ipcs.c │ ├── losetup.c │ ├── lspci.c │ ├── lsusb.c │ ├── mdev.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 │ ├── pivot_root.c │ ├── rdate.c │ ├── rdev.c │ ├── readprofile.c │ ├── rev.c │ ├── rtcwake.c │ ├── script.c │ ├── scriptreplay.c │ ├── setarch.c │ ├── swaponoff.c │ ├── switch_root.c │ ├── umount.c │ └── volume_id │ ├── Config.src │ ├── Kbuild.src │ ├── btrfs.c │ ├── cramfs.c │ ├── exfat.c │ ├── ext.c │ ├── f2fs.c │ ├── fat.c │ ├── get_devname.c │ ├── hfs.c │ ├── iso9660.c │ ├── jfs.c │ ├── linux_raid.c │ ├── linux_swap.c │ ├── luks.c │ ├── nilfs.c │ ├── ntfs.c │ ├── ocfs2.c │ ├── reiserfs.c │ ├── romfs.c │ ├── squashfs.c │ ├── sysv.c │ ├── udf.c │ ├── unused_highpoint.c │ ├── unused_hpfs.c │ ├── unused_isw_raid.c │ ├── unused_lsi_raid.c │ ├── unused_lvm.c │ ├── unused_mac.c │ ├── unused_minix.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 ├── demos ├── CAN │ ├── Makefile │ └── can.c ├── alsa_audio │ ├── Makefile │ └── demo.c ├── cap │ ├── Makefile │ └── cap2bmp.c ├── crypto │ ├── Makefile │ ├── crypto.c │ ├── crypto_raw.c │ ├── if_alg.h │ └── nuc980-crypto.h ├── ebi │ ├── Makefile │ ├── ebi.c │ └── nuc980-ebi.h ├── eth2uart │ ├── Makefile │ ├── eth2uart.c │ └── lighttpd │ │ ├── lighttpd.conf │ │ ├── log │ │ └── lighttpd │ │ │ ├── access.log │ │ │ └── error.log │ │ ├── rcS │ │ └── www │ │ ├── cgi-bin │ │ ├── uart.c │ │ └── uart2.c │ │ └── index.html ├── etimer │ ├── Makefile │ ├── etimer.c │ └── nuc980-etimer.h ├── fwupdate │ ├── Makefile │ └── fwupdate.c ├── gpio │ ├── Makefile │ └── gpio_demo.c ├── irda │ ├── Makefile │ └── irda.c ├── rs485 │ ├── Makefile │ └── uart.c ├── rtc │ ├── Makefile │ └── rtc.c ├── sc │ ├── Makefile │ ├── nuc980-sc.h │ └── sc.c ├── spi │ ├── Makefile │ ├── spidev.h │ └── spidev_test.c ├── uart │ ├── Makefile │ └── uart.c ├── wdt │ ├── Makefile │ └── wdt.c └── wwdt │ ├── Makefile │ └── wwdt.c ├── ethtool-4.6 ├── AUTHORS ├── COPYING ├── ChangeLog ├── INSTALL ├── LICENSE ├── Makefile.am ├── Makefile.in ├── NEWS ├── README ├── aclocal.m4 ├── amd8111e.c ├── at76c50x-usb.c ├── autogen.sh ├── compile ├── configure ├── configure.ac ├── de2104x.c ├── depcomp ├── e100.c ├── e1000.c ├── et131x.c ├── ethtool-config.h.in ├── ethtool-copy.h ├── ethtool.8.in ├── ethtool.c ├── ethtool.spec.in ├── fec_8xx.c ├── ibm_emac.c ├── igb.c ├── install-sh ├── internal.h ├── ixgb.c ├── ixgbe.c ├── ixgbevf.c ├── marvell.c ├── missing ├── natsemi.c ├── net_tstamp-copy.h ├── pcnet32.c ├── realtek.c ├── rxclass.c ├── sfc.c ├── sfpdiag.c ├── sfpid.c ├── smsc911x.c ├── stmmac.c ├── test-cmdline.c ├── test-common.c ├── test-driver ├── test-features.c ├── tg3.c ├── tse.c ├── vioc.c └── vmxnet3.c ├── i2c-tools ├── CHANGES ├── COPYING ├── COPYING.LGPL ├── Makefile ├── README ├── eeprog │ ├── 24cXX.c │ ├── 24cXX.h │ ├── Module.mk │ ├── README.eeprog │ ├── eeprog.8 │ └── eeprog.c ├── eeprom │ ├── Module.mk │ ├── README │ ├── ddcmon │ ├── decode-dimms │ ├── decode-dimms.1 │ ├── decode-edid │ ├── decode-vaio │ └── decode-vaio.1 ├── eepromer │ ├── Makefile │ ├── README │ ├── README.eeprom │ ├── README.eepromer │ ├── eeprom.8 │ ├── eeprom.c │ ├── eepromer.8 │ └── eepromer.c ├── include │ ├── Module.mk │ ├── i2c │ │ └── smbus.h │ └── linux │ │ └── i2c-dev.h ├── lib │ ├── Module.mk │ ├── libi2c.map │ └── smbus.c ├── py-smbus │ ├── Module.mk │ ├── README │ ├── setup.py │ └── smbusmodule.c ├── stub │ ├── Module.mk │ ├── i2c-stub-from-dump │ └── i2c-stub-from-dump.8 ├── tools │ ├── Module.mk │ ├── i2cbusses.c │ ├── i2cbusses.h │ ├── i2cdetect.8 │ ├── i2cdetect.c │ ├── i2cdump.8 │ ├── i2cdump.c │ ├── i2cget.8 │ ├── i2cget.c │ ├── i2cset.8 │ ├── i2cset.c │ ├── util.c │ └── util.h └── version.h ├── libuuid-1.0.3 ├── .deps │ ├── libuuid_la-clear.Plo │ ├── libuuid_la-compare.Plo │ ├── libuuid_la-copy.Plo │ ├── libuuid_la-gen_uuid.Plo │ ├── libuuid_la-isnull.Plo │ ├── libuuid_la-pack.Plo │ ├── libuuid_la-parse.Plo │ ├── libuuid_la-randutils.Plo │ ├── libuuid_la-unpack.Plo │ ├── libuuid_la-unparse.Plo │ ├── libuuid_la-uuid_time.Plo │ └── test_uuid-test_uuid.Po ├── COPYING ├── Makefile ├── Makefile.am ├── Makefile.in ├── aclocal.m4 ├── all-io.h ├── autom4te.cache │ ├── output.0 │ ├── output.1 │ ├── requests │ ├── traces.0 │ └── traces.1 ├── c.h ├── clear.c ├── compare.c ├── config.guess ├── config.h ├── config.h.in ├── config.log ├── config.status ├── config.sub ├── configure ├── configure.ac ├── copy.c ├── depcomp ├── gen_uuid.c ├── install-sh ├── isnull.c ├── ltmain.sh ├── missing ├── pack.c ├── parse.c ├── randutils.c ├── randutils.h ├── stamp-h1 ├── test_uuid.c ├── unpack.c ├── unparse.c ├── uuid.h ├── uuid.pc ├── uuid.pc.in ├── uuidP.h ├── uuid_time.c └── uuidd.h ├── lighttpd-1.4.39 ├── AUTHORS ├── CMakeLists.txt ├── COPYING ├── INSTALL ├── Makefile.am ├── Makefile.in ├── NEWS ├── README ├── README.FreeBSD ├── SConstruct ├── aclocal.m4 ├── ar-lib ├── autogen.sh ├── cmake │ ├── FindLibEV.cmake │ └── LighttpdMacros.cmake ├── compile ├── config.guess ├── config.h.in ├── config.sub ├── config_html_sample │ ├── index.html │ └── lighttpd.conf ├── configure ├── configure.ac ├── depcomp ├── distribute.sh.in ├── doc │ ├── Makefile.am │ ├── Makefile.in │ ├── config │ │ ├── Makefile.am │ │ ├── Makefile.in │ │ ├── conf.d │ │ │ ├── Makefile.am │ │ │ ├── Makefile.in │ │ │ ├── access_log.conf │ │ │ ├── auth.conf │ │ │ ├── cgi.conf │ │ │ ├── cml.conf │ │ │ ├── compress.conf │ │ │ ├── debug.conf │ │ │ ├── dirlisting.conf │ │ │ ├── evhost.conf │ │ │ ├── expire.conf │ │ │ ├── fastcgi.conf │ │ │ ├── geoip.conf │ │ │ ├── magnet.conf │ │ │ ├── mime.conf │ │ │ ├── mod.template │ │ │ ├── mysql_vhost.conf │ │ │ ├── proxy.conf │ │ │ ├── rrdtool.conf │ │ │ ├── scgi.conf │ │ │ ├── secdownload.conf │ │ │ ├── simple_vhost.conf │ │ │ ├── ssi.conf │ │ │ ├── status.conf │ │ │ ├── trigger_b4_dl.conf │ │ │ ├── userdir.conf │ │ │ └── webdav.conf │ │ ├── lighttpd.conf │ │ ├── modules.conf │ │ └── vhosts.d │ │ │ ├── Makefile.am │ │ │ ├── Makefile.in │ │ │ └── vhosts.template │ ├── initscripts │ │ ├── Makefile.am │ │ ├── Makefile.in │ │ ├── rc.lighttpd │ │ ├── rc.lighttpd.redhat │ │ └── sysconfig.lighttpd │ ├── lighttpd.8 │ ├── newstyle.css │ ├── oldstyle.css │ ├── outdated │ │ ├── Makefile.am │ │ ├── Makefile.in │ │ ├── access.txt │ │ ├── accesslog.txt │ │ ├── alias.txt │ │ ├── authentication.txt │ │ ├── cgi.txt │ │ ├── cml.txt │ │ ├── compress.txt │ │ ├── configuration.txt │ │ ├── dirlisting.txt │ │ ├── evhost.txt │ │ ├── expire.txt │ │ ├── extforward.txt │ │ ├── fastcgi-state.dot │ │ ├── fastcgi-state.txt │ │ ├── fastcgi.txt │ │ ├── features.txt │ │ ├── magnet.txt │ │ ├── mysqlvhost.txt │ │ ├── performance.txt │ │ ├── plugins.txt │ │ ├── proxy.txt │ │ ├── redirect.txt │ │ ├── rewrite.txt │ │ ├── rrdtool.txt │ │ ├── scgi.txt │ │ ├── secdownload.txt │ │ ├── security.txt │ │ ├── setenv.txt │ │ ├── simple-vhost.txt │ │ ├── skeleton.txt │ │ ├── ssi.txt │ │ ├── ssl.txt │ │ ├── state.dot │ │ ├── state.txt │ │ ├── status.txt │ │ ├── traffic-shaping.txt │ │ ├── trigger_b4_dl.txt │ │ ├── userdir.txt │ │ └── webdav.txt │ ├── scripts │ │ ├── Makefile.am │ │ ├── Makefile.in │ │ ├── create-mime.conf.pl │ │ ├── rrdtool-graph.sh │ │ └── spawn-php.sh │ └── systemd │ │ ├── Makefile.am │ │ ├── Makefile.in │ │ └── lighttpd.service ├── install-sh ├── ltmain.sh ├── m4 │ ├── libtool.m4 │ ├── ltoptions.m4 │ ├── ltsugar.m4 │ ├── ltversion.m4 │ └── lt~obsolete.m4 ├── missing ├── src │ ├── CMakeLists.txt │ ├── Makefile.am │ ├── Makefile.in │ ├── SConscript │ ├── array.c │ ├── array.h │ ├── base.h │ ├── base64.c │ ├── base64.h │ ├── buffer.c │ ├── buffer.h │ ├── chunk.c │ ├── chunk.h │ ├── config.h.cmake │ ├── configfile-glue.c │ ├── configfile.c │ ├── configfile.h │ ├── configparser.c │ ├── configparser.h │ ├── configparser.y │ ├── connections-glue.c │ ├── connections.c │ ├── connections.h │ ├── crc32.c │ ├── crc32.h │ ├── data_array.c │ ├── data_config.c │ ├── data_count.c │ ├── data_fastcgi.c │ ├── data_integer.c │ ├── data_string.c │ ├── etag.c │ ├── etag.h │ ├── fastcgi.h │ ├── fdevent.c │ ├── fdevent.h │ ├── fdevent_freebsd_kqueue.c │ ├── fdevent_libev.c │ ├── fdevent_linux_sysepoll.c │ ├── fdevent_poll.c │ ├── fdevent_select.c │ ├── fdevent_solaris_devpoll.c │ ├── fdevent_solaris_port.c │ ├── http-header-glue.c │ ├── http_auth.c │ ├── http_auth.h │ ├── http_chunk.c │ ├── http_chunk.h │ ├── inet_ntop_cache.c │ ├── inet_ntop_cache.h │ ├── joblist.c │ ├── joblist.h │ ├── keyvalue.c │ ├── keyvalue.h │ ├── lemon.c │ ├── lempar.c │ ├── lighttpd-angel.c │ ├── log.c │ ├── log.h │ ├── md5.c │ ├── md5.h │ ├── mod_access.c │ ├── mod_accesslog.c │ ├── mod_alias.c │ ├── mod_auth.c │ ├── mod_auth.h │ ├── mod_cgi.c │ ├── mod_cml.c │ ├── mod_cml.h │ ├── mod_cml_funcs.c │ ├── mod_cml_funcs.h │ ├── mod_cml_lua.c │ ├── mod_compress.c │ ├── mod_dirlisting.c │ ├── mod_evasive.c │ ├── mod_evhost.c │ ├── mod_expire.c │ ├── mod_extforward.c │ ├── mod_fastcgi.c │ ├── mod_flv_streaming.c │ ├── mod_indexfile.c │ ├── mod_magnet.c │ ├── mod_magnet_cache.c │ ├── mod_magnet_cache.h │ ├── mod_mysql_vhost.c │ ├── mod_proxy.c │ ├── mod_redirect.c │ ├── mod_rewrite.c │ ├── mod_rrdtool.c │ ├── mod_scgi.c │ ├── mod_secdownload.c │ ├── mod_setenv.c │ ├── mod_simple_vhost.c │ ├── mod_skeleton.c │ ├── mod_ssi.c │ ├── mod_ssi.h │ ├── mod_ssi_expr.c │ ├── mod_ssi_expr.h │ ├── mod_ssi_exprparser.c │ ├── mod_ssi_exprparser.h │ ├── mod_ssi_exprparser.y │ ├── mod_staticfile.c │ ├── mod_status.c │ ├── mod_trigger_b4_dl.c │ ├── mod_userdir.c │ ├── mod_usertrack.c │ ├── mod_webdav.c │ ├── network.c │ ├── network.h │ ├── network_backends.h │ ├── network_darwin_sendfile.c │ ├── network_freebsd_sendfile.c │ ├── network_linux_sendfile.c │ ├── network_openssl.c │ ├── network_solaris_sendfilev.c │ ├── network_write.c │ ├── network_write_mmap.c │ ├── network_write_no_mmap.c │ ├── network_writev.c │ ├── plugin.c │ ├── plugin.h │ ├── proc_open.c │ ├── proc_open.h │ ├── request.c │ ├── request.h │ ├── response.c │ ├── response.h │ ├── safe_memclear.c │ ├── safe_memclear.h │ ├── server.c │ ├── server.h │ ├── settings.h │ ├── splaytree.c │ ├── splaytree.h │ ├── stat_cache.c │ ├── stat_cache.h │ ├── status_counter.c │ ├── status_counter.h │ ├── stream.c │ ├── stream.h │ ├── sys-mmap.h │ ├── sys-socket.h │ └── version.h └── tests │ ├── 404-handler.conf │ ├── CMakeLists.txt │ ├── LightyTest.pm │ ├── Makefile.am │ ├── Makefile.in │ ├── SConscript │ ├── bug-06.conf │ ├── bug-12.conf │ ├── cachable.t │ ├── cleanup.sh │ ├── condition.conf │ ├── core-404-handler.t │ ├── core-condition.t │ ├── core-keepalive.t │ ├── core-request.t │ ├── core-response.t │ ├── core-var-include.t │ ├── core.t │ ├── docroot │ ├── 123 │ │ ├── 12345.html │ │ ├── 12345.txt │ │ ├── Makefile.am │ │ ├── Makefile.in │ │ ├── dummyfile.bla │ │ └── phpinfo.php │ ├── Makefile.am │ ├── Makefile.in │ └── www │ │ ├── 404.fcgi │ │ ├── 404.html │ │ ├── 404.pl │ │ ├── Makefile.am │ │ ├── Makefile.in │ │ ├── cgi-pathinfo.pl │ │ ├── cgi.php │ │ ├── cgi.pl │ │ ├── crlfcrash.pl │ │ ├── exec-date.shtml │ │ ├── expire │ │ ├── Makefile.am │ │ ├── Makefile.in │ │ ├── access.txt │ │ └── modification.txt │ │ ├── get-env.php │ │ ├── get-header.pl │ │ ├── get-post-len.pl │ │ ├── get-server-env.php │ │ ├── go │ │ ├── Makefile.am │ │ ├── Makefile.in │ │ └── cgi.php │ │ ├── index.html │ │ ├── index.txt │ │ ├── indexfile │ │ ├── Makefile.am │ │ ├── Makefile.in │ │ ├── index.php │ │ ├── return-404.php │ │ └── rewrite.php │ │ ├── ip.pl │ │ ├── nph-status.pl │ │ ├── phpinfo.php │ │ ├── prefix.fcgi │ │ ├── redirect.php │ │ ├── send404.pl │ │ ├── sendfile.php │ │ └── ssi.shtml │ ├── fastcgi-10.conf │ ├── fastcgi-13.conf │ ├── fastcgi-auth.conf │ ├── fastcgi-responder.conf │ ├── fcgi-auth.c │ ├── fcgi-responder.c │ ├── lighttpd.conf │ ├── lighttpd.htpasswd │ ├── lighttpd.user │ ├── lowercase.conf │ ├── lowercase.t │ ├── mod-access.t │ ├── mod-auth.t │ ├── mod-cgi.t │ ├── mod-compress.conf │ ├── mod-compress.t │ ├── mod-extforward.conf │ ├── mod-extforward.t │ ├── mod-fastcgi.t │ ├── mod-proxy.t │ ├── mod-redirect.t │ ├── mod-rewrite.t │ ├── mod-secdownload.t │ ├── mod-setenv.t │ ├── mod-simplevhost.conf │ ├── mod-simplevhost.t │ ├── mod-ssi.t │ ├── mod-userdir.t │ ├── prepare.sh │ ├── proxy.conf │ ├── request.t │ ├── run-tests.pl │ ├── symlink.t │ ├── var-include-sub.conf │ ├── var-include.conf │ └── wrapper.sh ├── lzo-2.09 ├── AUTHORS ├── B │ ├── 00README.TXT │ ├── clean.bat │ ├── done.bat │ ├── dos32 │ │ ├── bc_pp.bat │ │ ├── dj2.bat │ │ ├── dj2.opt │ │ ├── dm.bat │ │ ├── emx.bat │ │ ├── highc.bat │ │ ├── highc.rsp │ │ ├── ndp.bat │ │ ├── ndp.rsp │ │ ├── sc.bat │ │ ├── wc.bat │ │ └── zc.bat │ ├── generic │ │ ├── Makefile │ │ ├── build.sh │ │ ├── build_freestanding.sh │ │ ├── build_gcc.sh │ │ └── clean.sh │ ├── os2 │ │ ├── emx.bat │ │ ├── wc.bat │ │ └── zc.bat │ ├── prepare.bat │ ├── src.rsp │ ├── unset.bat │ ├── win32 │ │ ├── bc.bat │ │ ├── bc.rsp │ │ ├── cygwin.bat │ │ ├── cygwin.rsp │ │ ├── dm.bat │ │ ├── ic.bat │ │ ├── lccwin32.bat │ │ ├── mingw.bat │ │ ├── mwerks.bat │ │ ├── pellesc.bat │ │ ├── pgi.bat │ │ ├── pw32.bat │ │ ├── rsxnt.bat │ │ ├── sc.bat │ │ ├── vc.bat │ │ ├── vc.rsp │ │ ├── vc_dll.bat │ │ ├── vc_dll.def │ │ ├── wc.bat │ │ └── wc.rsp │ └── win64 │ │ ├── ic.bat │ │ ├── ic_dll.bat │ │ ├── vc.bat │ │ ├── vc.rsp │ │ ├── vc_dll.bat │ │ └── vc_dll.def ├── BUGS ├── CMakeLists.txt ├── COPYING ├── ChangeLog ├── INSTALL ├── Makefile ├── Makefile.am ├── Makefile.in ├── NEWS ├── README ├── THANKS ├── aclocal.m4 ├── asm │ └── i386 │ │ ├── 00README.TXT │ │ ├── obj │ │ ├── coff32 │ │ │ ├── lzo1c_s1.o │ │ │ ├── lzo1f_f1.o │ │ │ ├── lzo1x_f1.o │ │ │ ├── lzo1x_s1.o │ │ │ ├── lzo1y_f1.o │ │ │ └── lzo1y_s1.o │ │ ├── elf32 │ │ │ ├── lzo1c_s1.o │ │ │ ├── lzo1f_f1.o │ │ │ ├── lzo1x_f1.o │ │ │ ├── lzo1x_s1.o │ │ │ ├── lzo1y_f1.o │ │ │ └── lzo1y_s1.o │ │ ├── macho32 │ │ │ ├── lzo1c_s1.o │ │ │ ├── lzo1f_f1.o │ │ │ ├── lzo1x_f1.o │ │ │ ├── lzo1x_s1.o │ │ │ ├── lzo1y_f1.o │ │ │ └── lzo1y_s1.o │ │ ├── omf32 │ │ │ ├── lzo1c_s1.obj │ │ │ ├── lzo1f_f1.obj │ │ │ ├── lzo1x_f1.obj │ │ │ ├── lzo1x_s1.obj │ │ │ ├── lzo1y_f1.obj │ │ │ └── lzo1y_s1.obj │ │ └── win32 │ │ │ ├── lzo1c_s1.obj │ │ │ ├── lzo1f_f1.obj │ │ │ ├── lzo1x_f1.obj │ │ │ ├── lzo1x_s1.obj │ │ │ ├── lzo1y_f1.obj │ │ │ └── lzo1y_s1.obj │ │ ├── src │ │ ├── enter.ash │ │ ├── leave.ash │ │ ├── lzo1c_d.ash │ │ ├── lzo1c_s1.S │ │ ├── lzo1f_d.ash │ │ ├── lzo1f_f1.S │ │ ├── lzo1x_d.ash │ │ ├── lzo1x_f1.S │ │ ├── lzo1x_s1.S │ │ ├── lzo1y_f1.S │ │ ├── lzo1y_s1.S │ │ └── lzo_asm.h │ │ ├── src_gas │ │ ├── .deps │ │ │ ├── lzo1c_s1.Plo │ │ │ ├── lzo1f_f1.Plo │ │ │ ├── lzo1x_f1.Plo │ │ │ ├── lzo1x_s1.Plo │ │ │ ├── lzo1y_f1.Plo │ │ │ └── lzo1y_s1.Plo │ │ ├── all │ │ │ └── asm_all.S │ │ ├── asminit.def │ │ ├── lzo1c_s1.S │ │ ├── lzo1f_f1.S │ │ ├── lzo1x_f1.S │ │ ├── lzo1x_s1.S │ │ ├── lzo1y_f1.S │ │ └── lzo1y_s1.S │ │ ├── src_masm │ │ ├── all │ │ │ └── asm_all.asm │ │ ├── asminit.def │ │ ├── lzo1c_s1.asm │ │ ├── lzo1f_f1.asm │ │ ├── lzo1x_f1.asm │ │ ├── lzo1x_s1.asm │ │ ├── lzo1y_f1.asm │ │ └── lzo1y_s1.asm │ │ └── src_nasm │ │ ├── all │ │ └── asm_all.asm │ │ ├── asminit.def │ │ ├── lzo1c_s1.asm │ │ ├── lzo1f_f1.asm │ │ ├── lzo1x_f1.asm │ │ ├── lzo1x_s1.asm │ │ ├── lzo1y_f1.asm │ │ └── lzo1y_s1.asm ├── autoconf │ ├── ar-lib │ ├── compile │ ├── config.guess │ ├── config.rpath │ ├── config.sub │ ├── depcomp │ ├── install-sh │ ├── local.m4 │ ├── ltmain.sh │ ├── mdate-sh │ ├── missing │ ├── mkinstalldirs │ ├── py-compile │ ├── shtool │ └── ylwrap ├── config.h ├── config.hin ├── config.log ├── config.status ├── configure ├── configure.ac ├── doc │ ├── LZO.FAQ │ ├── LZO.TXT │ ├── LZOAPI.TXT │ └── LZOTEST.TXT ├── examples │ ├── .deps │ │ ├── .dirstamp │ │ ├── dict.Po │ │ ├── lzopack.Po │ │ ├── overlap.Po │ │ ├── precomp.Po │ │ ├── precomp2.Po │ │ └── simple.Po │ ├── .dirstamp │ ├── dict.c │ ├── lzopack.c │ ├── overlap.c │ ├── portab.h │ ├── portab_a.h │ ├── precomp.c │ ├── precomp2.c │ └── simple.c ├── include │ └── lzo │ │ ├── lzo1.h │ │ ├── lzo1a.h │ │ ├── lzo1b.h │ │ ├── lzo1c.h │ │ ├── lzo1f.h │ │ ├── lzo1x.h │ │ ├── lzo1y.h │ │ ├── lzo1z.h │ │ ├── lzo2a.h │ │ ├── lzo_asm.h │ │ ├── lzoconf.h │ │ ├── lzodefs.h │ │ └── lzoutil.h ├── libtool ├── lzotest │ ├── .deps │ │ ├── .dirstamp │ │ └── lzotest.Po │ ├── .dirstamp │ ├── asm.h │ ├── db.h │ ├── lzotest.c │ ├── wrap.h │ └── wrapmisc.h ├── minilzo │ ├── .deps │ │ ├── .dirstamp │ │ ├── t-minilzo.Po │ │ └── t-testmini.Po │ ├── .dirstamp │ ├── Makefile.minilzo │ ├── README.LZO │ ├── minilzo.c │ ├── minilzo.h │ └── testmini.c ├── src │ ├── .deps │ │ ├── .dirstamp │ │ ├── lzo1.Plo │ │ ├── lzo1_99.Plo │ │ ├── lzo1a.Plo │ │ ├── lzo1a_99.Plo │ │ ├── lzo1b_1.Plo │ │ ├── lzo1b_2.Plo │ │ ├── lzo1b_3.Plo │ │ ├── lzo1b_4.Plo │ │ ├── lzo1b_5.Plo │ │ ├── lzo1b_6.Plo │ │ ├── lzo1b_7.Plo │ │ ├── lzo1b_8.Plo │ │ ├── lzo1b_9.Plo │ │ ├── lzo1b_99.Plo │ │ ├── lzo1b_9x.Plo │ │ ├── lzo1b_cc.Plo │ │ ├── lzo1b_d1.Plo │ │ ├── lzo1b_d2.Plo │ │ ├── lzo1b_rr.Plo │ │ ├── lzo1b_xx.Plo │ │ ├── lzo1c_1.Plo │ │ ├── lzo1c_2.Plo │ │ ├── lzo1c_3.Plo │ │ ├── lzo1c_4.Plo │ │ ├── lzo1c_5.Plo │ │ ├── lzo1c_6.Plo │ │ ├── lzo1c_7.Plo │ │ ├── lzo1c_8.Plo │ │ ├── lzo1c_9.Plo │ │ ├── lzo1c_99.Plo │ │ ├── lzo1c_9x.Plo │ │ ├── lzo1c_cc.Plo │ │ ├── lzo1c_d1.Plo │ │ ├── lzo1c_d2.Plo │ │ ├── lzo1c_rr.Plo │ │ ├── lzo1c_xx.Plo │ │ ├── lzo1f_1.Plo │ │ ├── lzo1f_9x.Plo │ │ ├── lzo1f_d1.Plo │ │ ├── lzo1f_d2.Plo │ │ ├── lzo1x_1.Plo │ │ ├── lzo1x_1k.Plo │ │ ├── lzo1x_1l.Plo │ │ ├── lzo1x_1o.Plo │ │ ├── lzo1x_9x.Plo │ │ ├── lzo1x_d1.Plo │ │ ├── lzo1x_d2.Plo │ │ ├── lzo1x_d3.Plo │ │ ├── lzo1x_o.Plo │ │ ├── lzo1y_1.Plo │ │ ├── lzo1y_9x.Plo │ │ ├── lzo1y_d1.Plo │ │ ├── lzo1y_d2.Plo │ │ ├── lzo1y_d3.Plo │ │ ├── lzo1y_o.Plo │ │ ├── lzo1z_9x.Plo │ │ ├── lzo1z_d1.Plo │ │ ├── lzo1z_d2.Plo │ │ ├── lzo1z_d3.Plo │ │ ├── lzo2a_9x.Plo │ │ ├── lzo2a_d1.Plo │ │ ├── lzo2a_d2.Plo │ │ ├── lzo_crc.Plo │ │ ├── lzo_init.Plo │ │ ├── lzo_ptr.Plo │ │ ├── lzo_str.Plo │ │ └── lzo_util.Plo │ ├── .dirstamp │ ├── compr1b.h │ ├── compr1c.h │ ├── config1.h │ ├── config1a.h │ ├── config1b.h │ ├── config1c.h │ ├── config1f.h │ ├── config1x.h │ ├── config1y.h │ ├── config1z.h │ ├── config2a.h │ ├── lzo1.c │ ├── lzo1_99.c │ ├── lzo1_cm.ch │ ├── lzo1_d.ch │ ├── lzo1a.c │ ├── lzo1a_99.c │ ├── lzo1a_cm.ch │ ├── lzo1a_cr.ch │ ├── lzo1a_de.h │ ├── lzo1b_1.c │ ├── lzo1b_2.c │ ├── lzo1b_3.c │ ├── lzo1b_4.c │ ├── lzo1b_5.c │ ├── lzo1b_6.c │ ├── lzo1b_7.c │ ├── lzo1b_8.c │ ├── lzo1b_9.c │ ├── lzo1b_99.c │ ├── lzo1b_9x.c │ ├── lzo1b_c.ch │ ├── lzo1b_cc.c │ ├── lzo1b_cc.h │ ├── lzo1b_cm.ch │ ├── lzo1b_cr.ch │ ├── lzo1b_d.ch │ ├── lzo1b_d1.c │ ├── lzo1b_d2.c │ ├── lzo1b_de.h │ ├── lzo1b_r.ch │ ├── lzo1b_rr.c │ ├── lzo1b_sm.ch │ ├── lzo1b_tm.ch │ ├── lzo1b_xx.c │ ├── lzo1c_1.c │ ├── lzo1c_2.c │ ├── lzo1c_3.c │ ├── lzo1c_4.c │ ├── lzo1c_5.c │ ├── lzo1c_6.c │ ├── lzo1c_7.c │ ├── lzo1c_8.c │ ├── lzo1c_9.c │ ├── lzo1c_99.c │ ├── lzo1c_9x.c │ ├── lzo1c_cc.c │ ├── lzo1c_cc.h │ ├── lzo1c_d1.c │ ├── lzo1c_d2.c │ ├── lzo1c_rr.c │ ├── lzo1c_xx.c │ ├── lzo1f_1.c │ ├── lzo1f_9x.c │ ├── lzo1f_d.ch │ ├── lzo1f_d1.c │ ├── lzo1f_d2.c │ ├── lzo1x_1.c │ ├── lzo1x_1k.c │ ├── lzo1x_1l.c │ ├── lzo1x_1o.c │ ├── lzo1x_9x.c │ ├── lzo1x_c.ch │ ├── lzo1x_d.ch │ ├── lzo1x_d1.c │ ├── lzo1x_d2.c │ ├── lzo1x_d3.c │ ├── lzo1x_o.c │ ├── lzo1x_oo.ch │ ├── lzo1y_1.c │ ├── lzo1y_9x.c │ ├── lzo1y_d1.c │ ├── lzo1y_d2.c │ ├── lzo1y_d3.c │ ├── lzo1y_o.c │ ├── lzo1z_9x.c │ ├── lzo1z_d1.c │ ├── lzo1z_d2.c │ ├── lzo1z_d3.c │ ├── lzo2a_9x.c │ ├── lzo2a_d.ch │ ├── lzo2a_d1.c │ ├── lzo2a_d2.c │ ├── lzo_conf.h │ ├── lzo_crc.c │ ├── lzo_dict.h │ ├── lzo_dll.ch │ ├── lzo_func.h │ ├── lzo_init.c │ ├── lzo_mchw.ch │ ├── lzo_ptr.c │ ├── lzo_ptr.h │ ├── lzo_str.c │ ├── lzo_supp.h │ ├── lzo_swd.ch │ ├── lzo_util.c │ ├── stats1a.h │ ├── stats1b.h │ └── stats1c.h ├── stamp-h1 ├── tests │ ├── .deps │ │ ├── .dirstamp │ │ ├── align.Po │ │ ├── chksum.Po │ │ ├── promote.Po │ │ └── sizes.Po │ ├── .dirstamp │ ├── align.c │ ├── chksum.c │ ├── promote.c │ └── sizes.c └── util │ ├── check.sh │ ├── checkasm.sh │ ├── notime.pl │ ├── overlap.sh │ ├── shortf.pl │ ├── table.pl │ └── uncompr.pl ├── mtd-utils ├── COPYING ├── MAKEDEV ├── Makefile ├── arm-linux │ ├── doc_loadbios │ ├── docfdisk │ ├── flash_erase │ ├── flash_lock │ ├── flash_otp_dump │ ├── flash_otp_info │ ├── flash_otp_lock │ ├── flash_otp_write │ ├── flash_unlock │ ├── flashcp │ ├── ftl_check │ ├── ftl_format │ ├── include │ │ └── version.h │ ├── jffs2dump │ ├── jffs2reader │ ├── mkfs.jffs2 │ ├── mkfs.ubifs │ │ └── mkfs.ubifs │ ├── mtd_debug │ ├── nanddump │ ├── nandtest │ ├── nandwrite │ ├── nftl_format │ ├── nftldump │ ├── recv_image │ ├── rfddump │ ├── rfdformat │ ├── serve_image │ ├── sumtool │ └── ubi-utils │ │ ├── mtdinfo │ │ ├── ubiattach │ │ ├── ubiblock │ │ ├── ubicrc32 │ │ ├── ubidetach │ │ ├── ubiformat │ │ ├── ubimkvol │ │ ├── ubinfo │ │ ├── ubinize │ │ ├── ubirename │ │ ├── ubirmvol │ │ ├── ubirsvol │ │ └── ubiupdatevol ├── common.mk ├── compr.c ├── compr.h ├── compr_lzo.c ├── compr_rtime.c ├── compr_zlib.c ├── device_table.txt ├── doc_loadbios.c ├── docfdisk.c ├── feature-removal-schedule.txt ├── fectest.c ├── flash_erase.c ├── flash_eraseall ├── flash_lock.c ├── flash_otp_dump.c ├── flash_otp_info.c ├── flash_otp_lock.c ├── flash_otp_write.c ├── flash_unlock.c ├── flashcp.c ├── ftl_check.c ├── ftl_format.c ├── include │ ├── common.h │ ├── crc32.h │ ├── libmtd.h │ ├── linux │ │ └── jffs2.h │ ├── mtd │ │ ├── ftl-user.h │ │ ├── inftl-user.h │ │ ├── jffs2-user.h │ │ ├── mtd-abi.h │ │ ├── mtd-user.h │ │ ├── nftl-user.h │ │ ├── ubi-media.h │ │ ├── ubi-user.h │ │ └── ubifs-media.h │ ├── mtd_swab.h │ └── xalloc.h ├── jffs-dump.c ├── jffs2dump.c ├── jffs2reader.c ├── lib │ ├── libcrc32.c │ ├── libfec.c │ ├── libmtd.c │ ├── libmtd_int.h │ └── libmtd_legacy.c ├── load_nandsim.sh ├── make_a_release.sh ├── mcast_image.h ├── mkfs.jffs2.1 ├── mkfs.jffs2.c ├── mkfs.ubifs │ ├── .gitignore │ ├── COPYING │ ├── README │ ├── compr.c │ ├── compr.h │ ├── crc16.c │ ├── crc16.h │ ├── defs.h │ ├── devtable.c │ ├── hashtable │ │ ├── hashtable.c │ │ ├── hashtable.h │ │ ├── hashtable_itr.c │ │ ├── hashtable_itr.h │ │ └── hashtable_private.h │ ├── key.h │ ├── lpt.c │ ├── lpt.h │ ├── mkfs.ubifs.c │ ├── mkfs.ubifs.h │ └── ubifs.h ├── mtd-utils.spec ├── mtd_debug.c ├── nanddump.c ├── nandtest.c ├── nandwrite.c ├── nftl_format.c ├── nftldump.c ├── rbtree.c ├── rbtree.h ├── recv_image.c ├── rfddump.c ├── rfdformat.c ├── serve_image.c ├── summary.h ├── sumtool.c ├── tests │ ├── Makefile │ ├── checkfs │ │ ├── .gitignore │ │ ├── Makefile │ │ ├── README │ │ ├── checkfs.c │ │ ├── comm.c │ │ ├── common.h │ │ └── makefiles.c │ ├── fs-tests │ │ ├── Makefile │ │ ├── help_all.sh │ │ ├── integrity │ │ │ ├── .gitignore │ │ │ ├── Makefile │ │ │ └── integck.c │ │ ├── lib │ │ │ ├── Makefile │ │ │ ├── tests.c │ │ │ └── tests.h │ │ ├── run_all.sh │ │ ├── simple │ │ │ ├── .gitignore │ │ │ ├── Makefile │ │ │ ├── ftrunc.c │ │ │ ├── orph.c │ │ │ ├── perf.c │ │ │ ├── test_1.c │ │ │ └── test_2.c │ │ ├── stress │ │ │ ├── Makefile │ │ │ ├── atoms │ │ │ │ ├── .gitignore │ │ │ │ ├── Makefile │ │ │ │ ├── fwrite00.c │ │ │ │ ├── gcd_hupper.c │ │ │ │ ├── pdfrun.c │ │ │ │ ├── rmdir00.c │ │ │ │ ├── rndrm00.c │ │ │ │ ├── rndrm99.c │ │ │ │ ├── rndwrite00.c │ │ │ │ ├── stress_1.c │ │ │ │ ├── stress_2.c │ │ │ │ └── stress_3.c │ │ │ ├── stress00.sh │ │ │ └── stress01.sh │ │ └── utils │ │ │ ├── .gitignore │ │ │ ├── Makefile │ │ │ ├── free_space.c │ │ │ └── fstest_monitor.c │ ├── jittertest │ │ ├── .gitignore │ │ ├── COPYING │ │ ├── JitterTest.c │ │ ├── Makefile │ │ ├── README │ │ ├── filljffs2.sh │ │ └── plotJittervsFill.c │ └── ubi-tests │ │ ├── .gitignore │ │ ├── Makefile │ │ ├── README.udev │ │ ├── helpers.c │ │ ├── helpers.h │ │ ├── integ.c │ │ ├── io_basic.c │ │ ├── io_paral.c │ │ ├── io_read.c │ │ ├── io_update.c │ │ ├── mkvol_bad.c │ │ ├── mkvol_basic.c │ │ ├── mkvol_paral.c │ │ ├── rsvol.c │ │ ├── runtests.sh │ │ ├── stress-test.sh │ │ └── volrefcnt.c └── ubi-utils │ ├── .gitignore │ ├── LICENSE.libiniparser │ ├── dictionary.c │ ├── include │ ├── dictionary.h │ ├── libiniparser.h │ ├── libscan.h │ ├── libubi.h │ ├── libubigen.h │ └── ubiutils-common.h │ ├── libiniparser.c │ ├── libscan.c │ ├── libubi.c │ ├── libubi_int.h │ ├── libubigen.c │ ├── mtdinfo.c │ ├── ubiattach.c │ ├── ubiblock.c │ ├── ubicrc32.c │ ├── ubidetach.c │ ├── ubiformat.c │ ├── ubimkvol.c │ ├── ubinfo.c │ ├── ubinize.c │ ├── ubirename.c │ ├── ubirmvol.c │ ├── ubirsvol.c │ ├── ubiupdatevol.c │ └── ubiutils-common.c ├── openssl-1.1.1 ├── - ├── .gitattributes ├── .github │ └── PULL_REQUEST_TEMPLATE.md ├── .gitignore ├── .gitmodules ├── .travis-apt-pin.preferences ├── .travis-create-release.sh ├── .travis.yml ├── ACKNOWLEDGEMENTS ├── AUTHORS ├── CHANGES ├── CONTRIBUTING ├── Configurations │ ├── 00-base-templates.conf │ ├── 10-main.conf │ ├── 15-android.conf │ ├── 15-ios.conf │ ├── 50-djgpp.conf │ ├── 50-haiku.conf │ ├── 50-masm.conf │ ├── 50-win-onecore.conf │ ├── INTERNALS.Configure │ ├── README │ ├── README.design │ ├── common.tmpl │ ├── common0.tmpl │ ├── descrip.mms.tmpl │ ├── dist.conf │ ├── shared-info.pl │ ├── unix-Makefile.tmpl │ ├── unix-checker.pm │ ├── windows-checker.pm │ └── windows-makefile.tmpl ├── Configure ├── FAQ ├── INSTALL ├── LICENSE ├── NEWS ├── NOTES.ANDROID ├── NOTES.DJGPP ├── NOTES.PERL ├── NOTES.UNIX ├── NOTES.VMS ├── NOTES.WIN ├── README ├── README.ENGINE ├── README.FIPS ├── VMS │ ├── VMSify-conf.pl │ ├── engine.opt │ ├── openssl_ivp.com.in │ ├── openssl_shutdown.com.in │ ├── openssl_startup.com.in │ ├── openssl_utils.com.in │ ├── test-includes.com │ └── translatesyms.pl ├── apps │ ├── CA.pl.in │ ├── app_rand.c │ ├── apps.c │ ├── apps.h │ ├── asn1pars.c │ ├── bf_prefix.c │ ├── build.info │ ├── ca-cert.srl │ ├── ca-key.pem │ ├── ca-req.pem │ ├── ca.c │ ├── cert.pem │ ├── ciphers.c │ ├── client.pem │ ├── cms.c │ ├── crl.c │ ├── crl2p7.c │ ├── ct_log_list.cnf │ ├── demoSRP │ │ ├── srp_verifier.txt │ │ └── srp_verifier.txt.attr │ ├── dgst.c │ ├── dh1024.pem │ ├── dh2048.pem │ ├── dh4096.pem │ ├── dhparam.c │ ├── dsa-ca.pem │ ├── dsa-pca.pem │ ├── dsa.c │ ├── dsa1024.pem │ ├── dsa512.pem │ ├── dsap.pem │ ├── dsaparam.c │ ├── ec.c │ ├── ecparam.c │ ├── enc.c │ ├── engine.c │ ├── errstr.c │ ├── gendsa.c │ ├── genpkey.c │ ├── genrsa.c │ ├── nseq.c │ ├── ocsp.c │ ├── openssl-vms.cnf │ ├── openssl.c │ ├── openssl.cnf │ ├── opt.c │ ├── passwd.c │ ├── pca-cert.srl │ ├── pca-key.pem │ ├── pca-req.pem │ ├── pkcs12.c │ ├── pkcs7.c │ ├── pkcs8.c │ ├── pkey.c │ ├── pkeyparam.c │ ├── pkeyutl.c │ ├── prime.c │ ├── privkey.pem │ ├── progs.pl │ ├── rand.c │ ├── rehash.c │ ├── req.c │ ├── req.pem │ ├── rsa.c │ ├── rsa8192.pem │ ├── rsautl.c │ ├── s1024key.pem │ ├── s1024req.pem │ ├── s512-key.pem │ ├── s512-req.pem │ ├── s_apps.h │ ├── s_cb.c │ ├── s_client.c │ ├── s_server.c │ ├── s_socket.c │ ├── s_time.c │ ├── server.pem │ ├── server.srl │ ├── server2.pem │ ├── sess_id.c │ ├── smime.c │ ├── speed.c │ ├── spkac.c │ ├── srp.c │ ├── storeutl.c │ ├── testCA.pem │ ├── testdsa.h │ ├── testrsa.h │ ├── timeouts.h │ ├── ts.c │ ├── tsget.in │ ├── verify.c │ ├── version.c │ ├── vms_decc_init.c │ ├── vms_term_sock.c │ ├── vms_term_sock.h │ ├── win32_init.c │ └── x509.c ├── appveyor.yml ├── build.info ├── config ├── config.com ├── crypto │ ├── LPdir_nyi.c │ ├── LPdir_unix.c │ ├── LPdir_vms.c │ ├── LPdir_win.c │ ├── LPdir_win32.c │ ├── LPdir_wince.c │ ├── aes │ │ ├── aes_cbc.c │ │ ├── aes_cfb.c │ │ ├── aes_core.c │ │ ├── aes_ecb.c │ │ ├── aes_ige.c │ │ ├── aes_locl.h │ │ ├── aes_misc.c │ │ ├── aes_ofb.c │ │ ├── aes_wrap.c │ │ ├── aes_x86core.c │ │ ├── asm │ │ │ ├── aes-586.pl │ │ │ ├── aes-armv4.pl │ │ │ ├── aes-c64xplus.pl │ │ │ ├── aes-ia64.S │ │ │ ├── aes-mips.pl │ │ │ ├── aes-parisc.pl │ │ │ ├── aes-ppc.pl │ │ │ ├── aes-s390x.pl │ │ │ ├── aes-sparcv9.pl │ │ │ ├── aes-x86_64.pl │ │ │ ├── aesfx-sparcv9.pl │ │ │ ├── aesni-mb-x86_64.pl │ │ │ ├── aesni-sha1-x86_64.pl │ │ │ ├── aesni-sha256-x86_64.pl │ │ │ ├── aesni-x86.pl │ │ │ ├── aesni-x86_64.pl │ │ │ ├── aesp8-ppc.pl │ │ │ ├── aest4-sparcv9.pl │ │ │ ├── aesv8-armx.pl │ │ │ ├── bsaes-armv7.pl │ │ │ ├── bsaes-x86_64.pl │ │ │ ├── vpaes-armv8.pl │ │ │ ├── vpaes-ppc.pl │ │ │ ├── vpaes-x86.pl │ │ │ └── vpaes-x86_64.pl │ │ └── build.info │ ├── alphacpuid.pl │ ├── aria │ │ ├── aria.c │ │ └── build.info │ ├── arm64cpuid.pl │ ├── arm_arch.h │ ├── armcap.c │ ├── armv4cpuid.pl │ ├── asn1 │ │ ├── a_bitstr.c │ │ ├── a_d2i_fp.c │ │ ├── a_digest.c │ │ ├── a_dup.c │ │ ├── a_gentm.c │ │ ├── a_i2d_fp.c │ │ ├── a_int.c │ │ ├── a_mbstr.c │ │ ├── a_object.c │ │ ├── a_octet.c │ │ ├── a_print.c │ │ ├── a_sign.c │ │ ├── a_strex.c │ │ ├── a_strnid.c │ │ ├── a_time.c │ │ ├── a_type.c │ │ ├── a_utctm.c │ │ ├── a_utf8.c │ │ ├── a_verify.c │ │ ├── ameth_lib.c │ │ ├── asn1_err.c │ │ ├── asn1_gen.c │ │ ├── asn1_item_list.c │ │ ├── asn1_item_list.h │ │ ├── asn1_lib.c │ │ ├── asn1_locl.h │ │ ├── asn1_par.c │ │ ├── asn_mime.c │ │ ├── asn_moid.c │ │ ├── asn_mstbl.c │ │ ├── asn_pack.c │ │ ├── bio_asn1.c │ │ ├── bio_ndef.c │ │ ├── build.info │ │ ├── charmap.h │ │ ├── charmap.pl │ │ ├── d2i_pr.c │ │ ├── d2i_pu.c │ │ ├── evp_asn1.c │ │ ├── f_int.c │ │ ├── f_string.c │ │ ├── i2d_pr.c │ │ ├── i2d_pu.c │ │ ├── n_pkey.c │ │ ├── nsseq.c │ │ ├── p5_pbe.c │ │ ├── p5_pbev2.c │ │ ├── p5_scrypt.c │ │ ├── p8_pkey.c │ │ ├── standard_methods.h │ │ ├── t_bitst.c │ │ ├── t_pkey.c │ │ ├── t_spki.c │ │ ├── tasn_dec.c │ │ ├── tasn_enc.c │ │ ├── tasn_fre.c │ │ ├── tasn_new.c │ │ ├── tasn_prn.c │ │ ├── tasn_scn.c │ │ ├── tasn_typ.c │ │ ├── tasn_utl.c │ │ ├── tbl_standard.h │ │ ├── x_algor.c │ │ ├── x_bignum.c │ │ ├── x_info.c │ │ ├── x_int64.c │ │ ├── x_long.c │ │ ├── x_pkey.c │ │ ├── x_sig.c │ │ ├── x_spki.c │ │ └── x_val.c │ ├── async │ │ ├── arch │ │ │ ├── async_null.c │ │ │ ├── async_null.h │ │ │ ├── async_posix.c │ │ │ ├── async_posix.h │ │ │ ├── async_win.c │ │ │ └── async_win.h │ │ ├── async.c │ │ ├── async_err.c │ │ ├── async_locl.h │ │ ├── async_wait.c │ │ └── build.info │ ├── bf │ │ ├── asm │ │ │ └── bf-586.pl │ │ ├── bf_cfb64.c │ │ ├── bf_ecb.c │ │ ├── bf_enc.c │ │ ├── bf_locl.h │ │ ├── bf_ofb64.c │ │ ├── bf_pi.h │ │ ├── bf_skey.c │ │ └── build.info │ ├── bio │ │ ├── b_addr.c │ │ ├── b_dump.c │ │ ├── b_print.c │ │ ├── b_sock.c │ │ ├── b_sock2.c │ │ ├── bf_buff.c │ │ ├── bf_lbuf.c │ │ ├── bf_nbio.c │ │ ├── bf_null.c │ │ ├── bio_cb.c │ │ ├── bio_err.c │ │ ├── bio_lcl.h │ │ ├── bio_lib.c │ │ ├── bio_meth.c │ │ ├── bss_acpt.c │ │ ├── bss_bio.c │ │ ├── bss_conn.c │ │ ├── bss_dgram.c │ │ ├── bss_fd.c │ │ ├── bss_file.c │ │ ├── bss_log.c │ │ ├── bss_mem.c │ │ ├── bss_null.c │ │ ├── bss_sock.c │ │ └── build.info │ ├── blake2 │ │ ├── blake2_impl.h │ │ ├── blake2_locl.h │ │ ├── blake2b.c │ │ ├── blake2s.c │ │ ├── build.info │ │ ├── m_blake2b.c │ │ └── m_blake2s.c │ ├── bn │ │ ├── README.pod │ │ ├── asm │ │ │ ├── alpha-mont.pl │ │ │ ├── armv4-gf2m.pl │ │ │ ├── armv4-mont.pl │ │ │ ├── armv8-mont.pl │ │ │ ├── bn-586.pl │ │ │ ├── bn-c64xplus.asm │ │ │ ├── c64xplus-gf2m.pl │ │ │ ├── co-586.pl │ │ │ ├── ia64-mont.pl │ │ │ ├── ia64.S │ │ │ ├── mips-mont.pl │ │ │ ├── mips.pl │ │ │ ├── parisc-mont.pl │ │ │ ├── ppc-mont.pl │ │ │ ├── ppc.pl │ │ │ ├── ppc64-mont.pl │ │ │ ├── rsaz-avx2.pl │ │ │ ├── rsaz-x86_64.pl │ │ │ ├── s390x-gf2m.pl │ │ │ ├── s390x-mont.pl │ │ │ ├── s390x.S │ │ │ ├── sparct4-mont.pl │ │ │ ├── sparcv8.S │ │ │ ├── sparcv8plus.S │ │ │ ├── sparcv9-gf2m.pl │ │ │ ├── sparcv9-mont.pl │ │ │ ├── sparcv9a-mont.pl │ │ │ ├── via-mont.pl │ │ │ ├── vis3-mont.pl │ │ │ ├── x86-gf2m.pl │ │ │ ├── x86-mont.pl │ │ │ ├── x86_64-gcc.c │ │ │ ├── x86_64-gf2m.pl │ │ │ ├── x86_64-mont.pl │ │ │ └── x86_64-mont5.pl │ │ ├── bn_add.c │ │ ├── bn_asm.c │ │ ├── bn_blind.c │ │ ├── bn_const.c │ │ ├── bn_ctx.c │ │ ├── bn_depr.c │ │ ├── bn_dh.c │ │ ├── bn_div.c │ │ ├── bn_err.c │ │ ├── bn_exp.c │ │ ├── bn_exp2.c │ │ ├── bn_gcd.c │ │ ├── bn_gf2m.c │ │ ├── bn_intern.c │ │ ├── bn_kron.c │ │ ├── bn_lcl.h │ │ ├── bn_lib.c │ │ ├── bn_mod.c │ │ ├── bn_mont.c │ │ ├── bn_mpi.c │ │ ├── bn_mul.c │ │ ├── bn_nist.c │ │ ├── bn_prime.c │ │ ├── bn_prime.h │ │ ├── bn_prime.pl │ │ ├── bn_print.c │ │ ├── bn_rand.c │ │ ├── bn_recp.c │ │ ├── bn_shift.c │ │ ├── bn_sqr.c │ │ ├── bn_sqrt.c │ │ ├── bn_srp.c │ │ ├── bn_word.c │ │ ├── bn_x931p.c │ │ ├── build.info │ │ ├── rsaz_exp.c │ │ └── rsaz_exp.h │ ├── buffer │ │ ├── buf_err.c │ │ ├── buffer.c │ │ └── build.info │ ├── build.info │ ├── c64xpluscpuid.pl │ ├── camellia │ │ ├── asm │ │ │ ├── cmll-x86.pl │ │ │ ├── cmll-x86_64.pl │ │ │ └── cmllt4-sparcv9.pl │ │ ├── build.info │ │ ├── camellia.c │ │ ├── cmll_cbc.c │ │ ├── cmll_cfb.c │ │ ├── cmll_ctr.c │ │ ├── cmll_ecb.c │ │ ├── cmll_locl.h │ │ ├── cmll_misc.c │ │ └── cmll_ofb.c │ ├── cast │ │ ├── asm │ │ │ └── cast-586.pl │ │ ├── build.info │ │ ├── c_cfb64.c │ │ ├── c_ecb.c │ │ ├── c_enc.c │ │ ├── c_ofb64.c │ │ ├── c_skey.c │ │ ├── cast_lcl.h │ │ └── cast_s.h │ ├── chacha │ │ ├── asm │ │ │ ├── chacha-armv4.pl │ │ │ ├── chacha-armv8.pl │ │ │ ├── chacha-c64xplus.pl │ │ │ ├── chacha-ppc.pl │ │ │ ├── chacha-s390x.pl │ │ │ ├── chacha-x86.pl │ │ │ └── chacha-x86_64.pl │ │ ├── build.info │ │ └── chacha_enc.c │ ├── cmac │ │ ├── build.info │ │ ├── cm_ameth.c │ │ ├── cm_pmeth.c │ │ └── cmac.c │ ├── cms │ │ ├── build.info │ │ ├── cms_asn1.c │ │ ├── cms_att.c │ │ ├── cms_cd.c │ │ ├── cms_dd.c │ │ ├── cms_enc.c │ │ ├── cms_env.c │ │ ├── cms_err.c │ │ ├── cms_ess.c │ │ ├── cms_io.c │ │ ├── cms_kari.c │ │ ├── cms_lcl.h │ │ ├── cms_lib.c │ │ ├── cms_pwri.c │ │ ├── cms_sd.c │ │ └── cms_smime.c │ ├── comp │ │ ├── build.info │ │ ├── c_zlib.c │ │ ├── comp_err.c │ │ ├── comp_lcl.h │ │ └── comp_lib.c │ ├── conf │ │ ├── build.info │ │ ├── conf_api.c │ │ ├── conf_def.c │ │ ├── conf_def.h │ │ ├── conf_err.c │ │ ├── conf_lcl.h │ │ ├── conf_lib.c │ │ ├── conf_mall.c │ │ ├── conf_mod.c │ │ ├── conf_sap.c │ │ ├── conf_ssl.c │ │ └── keysets.pl │ ├── cpt_err.c │ ├── cryptlib.c │ ├── ct │ │ ├── build.info │ │ ├── ct_b64.c │ │ ├── ct_err.c │ │ ├── ct_locl.h │ │ ├── ct_log.c │ │ ├── ct_oct.c │ │ ├── ct_policy.c │ │ ├── ct_prn.c │ │ ├── ct_sct.c │ │ ├── ct_sct_ctx.c │ │ ├── ct_vfy.c │ │ └── ct_x509v3.c │ ├── ctype.c │ ├── cversion.c │ ├── des │ │ ├── asm │ │ │ ├── crypt586.pl │ │ │ ├── des-586.pl │ │ │ ├── des_enc.m4 │ │ │ ├── desboth.pl │ │ │ └── dest4-sparcv9.pl │ │ ├── build.info │ │ ├── cbc_cksm.c │ │ ├── cbc_enc.c │ │ ├── cfb64ede.c │ │ ├── cfb64enc.c │ │ ├── cfb_enc.c │ │ ├── des_enc.c │ │ ├── des_locl.h │ │ ├── ecb3_enc.c │ │ ├── ecb_enc.c │ │ ├── fcrypt.c │ │ ├── fcrypt_b.c │ │ ├── ncbc_enc.c │ │ ├── ofb64ede.c │ │ ├── ofb64enc.c │ │ ├── ofb_enc.c │ │ ├── pcbc_enc.c │ │ ├── qud_cksm.c │ │ ├── rand_key.c │ │ ├── set_key.c │ │ ├── spr.h │ │ ├── str2key.c │ │ └── xcbc_enc.c │ ├── dh │ │ ├── build.info │ │ ├── dh1024.pem │ │ ├── dh192.pem │ │ ├── dh2048.pem │ │ ├── dh4096.pem │ │ ├── dh512.pem │ │ ├── dh_ameth.c │ │ ├── dh_asn1.c │ │ ├── dh_check.c │ │ ├── dh_depr.c │ │ ├── dh_err.c │ │ ├── dh_gen.c │ │ ├── dh_kdf.c │ │ ├── dh_key.c │ │ ├── dh_lib.c │ │ ├── dh_locl.h │ │ ├── dh_meth.c │ │ ├── dh_pmeth.c │ │ ├── dh_prn.c │ │ ├── dh_rfc5114.c │ │ └── dh_rfc7919.c │ ├── dllmain.c │ ├── dsa │ │ ├── build.info │ │ ├── dsa_ameth.c │ │ ├── dsa_asn1.c │ │ ├── dsa_depr.c │ │ ├── dsa_err.c │ │ ├── dsa_gen.c │ │ ├── dsa_key.c │ │ ├── dsa_lib.c │ │ ├── dsa_locl.h │ │ ├── dsa_meth.c │ │ ├── dsa_ossl.c │ │ ├── dsa_pmeth.c │ │ ├── dsa_prn.c │ │ ├── dsa_sign.c │ │ └── dsa_vrf.c │ ├── dso │ │ ├── build.info │ │ ├── dso_dl.c │ │ ├── dso_dlfcn.c │ │ ├── dso_err.c │ │ ├── dso_lib.c │ │ ├── dso_locl.h │ │ ├── dso_openssl.c │ │ ├── dso_vms.c │ │ └── dso_win32.c │ ├── ebcdic.c │ ├── ec │ │ ├── asm │ │ │ ├── ecp_nistz256-armv4.pl │ │ │ ├── ecp_nistz256-armv8.pl │ │ │ ├── ecp_nistz256-avx2.pl │ │ │ ├── ecp_nistz256-ppc64.pl │ │ │ ├── ecp_nistz256-sparcv9.pl │ │ │ ├── ecp_nistz256-x86.pl │ │ │ ├── ecp_nistz256-x86_64.pl │ │ │ ├── x25519-ppc64.pl │ │ │ └── x25519-x86_64.pl │ │ ├── build.info │ │ ├── curve25519.c │ │ ├── curve448 │ │ │ ├── arch_32 │ │ │ │ ├── arch_intrinsics.h │ │ │ │ ├── f_impl.c │ │ │ │ └── f_impl.h │ │ │ ├── curve448.c │ │ │ ├── curve448_lcl.h │ │ │ ├── curve448_tables.c │ │ │ ├── curve448utils.h │ │ │ ├── ed448.h │ │ │ ├── eddsa.c │ │ │ ├── f_generic.c │ │ │ ├── field.h │ │ │ ├── point_448.h │ │ │ ├── scalar.c │ │ │ └── word.h │ │ ├── ec2_oct.c │ │ ├── ec2_smpl.c │ │ ├── ec_ameth.c │ │ ├── ec_asn1.c │ │ ├── ec_check.c │ │ ├── ec_curve.c │ │ ├── ec_cvt.c │ │ ├── ec_err.c │ │ ├── ec_key.c │ │ ├── ec_kmeth.c │ │ ├── ec_lcl.h │ │ ├── ec_lib.c │ │ ├── ec_mult.c │ │ ├── ec_oct.c │ │ ├── ec_pmeth.c │ │ ├── ec_print.c │ │ ├── ecdh_kdf.c │ │ ├── ecdh_ossl.c │ │ ├── ecdsa_ossl.c │ │ ├── ecdsa_sign.c │ │ ├── ecdsa_vrf.c │ │ ├── eck_prn.c │ │ ├── ecp_mont.c │ │ ├── ecp_nist.c │ │ ├── ecp_nistp224.c │ │ ├── ecp_nistp256.c │ │ ├── ecp_nistp521.c │ │ ├── ecp_nistputil.c │ │ ├── ecp_nistz256.c │ │ ├── ecp_nistz256_table.c │ │ ├── ecp_oct.c │ │ ├── ecp_smpl.c │ │ └── ecx_meth.c │ ├── engine │ │ ├── README │ │ ├── build.info │ │ ├── eng_all.c │ │ ├── eng_cnf.c │ │ ├── eng_ctrl.c │ │ ├── eng_devcrypto.c │ │ ├── eng_dyn.c │ │ ├── eng_err.c │ │ ├── eng_fat.c │ │ ├── eng_init.c │ │ ├── eng_int.h │ │ ├── eng_lib.c │ │ ├── eng_list.c │ │ ├── eng_openssl.c │ │ ├── eng_pkey.c │ │ ├── eng_rdrand.c │ │ ├── eng_table.c │ │ ├── tb_asnmth.c │ │ ├── tb_cipher.c │ │ ├── tb_dh.c │ │ ├── tb_digest.c │ │ ├── tb_dsa.c │ │ ├── tb_eckey.c │ │ ├── tb_pkmeth.c │ │ ├── tb_rand.c │ │ └── tb_rsa.c │ ├── err │ │ ├── README │ │ ├── build.info │ │ ├── err.c │ │ ├── err_all.c │ │ ├── err_prn.c │ │ ├── openssl.ec │ │ └── openssl.txt │ ├── evp │ │ ├── bio_b64.c │ │ ├── bio_enc.c │ │ ├── bio_md.c │ │ ├── bio_ok.c │ │ ├── build.info │ │ ├── c_allc.c │ │ ├── c_alld.c │ │ ├── cmeth_lib.c │ │ ├── digest.c │ │ ├── e_aes.c │ │ ├── e_aes_cbc_hmac_sha1.c │ │ ├── e_aes_cbc_hmac_sha256.c │ │ ├── e_aria.c │ │ ├── e_bf.c │ │ ├── e_camellia.c │ │ ├── e_cast.c │ │ ├── e_chacha20_poly1305.c │ │ ├── e_des.c │ │ ├── e_des3.c │ │ ├── e_idea.c │ │ ├── e_null.c │ │ ├── e_old.c │ │ ├── e_rc2.c │ │ ├── e_rc4.c │ │ ├── e_rc4_hmac_md5.c │ │ ├── e_rc5.c │ │ ├── e_seed.c │ │ ├── e_sm4.c │ │ ├── e_xcbc_d.c │ │ ├── encode.c │ │ ├── evp_cnf.c │ │ ├── evp_enc.c │ │ ├── evp_err.c │ │ ├── evp_key.c │ │ ├── evp_lib.c │ │ ├── evp_locl.h │ │ ├── evp_pbe.c │ │ ├── evp_pkey.c │ │ ├── m_md2.c │ │ ├── m_md4.c │ │ ├── m_md5.c │ │ ├── m_md5_sha1.c │ │ ├── m_mdc2.c │ │ ├── m_null.c │ │ ├── m_ripemd.c │ │ ├── m_sha1.c │ │ ├── m_sha3.c │ │ ├── m_sigver.c │ │ ├── m_wp.c │ │ ├── names.c │ │ ├── p5_crpt.c │ │ ├── p5_crpt2.c │ │ ├── p_dec.c │ │ ├── p_enc.c │ │ ├── p_lib.c │ │ ├── p_open.c │ │ ├── p_seal.c │ │ ├── p_sign.c │ │ ├── p_verify.c │ │ ├── pbe_scrypt.c │ │ ├── pmeth_fn.c │ │ ├── pmeth_gn.c │ │ └── pmeth_lib.c │ ├── ex_data.c │ ├── hmac │ │ ├── build.info │ │ ├── hm_ameth.c │ │ ├── hm_pmeth.c │ │ ├── hmac.c │ │ └── hmac_lcl.h │ ├── ia64cpuid.S │ ├── idea │ │ ├── build.info │ │ ├── i_cbc.c │ │ ├── i_cfb64.c │ │ ├── i_ecb.c │ │ ├── i_ofb64.c │ │ ├── i_skey.c │ │ └── idea_lcl.h │ ├── include │ │ └── internal │ │ │ ├── __DECC_INCLUDE_EPILOGUE.H │ │ │ ├── __DECC_INCLUDE_PROLOGUE.H │ │ │ ├── aria.h │ │ │ ├── asn1_int.h │ │ │ ├── async.h │ │ │ ├── bn_conf.h.in │ │ │ ├── bn_dh.h │ │ │ ├── bn_int.h │ │ │ ├── bn_srp.h │ │ │ ├── chacha.h │ │ │ ├── cryptlib_int.h │ │ │ ├── ctype.h │ │ │ ├── dso_conf.h.in │ │ │ ├── ec_int.h │ │ │ ├── engine.h │ │ │ ├── err_int.h │ │ │ ├── evp_int.h │ │ │ ├── lhash.h │ │ │ ├── md32_common.h │ │ │ ├── objects.h │ │ │ ├── poly1305.h │ │ │ ├── rand_int.h │ │ │ ├── sha.h │ │ │ ├── siphash.h │ │ │ ├── sm2.h │ │ │ ├── sm2err.h │ │ │ ├── sm3.h │ │ │ ├── sm4.h │ │ │ ├── store.h │ │ │ ├── store_int.h │ │ │ └── x509_int.h │ ├── init.c │ ├── kdf │ │ ├── build.info │ │ ├── hkdf.c │ │ ├── kdf_err.c │ │ ├── scrypt.c │ │ └── tls1_prf.c │ ├── lhash │ │ ├── build.info │ │ ├── lh_stats.c │ │ ├── lhash.c │ │ └── lhash_lcl.h │ ├── md2 │ │ ├── build.info │ │ ├── md2_dgst.c │ │ └── md2_one.c │ ├── md4 │ │ ├── build.info │ │ ├── md4_dgst.c │ │ ├── md4_locl.h │ │ └── md4_one.c │ ├── md5 │ │ ├── asm │ │ │ ├── md5-586.pl │ │ │ ├── md5-sparcv9.pl │ │ │ └── md5-x86_64.pl │ │ ├── build.info │ │ ├── md5_dgst.c │ │ ├── md5_locl.h │ │ └── md5_one.c │ ├── mdc2 │ │ ├── build.info │ │ ├── mdc2_one.c │ │ └── mdc2dgst.c │ ├── mem.c │ ├── mem_clr.c │ ├── mem_dbg.c │ ├── mem_sec.c │ ├── mips_arch.h │ ├── modes │ │ ├── asm │ │ │ ├── aesni-gcm-x86_64.pl │ │ │ ├── ghash-alpha.pl │ │ │ ├── ghash-armv4.pl │ │ │ ├── ghash-c64xplus.pl │ │ │ ├── ghash-ia64.pl │ │ │ ├── ghash-parisc.pl │ │ │ ├── ghash-s390x.pl │ │ │ ├── ghash-sparcv9.pl │ │ │ ├── ghash-x86.pl │ │ │ ├── ghash-x86_64.pl │ │ │ ├── ghashp8-ppc.pl │ │ │ └── ghashv8-armx.pl │ │ ├── build.info │ │ ├── cbc128.c │ │ ├── ccm128.c │ │ ├── cfb128.c │ │ ├── ctr128.c │ │ ├── cts128.c │ │ ├── gcm128.c │ │ ├── modes_lcl.h │ │ ├── ocb128.c │ │ ├── ofb128.c │ │ ├── wrap128.c │ │ └── xts128.c │ ├── o_dir.c │ ├── o_fips.c │ ├── o_fopen.c │ ├── o_init.c │ ├── o_str.c │ ├── o_time.c │ ├── objects │ │ ├── README │ │ ├── build.info │ │ ├── o_names.c │ │ ├── obj_dat.c │ │ ├── obj_dat.h │ │ ├── obj_dat.pl │ │ ├── obj_err.c │ │ ├── obj_lcl.h │ │ ├── obj_lib.c │ │ ├── obj_mac.num │ │ ├── obj_xref.c │ │ ├── obj_xref.h │ │ ├── obj_xref.txt │ │ ├── objects.pl │ │ ├── objects.txt │ │ └── objxref.pl │ ├── ocsp │ │ ├── build.info │ │ ├── ocsp_asn.c │ │ ├── ocsp_cl.c │ │ ├── ocsp_err.c │ │ ├── ocsp_ext.c │ │ ├── ocsp_ht.c │ │ ├── ocsp_lcl.h │ │ ├── ocsp_lib.c │ │ ├── ocsp_prn.c │ │ ├── ocsp_srv.c │ │ ├── ocsp_vfy.c │ │ └── v3_ocsp.c │ ├── pariscid.pl │ ├── pem │ │ ├── build.info │ │ ├── pem_all.c │ │ ├── pem_err.c │ │ ├── pem_info.c │ │ ├── pem_lib.c │ │ ├── pem_oth.c │ │ ├── pem_pk8.c │ │ ├── pem_pkey.c │ │ ├── pem_sign.c │ │ ├── pem_x509.c │ │ ├── pem_xaux.c │ │ └── pvkfmt.c │ ├── perlasm │ │ ├── README │ │ ├── arm-xlate.pl │ │ ├── cbc.pl │ │ ├── ppc-xlate.pl │ │ ├── sparcv9_modes.pl │ │ ├── x86_64-xlate.pl │ │ ├── x86asm.pl │ │ ├── x86gas.pl │ │ ├── x86masm.pl │ │ └── x86nasm.pl │ ├── pkcs12 │ │ ├── build.info │ │ ├── p12_add.c │ │ ├── p12_asn.c │ │ ├── p12_attr.c │ │ ├── p12_crpt.c │ │ ├── p12_crt.c │ │ ├── p12_decr.c │ │ ├── p12_init.c │ │ ├── p12_key.c │ │ ├── p12_kiss.c │ │ ├── p12_lcl.h │ │ ├── p12_mutl.c │ │ ├── p12_npas.c │ │ ├── p12_p8d.c │ │ ├── p12_p8e.c │ │ ├── p12_sbag.c │ │ ├── p12_utl.c │ │ └── pk12err.c │ ├── pkcs7 │ │ ├── bio_pk7.c │ │ ├── build.info │ │ ├── pk7_asn1.c │ │ ├── pk7_attr.c │ │ ├── pk7_doit.c │ │ ├── pk7_lib.c │ │ ├── pk7_mime.c │ │ ├── pk7_smime.c │ │ └── pkcs7err.c │ ├── poly1305 │ │ ├── asm │ │ │ ├── poly1305-armv4.pl │ │ │ ├── poly1305-armv8.pl │ │ │ ├── poly1305-c64xplus.pl │ │ │ ├── poly1305-mips.pl │ │ │ ├── poly1305-ppc.pl │ │ │ ├── poly1305-ppcfp.pl │ │ │ ├── poly1305-s390x.pl │ │ │ ├── poly1305-sparcv9.pl │ │ │ ├── poly1305-x86.pl │ │ │ └── poly1305-x86_64.pl │ │ ├── build.info │ │ ├── poly1305.c │ │ ├── poly1305_ameth.c │ │ ├── poly1305_base2_44.c │ │ ├── poly1305_ieee754.c │ │ ├── poly1305_local.h │ │ └── poly1305_pmeth.c │ ├── ppc_arch.h │ ├── ppccap.c │ ├── ppccpuid.pl │ ├── rand │ │ ├── build.info │ │ ├── drbg_ctr.c │ │ ├── drbg_lib.c │ │ ├── rand_egd.c │ │ ├── rand_err.c │ │ ├── rand_lcl.h │ │ ├── rand_lib.c │ │ ├── rand_unix.c │ │ ├── rand_vms.c │ │ ├── rand_win.c │ │ └── randfile.c │ ├── rc2 │ │ ├── build.info │ │ ├── rc2_cbc.c │ │ ├── rc2_ecb.c │ │ ├── rc2_locl.h │ │ ├── rc2_skey.c │ │ ├── rc2cfb64.c │ │ └── rc2ofb64.c │ ├── rc4 │ │ ├── asm │ │ │ ├── rc4-586.pl │ │ │ ├── rc4-c64xplus.pl │ │ │ ├── rc4-md5-x86_64.pl │ │ │ ├── rc4-parisc.pl │ │ │ ├── rc4-s390x.pl │ │ │ └── rc4-x86_64.pl │ │ ├── build.info │ │ ├── rc4_enc.c │ │ ├── rc4_locl.h │ │ └── rc4_skey.c │ ├── rc5 │ │ ├── asm │ │ │ └── rc5-586.pl │ │ ├── build.info │ │ ├── rc5_ecb.c │ │ ├── rc5_enc.c │ │ ├── rc5_locl.h │ │ ├── rc5_skey.c │ │ ├── rc5cfb64.c │ │ └── rc5ofb64.c │ ├── ripemd │ │ ├── asm │ │ │ └── rmd-586.pl │ │ ├── build.info │ │ ├── rmd_dgst.c │ │ ├── rmd_locl.h │ │ ├── rmd_one.c │ │ └── rmdconst.h │ ├── rsa │ │ ├── build.info │ │ ├── rsa_ameth.c │ │ ├── rsa_asn1.c │ │ ├── rsa_chk.c │ │ ├── rsa_crpt.c │ │ ├── rsa_depr.c │ │ ├── rsa_err.c │ │ ├── rsa_gen.c │ │ ├── rsa_lib.c │ │ ├── rsa_locl.h │ │ ├── rsa_meth.c │ │ ├── rsa_mp.c │ │ ├── rsa_none.c │ │ ├── rsa_oaep.c │ │ ├── rsa_ossl.c │ │ ├── rsa_pk1.c │ │ ├── rsa_pmeth.c │ │ ├── rsa_prn.c │ │ ├── rsa_pss.c │ │ ├── rsa_saos.c │ │ ├── rsa_sign.c │ │ ├── rsa_ssl.c │ │ ├── rsa_x931.c │ │ └── rsa_x931g.c │ ├── s390x_arch.h │ ├── s390xcap.c │ ├── s390xcpuid.pl │ ├── seed │ │ ├── build.info │ │ ├── seed.c │ │ ├── seed_cbc.c │ │ ├── seed_cfb.c │ │ ├── seed_ecb.c │ │ ├── seed_locl.h │ │ └── seed_ofb.c │ ├── sha │ │ ├── asm │ │ │ ├── keccak1600-armv4.pl │ │ │ ├── keccak1600-armv8.pl │ │ │ ├── keccak1600-avx2.pl │ │ │ ├── keccak1600-avx512.pl │ │ │ ├── keccak1600-avx512vl.pl │ │ │ ├── keccak1600-c64x.pl │ │ │ ├── keccak1600-mmx.pl │ │ │ ├── keccak1600-ppc64.pl │ │ │ ├── keccak1600-s390x.pl │ │ │ ├── keccak1600-x86_64.pl │ │ │ ├── keccak1600p8-ppc.pl │ │ │ ├── sha1-586.pl │ │ │ ├── sha1-alpha.pl │ │ │ ├── sha1-armv4-large.pl │ │ │ ├── sha1-armv8.pl │ │ │ ├── sha1-c64xplus.pl │ │ │ ├── sha1-ia64.pl │ │ │ ├── sha1-mb-x86_64.pl │ │ │ ├── sha1-mips.pl │ │ │ ├── sha1-parisc.pl │ │ │ ├── sha1-ppc.pl │ │ │ ├── sha1-s390x.pl │ │ │ ├── sha1-sparcv9.pl │ │ │ ├── sha1-sparcv9a.pl │ │ │ ├── sha1-thumb.pl │ │ │ ├── sha1-x86_64.pl │ │ │ ├── sha256-586.pl │ │ │ ├── sha256-armv4.pl │ │ │ ├── sha256-c64xplus.pl │ │ │ ├── sha256-mb-x86_64.pl │ │ │ ├── sha512-586.pl │ │ │ ├── sha512-armv4.pl │ │ │ ├── sha512-armv8.pl │ │ │ ├── sha512-c64xplus.pl │ │ │ ├── sha512-ia64.pl │ │ │ ├── sha512-mips.pl │ │ │ ├── sha512-parisc.pl │ │ │ ├── sha512-ppc.pl │ │ │ ├── sha512-s390x.pl │ │ │ ├── sha512-sparcv9.pl │ │ │ ├── sha512-x86_64.pl │ │ │ └── sha512p8-ppc.pl │ │ ├── build.info │ │ ├── keccak1600.c │ │ ├── sha1_one.c │ │ ├── sha1dgst.c │ │ ├── sha256.c │ │ ├── sha512.c │ │ └── sha_locl.h │ ├── siphash │ │ ├── build.info │ │ ├── siphash.c │ │ ├── siphash_ameth.c │ │ ├── siphash_local.h │ │ └── siphash_pmeth.c │ ├── sm2 │ │ ├── build.info │ │ ├── sm2_crypt.c │ │ ├── sm2_err.c │ │ ├── sm2_pmeth.c │ │ └── sm2_sign.c │ ├── sm3 │ │ ├── build.info │ │ ├── m_sm3.c │ │ ├── sm3.c │ │ └── sm3_locl.h │ ├── sm4 │ │ ├── build.info │ │ └── sm4.c │ ├── sparc_arch.h │ ├── sparccpuid.S │ ├── sparcv9cap.c │ ├── srp │ │ ├── build.info │ │ ├── srp_lib.c │ │ └── srp_vfy.c │ ├── stack │ │ ├── build.info │ │ └── stack.c │ ├── store │ │ ├── build.info │ │ ├── loader_file.c │ │ ├── store_err.c │ │ ├── store_init.c │ │ ├── store_lib.c │ │ ├── store_locl.h │ │ ├── store_register.c │ │ └── store_strings.c │ ├── threads_none.c │ ├── threads_pthread.c │ ├── threads_win.c │ ├── ts │ │ ├── build.info │ │ ├── ts_asn1.c │ │ ├── ts_conf.c │ │ ├── ts_err.c │ │ ├── ts_lcl.h │ │ ├── ts_lib.c │ │ ├── ts_req_print.c │ │ ├── ts_req_utils.c │ │ ├── ts_rsp_print.c │ │ ├── ts_rsp_sign.c │ │ ├── ts_rsp_utils.c │ │ ├── ts_rsp_verify.c │ │ └── ts_verify_ctx.c │ ├── txt_db │ │ ├── build.info │ │ └── txt_db.c │ ├── ui │ │ ├── build.info │ │ ├── ui_err.c │ │ ├── ui_lib.c │ │ ├── ui_locl.h │ │ ├── ui_null.c │ │ ├── ui_openssl.c │ │ └── ui_util.c │ ├── uid.c │ ├── vms_rms.h │ ├── whrlpool │ │ ├── asm │ │ │ ├── wp-mmx.pl │ │ │ └── wp-x86_64.pl │ │ ├── build.info │ │ ├── wp_block.c │ │ ├── wp_dgst.c │ │ └── wp_locl.h │ ├── x509 │ │ ├── build.info │ │ ├── by_dir.c │ │ ├── by_file.c │ │ ├── t_crl.c │ │ ├── t_req.c │ │ ├── t_x509.c │ │ ├── x509_att.c │ │ ├── x509_cmp.c │ │ ├── x509_d2.c │ │ ├── x509_def.c │ │ ├── x509_err.c │ │ ├── x509_ext.c │ │ ├── x509_lcl.h │ │ ├── x509_lu.c │ │ ├── x509_meth.c │ │ ├── x509_obj.c │ │ ├── x509_r2x.c │ │ ├── x509_req.c │ │ ├── x509_set.c │ │ ├── x509_trs.c │ │ ├── x509_txt.c │ │ ├── x509_v3.c │ │ ├── x509_vfy.c │ │ ├── x509_vpm.c │ │ ├── x509cset.c │ │ ├── x509name.c │ │ ├── x509rset.c │ │ ├── x509spki.c │ │ ├── x509type.c │ │ ├── x_all.c │ │ ├── x_attrib.c │ │ ├── x_crl.c │ │ ├── x_exten.c │ │ ├── x_name.c │ │ ├── x_pubkey.c │ │ ├── x_req.c │ │ ├── x_x509.c │ │ └── x_x509a.c │ ├── x509v3 │ │ ├── build.info │ │ ├── ext_dat.h │ │ ├── pcy_cache.c │ │ ├── pcy_data.c │ │ ├── pcy_int.h │ │ ├── pcy_lib.c │ │ ├── pcy_map.c │ │ ├── pcy_node.c │ │ ├── pcy_tree.c │ │ ├── standard_exts.h │ │ ├── v3_addr.c │ │ ├── v3_admis.c │ │ ├── v3_admis.h │ │ ├── v3_akey.c │ │ ├── v3_akeya.c │ │ ├── v3_alt.c │ │ ├── v3_asid.c │ │ ├── v3_bcons.c │ │ ├── v3_bitst.c │ │ ├── v3_conf.c │ │ ├── v3_cpols.c │ │ ├── v3_crld.c │ │ ├── v3_enum.c │ │ ├── v3_extku.c │ │ ├── v3_genn.c │ │ ├── v3_ia5.c │ │ ├── v3_info.c │ │ ├── v3_int.c │ │ ├── v3_lib.c │ │ ├── v3_ncons.c │ │ ├── v3_pci.c │ │ ├── v3_pcia.c │ │ ├── v3_pcons.c │ │ ├── v3_pku.c │ │ ├── v3_pmaps.c │ │ ├── v3_prn.c │ │ ├── v3_purp.c │ │ ├── v3_skey.c │ │ ├── v3_sxnet.c │ │ ├── v3_tlsf.c │ │ ├── v3_utl.c │ │ └── v3err.c │ ├── x86_64cpuid.pl │ └── x86cpuid.pl ├── demos │ ├── README │ ├── bio │ │ ├── Makefile │ │ ├── README │ │ ├── accept.cnf │ │ ├── client-arg.c │ │ ├── client-conf.c │ │ ├── cmod.cnf │ │ ├── connect.cnf │ │ ├── descrip.mms │ │ ├── intca.pem │ │ ├── root.pem │ │ ├── saccept.c │ │ ├── sconnect.c │ │ ├── server-arg.c │ │ ├── server-cmod.c │ │ ├── server-conf.c │ │ ├── server-ec.pem │ │ ├── server.pem │ │ ├── shared.opt │ │ └── static.opt │ ├── certs │ │ ├── README │ │ ├── apps │ │ │ ├── apps.cnf │ │ │ ├── ckey.pem │ │ │ ├── intkey.pem │ │ │ ├── mkacerts.sh │ │ │ ├── mkxcerts.sh │ │ │ ├── rootkey.pem │ │ │ ├── skey.pem │ │ │ └── skey2.pem │ │ ├── ca.cnf │ │ ├── mkcerts.sh │ │ ├── ocspquery.sh │ │ └── ocsprun.sh │ ├── cms │ │ ├── cacert.pem │ │ ├── cakey.pem │ │ ├── cms_comp.c │ │ ├── cms_ddec.c │ │ ├── cms_dec.c │ │ ├── cms_denc.c │ │ ├── cms_enc.c │ │ ├── cms_sign.c │ │ ├── cms_sign2.c │ │ ├── cms_uncomp.c │ │ ├── cms_ver.c │ │ ├── comp.txt │ │ ├── encr.txt │ │ ├── sign.txt │ │ ├── signer.pem │ │ └── signer2.pem │ ├── engines │ │ └── e_chil.txt │ ├── evp │ │ ├── Makefile │ │ ├── aesccm.c │ │ └── aesgcm.c │ ├── pkcs12 │ │ ├── pkread.c │ │ └── pkwrite.c │ └── smime │ │ ├── cacert.pem │ │ ├── cakey.pem │ │ ├── encr.txt │ │ ├── sign.txt │ │ ├── signer.pem │ │ ├── signer2.pem │ │ ├── smdec.c │ │ ├── smenc.c │ │ ├── smsign.c │ │ ├── smsign2.c │ │ └── smver.c ├── doc │ ├── HOWTO │ │ ├── certificates.txt │ │ ├── keys.txt │ │ └── proxy_certificates.txt │ ├── README │ ├── dir-locals.example.el │ ├── fingerprints.txt │ ├── man1 │ │ ├── CA.pl.pod │ │ ├── asn1parse.pod │ │ ├── ca.pod │ │ ├── ciphers.pod │ │ ├── cms.pod │ │ ├── crl.pod │ │ ├── crl2pkcs7.pod │ │ ├── dgst.pod │ │ ├── dhparam.pod │ │ ├── dsa.pod │ │ ├── dsaparam.pod │ │ ├── ec.pod │ │ ├── ecparam.pod │ │ ├── enc.pod │ │ ├── engine.pod │ │ ├── errstr.pod │ │ ├── gendsa.pod │ │ ├── genpkey.pod │ │ ├── genrsa.pod │ │ ├── list.pod │ │ ├── nseq.pod │ │ ├── ocsp.pod │ │ ├── openssl.pod │ │ ├── passwd.pod │ │ ├── pkcs12.pod │ │ ├── pkcs7.pod │ │ ├── pkcs8.pod │ │ ├── pkey.pod │ │ ├── pkeyparam.pod │ │ ├── pkeyutl.pod │ │ ├── prime.pod │ │ ├── rand.pod │ │ ├── rehash.pod │ │ ├── req.pod │ │ ├── rsa.pod │ │ ├── rsautl.pod │ │ ├── s_client.pod │ │ ├── s_server.pod │ │ ├── s_time.pod │ │ ├── sess_id.pod │ │ ├── smime.pod │ │ ├── speed.pod │ │ ├── spkac.pod │ │ ├── srp.pod │ │ ├── storeutl.pod │ │ ├── ts.pod │ │ ├── tsget.pod │ │ ├── verify.pod │ │ ├── version.pod │ │ └── x509.pod │ ├── man3 │ │ ├── ADMISSIONS.pod │ │ ├── ASN1_INTEGER_get_int64.pod │ │ ├── ASN1_ITEM_lookup.pod │ │ ├── ASN1_OBJECT_new.pod │ │ ├── ASN1_STRING_TABLE_add.pod │ │ ├── ASN1_STRING_length.pod │ │ ├── ASN1_STRING_new.pod │ │ ├── ASN1_STRING_print_ex.pod │ │ ├── ASN1_TIME_set.pod │ │ ├── ASN1_TYPE_get.pod │ │ ├── ASN1_generate_nconf.pod │ │ ├── ASYNC_WAIT_CTX_new.pod │ │ ├── ASYNC_start_job.pod │ │ ├── BF_encrypt.pod │ │ ├── BIO_ADDR.pod │ │ ├── BIO_ADDRINFO.pod │ │ ├── BIO_connect.pod │ │ ├── BIO_ctrl.pod │ │ ├── BIO_f_base64.pod │ │ ├── BIO_f_buffer.pod │ │ ├── BIO_f_cipher.pod │ │ ├── BIO_f_md.pod │ │ ├── BIO_f_null.pod │ │ ├── BIO_f_ssl.pod │ │ ├── BIO_find_type.pod │ │ ├── BIO_get_data.pod │ │ ├── BIO_get_ex_new_index.pod │ │ ├── BIO_meth_new.pod │ │ ├── BIO_new.pod │ │ ├── BIO_new_CMS.pod │ │ ├── BIO_parse_hostserv.pod │ │ ├── BIO_printf.pod │ │ ├── BIO_push.pod │ │ ├── BIO_read.pod │ │ ├── BIO_s_accept.pod │ │ ├── BIO_s_bio.pod │ │ ├── BIO_s_connect.pod │ │ ├── BIO_s_fd.pod │ │ ├── BIO_s_file.pod │ │ ├── BIO_s_mem.pod │ │ ├── BIO_s_null.pod │ │ ├── BIO_s_socket.pod │ │ ├── BIO_set_callback.pod │ │ ├── BIO_should_retry.pod │ │ ├── BN_BLINDING_new.pod │ │ ├── BN_CTX_new.pod │ │ ├── BN_CTX_start.pod │ │ ├── BN_add.pod │ │ ├── BN_add_word.pod │ │ ├── BN_bn2bin.pod │ │ ├── BN_cmp.pod │ │ ├── BN_copy.pod │ │ ├── BN_generate_prime.pod │ │ ├── BN_mod_inverse.pod │ │ ├── BN_mod_mul_montgomery.pod │ │ ├── BN_mod_mul_reciprocal.pod │ │ ├── BN_new.pod │ │ ├── BN_num_bytes.pod │ │ ├── BN_rand.pod │ │ ├── BN_security_bits.pod │ │ ├── BN_set_bit.pod │ │ ├── BN_swap.pod │ │ ├── BN_zero.pod │ │ ├── BUF_MEM_new.pod │ │ ├── CMS_add0_cert.pod │ │ ├── CMS_add1_recipient_cert.pod │ │ ├── CMS_add1_signer.pod │ │ ├── CMS_compress.pod │ │ ├── CMS_decrypt.pod │ │ ├── CMS_encrypt.pod │ │ ├── CMS_final.pod │ │ ├── CMS_get0_RecipientInfos.pod │ │ ├── CMS_get0_SignerInfos.pod │ │ ├── CMS_get0_type.pod │ │ ├── CMS_get1_ReceiptRequest.pod │ │ ├── CMS_sign.pod │ │ ├── CMS_sign_receipt.pod │ │ ├── CMS_uncompress.pod │ │ ├── CMS_verify.pod │ │ ├── CMS_verify_receipt.pod │ │ ├── CONF_modules_free.pod │ │ ├── CONF_modules_load_file.pod │ │ ├── CRYPTO_THREAD_run_once.pod │ │ ├── CRYPTO_get_ex_new_index.pod │ │ ├── CTLOG_STORE_get0_log_by_id.pod │ │ ├── CTLOG_STORE_new.pod │ │ ├── CTLOG_new.pod │ │ ├── CT_POLICY_EVAL_CTX_new.pod │ │ ├── DEFINE_STACK_OF.pod │ │ ├── DES_random_key.pod │ │ ├── DH_generate_key.pod │ │ ├── DH_generate_parameters.pod │ │ ├── DH_get0_pqg.pod │ │ ├── DH_get_1024_160.pod │ │ ├── DH_meth_new.pod │ │ ├── DH_new.pod │ │ ├── DH_new_by_nid.pod │ │ ├── DH_set_method.pod │ │ ├── DH_size.pod │ │ ├── DSA_SIG_new.pod │ │ ├── DSA_do_sign.pod │ │ ├── DSA_dup_DH.pod │ │ ├── DSA_generate_key.pod │ │ ├── DSA_generate_parameters.pod │ │ ├── DSA_get0_pqg.pod │ │ ├── DSA_meth_new.pod │ │ ├── DSA_new.pod │ │ ├── DSA_set_method.pod │ │ ├── DSA_sign.pod │ │ ├── DSA_size.pod │ │ ├── DTLS_get_data_mtu.pod │ │ ├── DTLS_set_timer_cb.pod │ │ ├── DTLSv1_listen.pod │ │ ├── ECDSA_SIG_new.pod │ │ ├── ECPKParameters_print.pod │ │ ├── EC_GFp_simple_method.pod │ │ ├── EC_GROUP_copy.pod │ │ ├── EC_GROUP_new.pod │ │ ├── EC_KEY_get_enc_flags.pod │ │ ├── EC_KEY_new.pod │ │ ├── EC_POINT_add.pod │ │ ├── EC_POINT_new.pod │ │ ├── ENGINE_add.pod │ │ ├── ERR_GET_LIB.pod │ │ ├── ERR_clear_error.pod │ │ ├── ERR_error_string.pod │ │ ├── ERR_get_error.pod │ │ ├── ERR_load_crypto_strings.pod │ │ ├── ERR_load_strings.pod │ │ ├── ERR_print_errors.pod │ │ ├── ERR_put_error.pod │ │ ├── ERR_remove_state.pod │ │ ├── ERR_set_mark.pod │ │ ├── EVP_BytesToKey.pod │ │ ├── EVP_CIPHER_CTX_get_cipher_data.pod │ │ ├── EVP_CIPHER_meth_new.pod │ │ ├── EVP_DigestInit.pod │ │ ├── EVP_DigestSignInit.pod │ │ ├── EVP_DigestVerifyInit.pod │ │ ├── EVP_EncodeInit.pod │ │ ├── EVP_EncryptInit.pod │ │ ├── EVP_MD_meth_new.pod │ │ ├── EVP_OpenInit.pod │ │ ├── EVP_PKEY_ASN1_METHOD.pod │ │ ├── EVP_PKEY_CTX_ctrl.pod │ │ ├── EVP_PKEY_CTX_new.pod │ │ ├── EVP_PKEY_CTX_set1_pbe_pass.pod │ │ ├── EVP_PKEY_CTX_set_hkdf_md.pod │ │ ├── EVP_PKEY_CTX_set_rsa_pss_keygen_md.pod │ │ ├── EVP_PKEY_CTX_set_scrypt_N.pod │ │ ├── EVP_PKEY_CTX_set_tls1_prf_md.pod │ │ ├── EVP_PKEY_asn1_get_count.pod │ │ ├── EVP_PKEY_cmp.pod │ │ ├── EVP_PKEY_decrypt.pod │ │ ├── EVP_PKEY_derive.pod │ │ ├── EVP_PKEY_encrypt.pod │ │ ├── EVP_PKEY_get_default_digest_nid.pod │ │ ├── EVP_PKEY_keygen.pod │ │ ├── EVP_PKEY_meth_get_count.pod │ │ ├── EVP_PKEY_meth_new.pod │ │ ├── EVP_PKEY_new.pod │ │ ├── EVP_PKEY_print_private.pod │ │ ├── EVP_PKEY_set1_RSA.pod │ │ ├── EVP_PKEY_sign.pod │ │ ├── EVP_PKEY_verify.pod │ │ ├── EVP_PKEY_verify_recover.pod │ │ ├── EVP_SealInit.pod │ │ ├── EVP_SignInit.pod │ │ ├── EVP_VerifyInit.pod │ │ ├── EVP_aes.pod │ │ ├── EVP_aria.pod │ │ ├── EVP_bf_cbc.pod │ │ ├── EVP_blake2b512.pod │ │ ├── EVP_camellia.pod │ │ ├── EVP_cast5_cbc.pod │ │ ├── EVP_chacha20.pod │ │ ├── EVP_des.pod │ │ ├── EVP_desx_cbc.pod │ │ ├── EVP_idea_cbc.pod │ │ ├── EVP_md2.pod │ │ ├── EVP_md4.pod │ │ ├── EVP_md5.pod │ │ ├── EVP_mdc2.pod │ │ ├── EVP_rc2_cbc.pod │ │ ├── EVP_rc4.pod │ │ ├── EVP_rc5_32_12_16_cbc.pod │ │ ├── EVP_ripemd160.pod │ │ ├── EVP_seed_cbc.pod │ │ ├── EVP_sha1.pod │ │ ├── EVP_sha224.pod │ │ ├── EVP_sha3_224.pod │ │ ├── EVP_sm3.pod │ │ ├── EVP_sm4_cbc.pod │ │ ├── EVP_whirlpool.pod │ │ ├── HMAC.pod │ │ ├── MD5.pod │ │ ├── MDC2_Init.pod │ │ ├── OBJ_nid2obj.pod │ │ ├── OCSP_REQUEST_new.pod │ │ ├── OCSP_cert_to_id.pod │ │ ├── OCSP_request_add1_nonce.pod │ │ ├── OCSP_resp_find_status.pod │ │ ├── OCSP_response_status.pod │ │ ├── OCSP_sendreq_new.pod │ │ ├── OPENSSL_Applink.pod │ │ ├── OPENSSL_LH_COMPFUNC.pod │ │ ├── OPENSSL_LH_stats.pod │ │ ├── OPENSSL_VERSION_NUMBER.pod │ │ ├── OPENSSL_config.pod │ │ ├── OPENSSL_fork_prepare.pod │ │ ├── OPENSSL_ia32cap.pod │ │ ├── OPENSSL_init_crypto.pod │ │ ├── OPENSSL_init_ssl.pod │ │ ├── OPENSSL_instrument_bus.pod │ │ ├── OPENSSL_load_builtin_modules.pod │ │ ├── OPENSSL_malloc.pod │ │ ├── OPENSSL_secure_malloc.pod │ │ ├── OSSL_STORE_INFO.pod │ │ ├── OSSL_STORE_LOADER.pod │ │ ├── OSSL_STORE_SEARCH.pod │ │ ├── OSSL_STORE_expect.pod │ │ ├── OSSL_STORE_open.pod │ │ ├── OpenSSL_add_all_algorithms.pod │ │ ├── PEM_bytes_read_bio.pod │ │ ├── PEM_read.pod │ │ ├── PEM_read_CMS.pod │ │ ├── PEM_read_bio_PrivateKey.pod │ │ ├── PEM_read_bio_ex.pod │ │ ├── PEM_write_bio_CMS_stream.pod │ │ ├── PEM_write_bio_PKCS7_stream.pod │ │ ├── PKCS12_create.pod │ │ ├── PKCS12_newpass.pod │ │ ├── PKCS12_parse.pod │ │ ├── PKCS5_PBKDF2_HMAC.pod │ │ ├── PKCS7_decrypt.pod │ │ ├── PKCS7_encrypt.pod │ │ ├── PKCS7_sign.pod │ │ ├── PKCS7_sign_add_signer.pod │ │ ├── PKCS7_verify.pod │ │ ├── RAND_DRBG_generate.pod │ │ ├── RAND_DRBG_get0_master.pod │ │ ├── RAND_DRBG_new.pod │ │ ├── RAND_DRBG_reseed.pod │ │ ├── RAND_DRBG_set_callbacks.pod │ │ ├── RAND_DRBG_set_ex_data.pod │ │ ├── RAND_add.pod │ │ ├── RAND_bytes.pod │ │ ├── RAND_cleanup.pod │ │ ├── RAND_egd.pod │ │ ├── RAND_load_file.pod │ │ ├── RAND_set_rand_method.pod │ │ ├── RC4_set_key.pod │ │ ├── RIPEMD160_Init.pod │ │ ├── RSA_blinding_on.pod │ │ ├── RSA_check_key.pod │ │ ├── RSA_generate_key.pod │ │ ├── RSA_get0_key.pod │ │ ├── RSA_meth_new.pod │ │ ├── RSA_new.pod │ │ ├── RSA_padding_add_PKCS1_type_1.pod │ │ ├── RSA_print.pod │ │ ├── RSA_private_encrypt.pod │ │ ├── RSA_public_encrypt.pod │ │ ├── RSA_set_method.pod │ │ ├── RSA_sign.pod │ │ ├── RSA_sign_ASN1_OCTET_STRING.pod │ │ ├── RSA_size.pod │ │ ├── SCT_new.pod │ │ ├── SCT_print.pod │ │ ├── SCT_validate.pod │ │ ├── SHA256_Init.pod │ │ ├── SMIME_read_CMS.pod │ │ ├── SMIME_read_PKCS7.pod │ │ ├── SMIME_write_CMS.pod │ │ ├── SMIME_write_PKCS7.pod │ │ ├── SSL_CIPHER_get_name.pod │ │ ├── SSL_COMP_add_compression_method.pod │ │ ├── SSL_CONF_CTX_new.pod │ │ ├── SSL_CONF_CTX_set1_prefix.pod │ │ ├── SSL_CONF_CTX_set_flags.pod │ │ ├── SSL_CONF_CTX_set_ssl_ctx.pod │ │ ├── SSL_CONF_cmd.pod │ │ ├── SSL_CONF_cmd_argv.pod │ │ ├── SSL_CTX_add1_chain_cert.pod │ │ ├── SSL_CTX_add_extra_chain_cert.pod │ │ ├── SSL_CTX_add_session.pod │ │ ├── SSL_CTX_config.pod │ │ ├── SSL_CTX_ctrl.pod │ │ ├── SSL_CTX_dane_enable.pod │ │ ├── SSL_CTX_flush_sessions.pod │ │ ├── SSL_CTX_free.pod │ │ ├── SSL_CTX_get0_param.pod │ │ ├── SSL_CTX_get_verify_mode.pod │ │ ├── SSL_CTX_has_client_custom_ext.pod │ │ ├── SSL_CTX_load_verify_locations.pod │ │ ├── SSL_CTX_new.pod │ │ ├── SSL_CTX_sess_number.pod │ │ ├── SSL_CTX_sess_set_cache_size.pod │ │ ├── SSL_CTX_sess_set_get_cb.pod │ │ ├── SSL_CTX_sessions.pod │ │ ├── SSL_CTX_set0_CA_list.pod │ │ ├── SSL_CTX_set1_curves.pod │ │ ├── SSL_CTX_set1_sigalgs.pod │ │ ├── SSL_CTX_set1_verify_cert_store.pod │ │ ├── SSL_CTX_set_alpn_select_cb.pod │ │ ├── SSL_CTX_set_cert_cb.pod │ │ ├── SSL_CTX_set_cert_store.pod │ │ ├── SSL_CTX_set_cert_verify_callback.pod │ │ ├── SSL_CTX_set_cipher_list.pod │ │ ├── SSL_CTX_set_client_CA_list.pod │ │ ├── SSL_CTX_set_client_cert_cb.pod │ │ ├── SSL_CTX_set_client_hello_cb.pod │ │ ├── SSL_CTX_set_ct_validation_callback.pod │ │ ├── SSL_CTX_set_ctlog_list_file.pod │ │ ├── SSL_CTX_set_default_passwd_cb.pod │ │ ├── SSL_CTX_set_ex_data.pod │ │ ├── SSL_CTX_set_generate_session_id.pod │ │ ├── SSL_CTX_set_info_callback.pod │ │ ├── SSL_CTX_set_keylog_callback.pod │ │ ├── SSL_CTX_set_max_cert_list.pod │ │ ├── SSL_CTX_set_min_proto_version.pod │ │ ├── SSL_CTX_set_mode.pod │ │ ├── SSL_CTX_set_msg_callback.pod │ │ ├── SSL_CTX_set_num_tickets.pod │ │ ├── SSL_CTX_set_options.pod │ │ ├── SSL_CTX_set_psk_client_callback.pod │ │ ├── SSL_CTX_set_quiet_shutdown.pod │ │ ├── SSL_CTX_set_read_ahead.pod │ │ ├── SSL_CTX_set_record_padding_callback.pod │ │ ├── SSL_CTX_set_security_level.pod │ │ ├── SSL_CTX_set_session_cache_mode.pod │ │ ├── SSL_CTX_set_session_id_context.pod │ │ ├── SSL_CTX_set_session_ticket_cb.pod │ │ ├── SSL_CTX_set_split_send_fragment.pod │ │ ├── SSL_CTX_set_ssl_version.pod │ │ ├── SSL_CTX_set_stateless_cookie_generate_cb.pod │ │ ├── SSL_CTX_set_timeout.pod │ │ ├── SSL_CTX_set_tlsext_servername_callback.pod │ │ ├── SSL_CTX_set_tlsext_status_cb.pod │ │ ├── SSL_CTX_set_tlsext_ticket_key_cb.pod │ │ ├── SSL_CTX_set_tlsext_use_srtp.pod │ │ ├── SSL_CTX_set_tmp_dh_callback.pod │ │ ├── SSL_CTX_set_verify.pod │ │ ├── SSL_CTX_use_certificate.pod │ │ ├── SSL_CTX_use_psk_identity_hint.pod │ │ ├── SSL_CTX_use_serverinfo.pod │ │ ├── SSL_SESSION_free.pod │ │ ├── SSL_SESSION_get0_cipher.pod │ │ ├── SSL_SESSION_get0_hostname.pod │ │ ├── SSL_SESSION_get0_id_context.pod │ │ ├── SSL_SESSION_get0_peer.pod │ │ ├── SSL_SESSION_get_compress_id.pod │ │ ├── SSL_SESSION_get_ex_data.pod │ │ ├── SSL_SESSION_get_protocol_version.pod │ │ ├── SSL_SESSION_get_time.pod │ │ ├── SSL_SESSION_has_ticket.pod │ │ ├── SSL_SESSION_is_resumable.pod │ │ ├── SSL_SESSION_print.pod │ │ ├── SSL_SESSION_set1_id.pod │ │ ├── SSL_accept.pod │ │ ├── SSL_alert_type_string.pod │ │ ├── SSL_alloc_buffers.pod │ │ ├── SSL_check_chain.pod │ │ ├── SSL_clear.pod │ │ ├── SSL_connect.pod │ │ ├── SSL_do_handshake.pod │ │ ├── SSL_export_keying_material.pod │ │ ├── SSL_extension_supported.pod │ │ ├── SSL_free.pod │ │ ├── SSL_get0_peer_scts.pod │ │ ├── SSL_get_SSL_CTX.pod │ │ ├── SSL_get_all_async_fds.pod │ │ ├── SSL_get_ciphers.pod │ │ ├── SSL_get_client_CA_list.pod │ │ ├── SSL_get_client_random.pod │ │ ├── SSL_get_current_cipher.pod │ │ ├── SSL_get_default_timeout.pod │ │ ├── SSL_get_error.pod │ │ ├── SSL_get_extms_support.pod │ │ ├── SSL_get_fd.pod │ │ ├── SSL_get_peer_cert_chain.pod │ │ ├── SSL_get_peer_certificate.pod │ │ ├── SSL_get_peer_signature_nid.pod │ │ ├── SSL_get_psk_identity.pod │ │ ├── SSL_get_rbio.pod │ │ ├── SSL_get_server_tmp_key.pod │ │ ├── SSL_get_session.pod │ │ ├── SSL_get_shared_sigalgs.pod │ │ ├── SSL_get_verify_result.pod │ │ ├── SSL_get_version.pod │ │ ├── SSL_in_init.pod │ │ ├── SSL_key_update.pod │ │ ├── SSL_library_init.pod │ │ ├── SSL_load_client_CA_file.pod │ │ ├── SSL_new.pod │ │ ├── SSL_pending.pod │ │ ├── SSL_read.pod │ │ ├── SSL_read_early_data.pod │ │ ├── SSL_rstate_string.pod │ │ ├── SSL_session_reused.pod │ │ ├── SSL_set1_host.pod │ │ ├── SSL_set_bio.pod │ │ ├── SSL_set_connect_state.pod │ │ ├── SSL_set_fd.pod │ │ ├── SSL_set_session.pod │ │ ├── SSL_set_shutdown.pod │ │ ├── SSL_set_verify_result.pod │ │ ├── SSL_shutdown.pod │ │ ├── SSL_state_string.pod │ │ ├── SSL_want.pod │ │ ├── SSL_write.pod │ │ ├── UI_STRING.pod │ │ ├── UI_UTIL_read_pw.pod │ │ ├── UI_create_method.pod │ │ ├── UI_new.pod │ │ ├── X509V3_get_d2i.pod │ │ ├── X509_ALGOR_dup.pod │ │ ├── X509_CRL_get0_by_serial.pod │ │ ├── X509_EXTENSION_set_object.pod │ │ ├── X509_LOOKUP_hash_dir.pod │ │ ├── X509_LOOKUP_meth_new.pod │ │ ├── X509_NAME_ENTRY_get_object.pod │ │ ├── X509_NAME_add_entry_by_txt.pod │ │ ├── X509_NAME_get0_der.pod │ │ ├── X509_NAME_get_index_by_NID.pod │ │ ├── X509_NAME_print_ex.pod │ │ ├── X509_PUBKEY_new.pod │ │ ├── X509_SIG_get0.pod │ │ ├── X509_STORE_CTX_get_error.pod │ │ ├── X509_STORE_CTX_new.pod │ │ ├── X509_STORE_CTX_set_verify_cb.pod │ │ ├── X509_STORE_add_cert.pod │ │ ├── X509_STORE_get0_param.pod │ │ ├── X509_STORE_new.pod │ │ ├── X509_STORE_set_verify_cb_func.pod │ │ ├── X509_VERIFY_PARAM_set_flags.pod │ │ ├── X509_check_ca.pod │ │ ├── X509_check_host.pod │ │ ├── X509_check_issued.pod │ │ ├── X509_check_private_key.pod │ │ ├── X509_cmp_time.pod │ │ ├── X509_digest.pod │ │ ├── X509_dup.pod │ │ ├── X509_get0_notBefore.pod │ │ ├── X509_get0_signature.pod │ │ ├── X509_get0_uids.pod │ │ ├── X509_get_extension_flags.pod │ │ ├── X509_get_pubkey.pod │ │ ├── X509_get_serialNumber.pod │ │ ├── X509_get_subject_name.pod │ │ ├── X509_get_version.pod │ │ ├── X509_new.pod │ │ ├── X509_sign.pod │ │ ├── X509_verify_cert.pod │ │ ├── X509v3_get_ext_by_NID.pod │ │ ├── d2i_DHparams.pod │ │ ├── d2i_PKCS8PrivateKey_bio.pod │ │ ├── d2i_PrivateKey.pod │ │ ├── d2i_SSL_SESSION.pod │ │ ├── d2i_X509.pod │ │ ├── i2d_CMS_bio_stream.pod │ │ ├── i2d_PKCS7_bio_stream.pod │ │ ├── i2d_re_X509_tbs.pod │ │ └── o2i_SCT_LIST.pod │ ├── man5 │ │ ├── config.pod │ │ └── x509v3_config.pod │ ├── man7 │ │ ├── Ed25519.pod │ │ ├── RAND.pod │ │ ├── RAND_DRBG.pod │ │ ├── RSA-PSS.pod │ │ ├── SM2.pod │ │ ├── X25519.pod │ │ ├── bio.pod │ │ ├── crypto.pod │ │ ├── ct.pod │ │ ├── des_modes.pod │ │ ├── evp.pod │ │ ├── ossl_store-file.pod │ │ ├── ossl_store.pod │ │ ├── passphrase-encoding.pod │ │ ├── scrypt.pod │ │ ├── ssl.pod │ │ └── x509.pod │ └── openssl-c-indent.el ├── e_os.h ├── engines │ ├── asm │ │ ├── e_padlock-x86.pl │ │ └── e_padlock-x86_64.pl │ ├── build.info │ ├── e_afalg.c │ ├── e_afalg.ec │ ├── e_afalg.h │ ├── e_afalg.txt │ ├── e_afalg_err.c │ ├── e_afalg_err.h │ ├── e_capi.c │ ├── e_capi.ec │ ├── e_capi.txt │ ├── e_capi_err.c │ ├── e_capi_err.h │ ├── e_dasync.c │ ├── e_dasync.ec │ ├── e_dasync.txt │ ├── e_dasync_err.c │ ├── e_dasync_err.h │ ├── e_ossltest.c │ ├── e_ossltest.ec │ ├── e_ossltest.txt │ ├── e_ossltest_err.c │ ├── e_ossltest_err.h │ └── e_padlock.c ├── external │ └── perl │ │ ├── Downloaded.txt │ │ ├── Text-Template-1.46 │ │ ├── Artistic │ │ ├── COPYING │ │ ├── INSTALL │ │ ├── MANIFEST │ │ ├── META.json │ │ ├── META.yml │ │ ├── Makefile.PL │ │ ├── README │ │ ├── lib │ │ │ └── Text │ │ │ │ ├── Template.pm │ │ │ │ └── Template │ │ │ │ └── Preprocess.pm │ │ └── t │ │ │ ├── 00-version.t │ │ │ ├── 01-basic.t │ │ │ ├── 02-hash.t │ │ │ ├── 03-out.t │ │ │ ├── 04-safe.t │ │ │ ├── 05-safe2.t │ │ │ ├── 06-ofh.t │ │ │ ├── 07-safe3.t │ │ │ ├── 08-exported.t │ │ │ ├── 09-error.t │ │ │ ├── 10-delimiters.t │ │ │ ├── 11-prepend.t │ │ │ ├── 12-preprocess.t │ │ │ ├── 13-taint.t │ │ │ └── 14-broken.t │ │ └── transfer │ │ └── Text │ │ └── Template.pm ├── fuzz │ ├── README.md │ ├── asn1.c │ ├── asn1parse.c │ ├── bignum.c │ ├── bndiv.c │ ├── build.info │ ├── client.c │ ├── cms.c │ ├── conf.c │ ├── crl.c │ ├── ct.c │ ├── driver.c │ ├── fuzzer.h │ ├── helper.py │ ├── mkfuzzoids.pl │ ├── oids.txt │ ├── rand.inc │ ├── server.c │ ├── test-corpus.c │ └── x509.c ├── gy.txt ├── include │ ├── internal │ │ ├── __DECC_INCLUDE_EPILOGUE.H │ │ ├── __DECC_INCLUDE_PROLOGUE.H │ │ ├── bio.h │ │ ├── comp.h │ │ ├── conf.h │ │ ├── constant_time_locl.h │ │ ├── cryptlib.h │ │ ├── dane.h │ │ ├── dso.h │ │ ├── dsoerr.h │ │ ├── err.h │ │ ├── nelem.h │ │ ├── numbers.h │ │ ├── o_dir.h │ │ ├── o_str.h │ │ ├── refcount.h │ │ ├── sockets.h │ │ ├── sslconf.h │ │ ├── thread_once.h │ │ └── tsan_assist.h │ └── openssl │ │ ├── __DECC_INCLUDE_EPILOGUE.H │ │ ├── __DECC_INCLUDE_PROLOGUE.H │ │ ├── aes.h │ │ ├── asn1.h │ │ ├── asn1err.h │ │ ├── asn1t.h │ │ ├── async.h │ │ ├── asyncerr.h │ │ ├── bio.h │ │ ├── bioerr.h │ │ ├── blowfish.h │ │ ├── bn.h │ │ ├── bnerr.h │ │ ├── buffer.h │ │ ├── buffererr.h │ │ ├── camellia.h │ │ ├── cast.h │ │ ├── cmac.h │ │ ├── cms.h │ │ ├── cmserr.h │ │ ├── comp.h │ │ ├── comperr.h │ │ ├── conf.h │ │ ├── conf_api.h │ │ ├── conferr.h │ │ ├── crypto.h │ │ ├── cryptoerr.h │ │ ├── ct.h │ │ ├── cterr.h │ │ ├── des.h │ │ ├── dh.h │ │ ├── dherr.h │ │ ├── dsa.h │ │ ├── dsaerr.h │ │ ├── dtls1.h │ │ ├── e_os2.h │ │ ├── ebcdic.h │ │ ├── ec.h │ │ ├── ecdh.h │ │ ├── ecdsa.h │ │ ├── ecerr.h │ │ ├── engine.h │ │ ├── engineerr.h │ │ ├── err.h │ │ ├── evp.h │ │ ├── evperr.h │ │ ├── hmac.h │ │ ├── idea.h │ │ ├── kdf.h │ │ ├── kdferr.h │ │ ├── lhash.h │ │ ├── md2.h │ │ ├── md4.h │ │ ├── md5.h │ │ ├── mdc2.h │ │ ├── modes.h │ │ ├── obj_mac.h │ │ ├── objects.h │ │ ├── objectserr.h │ │ ├── ocsp.h │ │ ├── ocsperr.h │ │ ├── opensslconf.h.in │ │ ├── opensslv.h │ │ ├── ossl_typ.h │ │ ├── pem.h │ │ ├── pem2.h │ │ ├── pemerr.h │ │ ├── pkcs12.h │ │ ├── pkcs12err.h │ │ ├── pkcs7.h │ │ ├── pkcs7err.h │ │ ├── rand.h │ │ ├── rand_drbg.h │ │ ├── randerr.h │ │ ├── rc2.h │ │ ├── rc4.h │ │ ├── rc5.h │ │ ├── ripemd.h │ │ ├── rsa.h │ │ ├── rsaerr.h │ │ ├── safestack.h │ │ ├── seed.h │ │ ├── sha.h │ │ ├── srp.h │ │ ├── srtp.h │ │ ├── ssl.h │ │ ├── ssl2.h │ │ ├── ssl3.h │ │ ├── sslerr.h │ │ ├── stack.h │ │ ├── store.h │ │ ├── storeerr.h │ │ ├── symhacks.h │ │ ├── tls1.h │ │ ├── ts.h │ │ ├── tserr.h │ │ ├── txt_db.h │ │ ├── ui.h │ │ ├── uierr.h │ │ ├── whrlpool.h │ │ ├── x509.h │ │ ├── x509_vfy.h │ │ ├── x509err.h │ │ ├── x509v3.h │ │ └── x509v3err.h ├── ms │ ├── applink.c │ ├── cmp.pl │ ├── uplink-common.pl │ ├── uplink-ia64.pl │ ├── uplink-x86.pl │ ├── uplink-x86_64.pl │ ├── uplink.c │ └── uplink.h ├── os-dep │ └── haiku.h ├── pod2htmi.tmp ├── ssl │ ├── bio_ssl.c │ ├── build.info │ ├── d1_lib.c │ ├── d1_msg.c │ ├── d1_srtp.c │ ├── methods.c │ ├── packet.c │ ├── packet_locl.h │ ├── pqueue.c │ ├── record │ │ ├── README │ │ ├── dtls1_bitmap.c │ │ ├── rec_layer_d1.c │ │ ├── rec_layer_s3.c │ │ ├── record.h │ │ ├── record_locl.h │ │ ├── ssl3_buffer.c │ │ ├── ssl3_record.c │ │ └── ssl3_record_tls13.c │ ├── s3_cbc.c │ ├── s3_enc.c │ ├── s3_lib.c │ ├── s3_msg.c │ ├── ssl_asn1.c │ ├── ssl_cert.c │ ├── ssl_cert_table.h │ ├── ssl_ciph.c │ ├── ssl_conf.c │ ├── ssl_err.c │ ├── ssl_init.c │ ├── ssl_lib.c │ ├── ssl_locl.h │ ├── ssl_mcnf.c │ ├── ssl_rsa.c │ ├── ssl_sess.c │ ├── ssl_stat.c │ ├── ssl_txt.c │ ├── ssl_utst.c │ ├── statem │ │ ├── README │ │ ├── extensions.c │ │ ├── extensions_clnt.c │ │ ├── extensions_cust.c │ │ ├── extensions_srvr.c │ │ ├── statem.c │ │ ├── statem.h │ │ ├── statem_clnt.c │ │ ├── statem_dtls.c │ │ ├── statem_lib.c │ │ ├── statem_locl.h │ │ └── statem_srvr.c │ ├── t1_enc.c │ ├── t1_lib.c │ ├── t1_trce.c │ ├── tls13_enc.c │ └── tls_srp.c ├── test │ ├── CAss.cnf │ ├── CAssdh.cnf │ ├── CAssdsa.cnf │ ├── CAssrsa.cnf │ ├── CAtsa.cnf │ ├── P1ss.cnf │ ├── P2ss.cnf │ ├── README │ ├── README.external │ ├── README.ssltest.md │ ├── Sssdsa.cnf │ ├── Sssrsa.cnf │ ├── Uss.cnf │ ├── aborttest.c │ ├── afalgtest.c │ ├── asn1_decode_test.c │ ├── asn1_encode_test.c │ ├── asn1_internal_test.c │ ├── asn1_string_table_test.c │ ├── asn1_time_test.c │ ├── asynciotest.c │ ├── asynctest.c │ ├── bad_dtls_test.c │ ├── bftest.c │ ├── bio_callback_test.c │ ├── bio_enc_test.c │ ├── bioprinttest.c │ ├── bntest.c │ ├── bntests.pl │ ├── build.info │ ├── casttest.c │ ├── certs │ │ ├── alt1-cert.pem │ │ ├── alt1-key.pem │ │ ├── alt2-cert.pem │ │ ├── alt2-key.pem │ │ ├── alt3-cert.pem │ │ ├── alt3-key.pem │ │ ├── bad-pc3-cert.pem │ │ ├── bad-pc3-key.pem │ │ ├── bad-pc4-cert.pem │ │ ├── bad-pc4-key.pem │ │ ├── bad-pc6-cert.pem │ │ ├── bad-pc6-key.pem │ │ ├── bad.key │ │ ├── bad.pem │ │ ├── badalt1-cert.pem │ │ ├── badalt1-key.pem │ │ ├── badalt10-cert.pem │ │ ├── badalt10-key.pem │ │ ├── badalt2-cert.pem │ │ ├── badalt2-key.pem │ │ ├── badalt3-cert.pem │ │ ├── badalt3-key.pem │ │ ├── badalt4-cert.pem │ │ ├── badalt4-key.pem │ │ ├── badalt5-cert.pem │ │ ├── badalt5-key.pem │ │ ├── badalt6-cert.pem │ │ ├── badalt6-key.pem │ │ ├── badalt7-cert.pem │ │ ├── badalt7-key.pem │ │ ├── badalt8-cert.pem │ │ ├── badalt8-key.pem │ │ ├── badalt9-cert.pem │ │ ├── badalt9-key.pem │ │ ├── badcn1-cert.pem │ │ ├── badcn1-key.pem │ │ ├── ca+anyEKU.pem │ │ ├── ca+clientAuth.pem │ │ ├── ca+serverAuth.pem │ │ ├── ca-anyEKU.pem │ │ ├── ca-cert-768.pem │ │ ├── ca-cert-768i.pem │ │ ├── ca-cert-md5-any.pem │ │ ├── ca-cert-md5.pem │ │ ├── ca-cert.pem │ │ ├── ca-cert2.pem │ │ ├── ca-clientAuth.pem │ │ ├── ca-expired.pem │ │ ├── ca-key-768.pem │ │ ├── ca-key.pem │ │ ├── ca-key2.pem │ │ ├── ca-name2.pem │ │ ├── ca-nonbc.pem │ │ ├── ca-nonca.pem │ │ ├── ca-root2.pem │ │ ├── ca-serverAuth.pem │ │ ├── cca+anyEKU.pem │ │ ├── cca+clientAuth.pem │ │ ├── cca+serverAuth.pem │ │ ├── cca-anyEKU.pem │ │ ├── cca-cert.pem │ │ ├── cca-clientAuth.pem │ │ ├── cca-serverAuth.pem │ │ ├── client-ed25519-cert.pem │ │ ├── client-ed25519-key.pem │ │ ├── client-ed448-cert.pem │ │ ├── client-ed448-key.pem │ │ ├── croot+anyEKU.pem │ │ ├── croot+clientAuth.pem │ │ ├── croot+serverAuth.pem │ │ ├── croot-anyEKU.pem │ │ ├── croot-cert.pem │ │ ├── croot-clientAuth.pem │ │ ├── croot-serverAuth.pem │ │ ├── cyrillic.msb │ │ ├── cyrillic.pem │ │ ├── cyrillic.utf8 │ │ ├── cyrillic_crl.pem │ │ ├── cyrillic_crl.utf8 │ │ ├── dhp2048.pem │ │ ├── ee+clientAuth.pem │ │ ├── ee+serverAuth.pem │ │ ├── ee-cert-768.pem │ │ ├── ee-cert-768i.pem │ │ ├── ee-cert-md5.pem │ │ ├── ee-cert.pem │ │ ├── ee-cert2.pem │ │ ├── ee-client-chain.pem │ │ ├── ee-client.pem │ │ ├── ee-clientAuth.pem │ │ ├── ee-ecdsa-client-chain.pem │ │ ├── ee-ecdsa-key.pem │ │ ├── ee-ed25519.pem │ │ ├── ee-expired.pem │ │ ├── ee-key-768.pem │ │ ├── ee-key.pem │ │ ├── ee-name2.pem │ │ ├── ee-pss-sha1-cert.pem │ │ ├── ee-pss-sha256-cert.pem │ │ ├── ee-serverAuth.pem │ │ ├── embeddedSCTs1-key.pem │ │ ├── embeddedSCTs1.pem │ │ ├── embeddedSCTs1.sct │ │ ├── embeddedSCTs1_issuer.pem │ │ ├── embeddedSCTs3.pem │ │ ├── embeddedSCTs3.sct │ │ ├── embeddedSCTs3_issuer.pem │ │ ├── goodcn1-cert.pem │ │ ├── goodcn1-key.pem │ │ ├── interCA.key │ │ ├── interCA.pem │ │ ├── leaf.key │ │ ├── leaf.pem │ │ ├── many-constraints.pem │ │ ├── many-names1.pem │ │ ├── many-names2.pem │ │ ├── many-names3.pem │ │ ├── mkcert.sh │ │ ├── nca+anyEKU.pem │ │ ├── nca+serverAuth.pem │ │ ├── ncca-cert.pem │ │ ├── ncca-key.pem │ │ ├── ncca1-cert.pem │ │ ├── ncca1-key.pem │ │ ├── ncca2-cert.pem │ │ ├── ncca2-key.pem │ │ ├── ncca3-cert.pem │ │ ├── ncca3-key.pem │ │ ├── nroot+anyEKU.pem │ │ ├── nroot+serverAuth.pem │ │ ├── p256-server-cert.pem │ │ ├── p256-server-key.pem │ │ ├── p384-root-key.pem │ │ ├── p384-root.pem │ │ ├── p384-server-cert.pem │ │ ├── p384-server-key.pem │ │ ├── pathlen.pem │ │ ├── pc1-cert.pem │ │ ├── pc1-key.pem │ │ ├── pc2-cert.pem │ │ ├── pc2-key.pem │ │ ├── pc5-cert.pem │ │ ├── pc5-key.pem │ │ ├── root+anyEKU.pem │ │ ├── root+clientAuth.pem │ │ ├── root+serverAuth.pem │ │ ├── root-anyEKU.pem │ │ ├── root-cert-768.pem │ │ ├── root-cert-md5.pem │ │ ├── root-cert.pem │ │ ├── root-cert2.pem │ │ ├── root-clientAuth.pem │ │ ├── root-ed25519.pem │ │ ├── root-key-768.pem │ │ ├── root-key.pem │ │ ├── root-key2.pem │ │ ├── root-name2.pem │ │ ├── root-nonca.pem │ │ ├── root-noserver.pem │ │ ├── root-serverAuth.pem │ │ ├── root2+clientAuth.pem │ │ ├── root2+serverAuth.pem │ │ ├── root2-serverAuth.pem │ │ ├── rootCA.key │ │ ├── rootCA.pem │ │ ├── rootcert.pem │ │ ├── rootkey.pem │ │ ├── roots.pem │ │ ├── sca+anyEKU.pem │ │ ├── sca+clientAuth.pem │ │ ├── sca+serverAuth.pem │ │ ├── sca-anyEKU.pem │ │ ├── sca-cert.pem │ │ ├── sca-clientAuth.pem │ │ ├── sca-serverAuth.pem │ │ ├── server-cecdsa-cert.pem │ │ ├── server-cecdsa-key.pem │ │ ├── server-dsa-cert.pem │ │ ├── server-dsa-key.pem │ │ ├── server-ecdsa-cert.pem │ │ ├── server-ecdsa-key.pem │ │ ├── server-ed25519-cert.pem │ │ ├── server-ed25519-key.pem │ │ ├── server-ed448-cert.pem │ │ ├── server-ed448-key.pem │ │ ├── server-pss-cert.pem │ │ ├── server-pss-key.pem │ │ ├── server-trusted.pem │ │ ├── servercert.pem │ │ ├── serverkey.pem │ │ ├── setup.sh │ │ ├── some-names1.pem │ │ ├── some-names2.pem │ │ ├── some-names3.pem │ │ ├── sroot+anyEKU.pem │ │ ├── sroot+clientAuth.pem │ │ ├── sroot+serverAuth.pem │ │ ├── sroot-anyEKU.pem │ │ ├── sroot-cert.pem │ │ ├── sroot-clientAuth.pem │ │ ├── sroot-serverAuth.pem │ │ ├── subinterCA-ss.pem │ │ ├── subinterCA.key │ │ ├── subinterCA.pem │ │ ├── untrusted.pem │ │ ├── wrongcert.pem │ │ ├── wrongkey.pem │ │ ├── x509-check-key.pem │ │ └── x509-check.csr │ ├── chacha_internal_test.c │ ├── cipher_overhead_test.c │ ├── cipherbytes_test.c │ ├── cipherlist_test.c │ ├── ciphername_test.c │ ├── clienthellotest.c │ ├── cms-examples.pl │ ├── cmsapitest.c │ ├── conf_include_test.c │ ├── constant_time_test.c │ ├── crltest.c │ ├── ct │ │ ├── log_list.conf │ │ └── tls1.sct │ ├── ct_test.c │ ├── ctype_internal_test.c │ ├── curve448_internal_test.c │ ├── d2i-tests │ │ ├── bad-cms.der │ │ ├── bad-int-pad0.der │ │ ├── bad-int-padminus1.der │ │ ├── bad_bio.der │ │ ├── bad_cert.der │ │ ├── bad_generalname.der │ │ ├── high_tag.der │ │ ├── int0.der │ │ ├── int1.der │ │ └── intminus1.der │ ├── d2i_test.c │ ├── danetest.c │ ├── danetest.in │ ├── danetest.pem │ ├── destest.c │ ├── dhtest.c │ ├── drbg_cavs_data.c │ ├── drbg_cavs_data.h │ ├── drbg_cavs_test.c │ ├── drbgtest.c │ ├── drbgtest.h │ ├── dsa_no_digest_size_test.c │ ├── dsatest.c │ ├── dtls_mtu_test.c │ ├── dtlstest.c │ ├── dtlsv1listentest.c │ ├── ecdsatest.c │ ├── ecstresstest.c │ ├── ectest.c │ ├── enginetest.c │ ├── errtest.c │ ├── evp_extra_test.c │ ├── evp_test.c │ ├── evp_test.h │ ├── exdatatest.c │ ├── exptest.c │ ├── fatalerrtest.c │ ├── generate_buildtest.pl │ ├── generate_ssl_tests.pl │ ├── gmdifftest.c │ ├── gosttest.c │ ├── handshake_helper.c │ ├── handshake_helper.h │ ├── hmactest.c │ ├── ideatest.c │ ├── igetest.c │ ├── lhash_test.c │ ├── md2test.c │ ├── mdc2_internal_test.c │ ├── mdc2test.c │ ├── memleaktest.c │ ├── modes_internal_test.c │ ├── ocsp-tests │ │ ├── D1.ors │ │ ├── D1_Cert_EE.pem │ │ ├── D1_Issuer_ICA.pem │ │ ├── D2.ors │ │ ├── D2_Cert_ICA.pem │ │ ├── D2_Issuer_Root.pem │ │ ├── D3.ors │ │ ├── D3_Cert_EE.pem │ │ ├── D3_Issuer_Root.pem │ │ ├── ISDOSC_D1.ors │ │ ├── ISDOSC_D2.ors │ │ ├── ISDOSC_D3.ors │ │ ├── ISIC_D1_Issuer_ICA.pem │ │ ├── ISIC_D2_Issuer_Root.pem │ │ ├── ISIC_D3_Issuer_Root.pem │ │ ├── ISIC_ND1_Issuer_ICA.pem │ │ ├── ISIC_ND2_Issuer_Root.pem │ │ ├── ISIC_ND3_Issuer_Root.pem │ │ ├── ISOP_D1.ors │ │ ├── ISOP_D2.ors │ │ ├── ISOP_D3.ors │ │ ├── ISOP_ND1.ors │ │ ├── ISOP_ND2.ors │ │ ├── ISOP_ND3.ors │ │ ├── ND1.ors │ │ ├── ND1_Cert_EE.pem │ │ ├── ND1_Cross_Root.pem │ │ ├── ND1_Issuer_ICA-Cross.pem │ │ ├── ND1_Issuer_ICA.pem │ │ ├── ND2.ors │ │ ├── ND2_Cert_ICA.pem │ │ ├── ND2_Issuer_Root.pem │ │ ├── ND3.ors │ │ ├── ND3_Cert_EE.pem │ │ ├── ND3_Issuer_Root.pem │ │ ├── WIKH_D1.ors │ │ ├── WIKH_D2.ors │ │ ├── WIKH_D3.ors │ │ ├── WIKH_ND1.ors │ │ ├── WIKH_ND2.ors │ │ ├── WIKH_ND3.ors │ │ ├── WINH_D1.ors │ │ ├── WINH_D2.ors │ │ ├── WINH_D3.ors │ │ ├── WINH_ND1.ors │ │ ├── WINH_ND2.ors │ │ ├── WINH_ND3.ors │ │ ├── WKDOSC_D1.ors │ │ ├── WKDOSC_D2.ors │ │ ├── WKDOSC_D3.ors │ │ ├── WKIC_D1_Issuer_ICA.pem │ │ ├── WKIC_D2_Issuer_Root.pem │ │ ├── WKIC_D3_Issuer_Root.pem │ │ ├── WKIC_ND1_Issuer_ICA.pem │ │ ├── WKIC_ND2_Issuer_Root.pem │ │ ├── WKIC_ND3_Issuer_Root.pem │ │ ├── WRID_D1.ors │ │ ├── WRID_D2.ors │ │ ├── WRID_D3.ors │ │ ├── WRID_ND1.ors │ │ ├── WRID_ND2.ors │ │ ├── WRID_ND3.ors │ │ ├── WSNIC_D1_Issuer_ICA.pem │ │ ├── WSNIC_D2_Issuer_Root.pem │ │ ├── WSNIC_D3_Issuer_Root.pem │ │ ├── WSNIC_ND1_Issuer_ICA.pem │ │ ├── WSNIC_ND2_Issuer_Root.pem │ │ └── WSNIC_ND3_Issuer_Root.pem │ ├── ocspapitest.c │ ├── ossl_shim │ │ ├── async_bio.cc │ │ ├── async_bio.h │ │ ├── build.info │ │ ├── include │ │ │ └── openssl │ │ │ │ └── base.h │ │ ├── ossl_config.json │ │ ├── ossl_shim.cc │ │ ├── packeted_bio.cc │ │ ├── packeted_bio.h │ │ ├── test_config.cc │ │ └── test_config.h │ ├── packettest.c │ ├── pbelutest.c │ ├── pemtest.c │ ├── pkcs7-1.pem │ ├── pkcs7.pem │ ├── pkey_meth_kdf_test.c │ ├── pkey_meth_test.c │ ├── pkits-test.pl │ ├── poly1305_internal_test.c │ ├── rc2test.c │ ├── rc4test.c │ ├── rc5test.c │ ├── rdrand_sanitytest.c │ ├── recipes │ │ ├── 01-test_abort.t │ │ ├── 01-test_sanity.t │ │ ├── 01-test_symbol_presence.t │ │ ├── 01-test_test.t │ │ ├── 02-test_internal_ctype.t │ │ ├── 02-test_lhash.t │ │ ├── 02-test_ordinals.t │ │ ├── 02-test_stack.t │ │ ├── 03-test_exdata.t │ │ ├── 03-test_internal_asn1.t │ │ ├── 03-test_internal_chacha.t │ │ ├── 03-test_internal_curve448.t │ │ ├── 03-test_internal_mdc2.t │ │ ├── 03-test_internal_modes.t │ │ ├── 03-test_internal_poly1305.t │ │ ├── 03-test_internal_siphash.t │ │ ├── 03-test_internal_sm2.t │ │ ├── 03-test_internal_sm4.t │ │ ├── 03-test_internal_ssl_cert_table.t │ │ ├── 03-test_internal_x509.t │ │ ├── 03-test_ui.t │ │ ├── 04-test_asn1_decode.t │ │ ├── 04-test_asn1_encode.t │ │ ├── 04-test_asn1_string_table.t │ │ ├── 04-test_bio_callback.t │ │ ├── 04-test_bioprint.t │ │ ├── 04-test_err.t │ │ ├── 04-test_pem.t │ │ ├── 04-test_pem_data │ │ │ ├── NOTES │ │ │ ├── beermug.pem │ │ │ ├── cert-1023line.pem │ │ │ ├── cert-1024line.pem │ │ │ ├── cert-1025line.pem │ │ │ ├── cert-255line.pem │ │ │ ├── cert-256line.pem │ │ │ ├── cert-257line.pem │ │ │ ├── cert-blankline.pem │ │ │ ├── cert-comment.pem │ │ │ ├── cert-earlypad.pem │ │ │ ├── cert-extrapad.pem │ │ │ ├── cert-infixwhitespace.pem │ │ │ ├── cert-junk.pem │ │ │ ├── cert-leadingwhitespace.pem │ │ │ ├── cert-longline.pem │ │ │ ├── cert-misalignedpad.pem │ │ │ ├── cert-onecolumn.pem │ │ │ ├── cert-oneline.pem │ │ │ ├── cert-shortandlongline.pem │ │ │ ├── cert-shortline.pem │ │ │ ├── cert-threecolumn.pem │ │ │ ├── cert-trailingwhitespace.pem │ │ │ ├── cert.pem │ │ │ ├── csr.pem │ │ │ ├── dsa-1023line.pem │ │ │ ├── dsa-1024line.pem │ │ │ ├── dsa-1025line.pem │ │ │ ├── dsa-255line.pem │ │ │ ├── dsa-256line.pem │ │ │ ├── dsa-257line.pem │ │ │ ├── dsa-blankline.pem │ │ │ ├── dsa-comment.pem │ │ │ ├── dsa-corruptedheader.pem │ │ │ ├── dsa-corruptiv.pem │ │ │ ├── dsa-earlypad.pem │ │ │ ├── dsa-extrapad.pem │ │ │ ├── dsa-infixwhitespace.pem │ │ │ ├── dsa-junk.pem │ │ │ ├── dsa-leadingwhitespace.pem │ │ │ ├── dsa-longline.pem │ │ │ ├── dsa-misalignedpad.pem │ │ │ ├── dsa-onecolumn.pem │ │ │ ├── dsa-oneline.pem │ │ │ ├── dsa-onelineheader.pem │ │ │ ├── dsa-shortandlongline.pem │ │ │ ├── dsa-shortline.pem │ │ │ ├── dsa-threecolumn.pem │ │ │ ├── dsa-trailingwhitespace.pem │ │ │ ├── dsa.pem │ │ │ ├── dsaparam.pem │ │ │ ├── key.pem │ │ │ └── wellknown │ │ ├── 05-test_bf.t │ │ ├── 05-test_cast.t │ │ ├── 05-test_des.t │ │ ├── 05-test_hmac.t │ │ ├── 05-test_idea.t │ │ ├── 05-test_md2.t │ │ ├── 05-test_mdc2.t │ │ ├── 05-test_rand.t │ │ ├── 05-test_rc2.t │ │ ├── 05-test_rc4.t │ │ ├── 05-test_rc5.t │ │ ├── 06-test-rdrand.t │ │ ├── 10-test_bn.t │ │ ├── 10-test_bn_data │ │ │ ├── bnexp.txt │ │ │ ├── bnmod.txt │ │ │ ├── bnmul.txt │ │ │ ├── bnshift.txt │ │ │ └── bnsum.txt │ │ ├── 10-test_exp.t │ │ ├── 15-test_dh.t │ │ ├── 15-test_dsa.t │ │ ├── 15-test_ec.t │ │ ├── 15-test_ecdsa.t │ │ ├── 15-test_ecparam.t │ │ ├── 15-test_ecparam_data │ │ │ ├── invalid │ │ │ │ ├── c2pnb208w1-reducible.pem │ │ │ │ ├── nistp256-nonprime.pem │ │ │ │ ├── nistp256-offcurve.pem │ │ │ │ └── nistp256-wrongorder.pem │ │ │ └── valid │ │ │ │ ├── c2pnb163v1-explicit.pem │ │ │ │ ├── c2pnb163v1-named.pem │ │ │ │ ├── c2pnb163v2-explicit.pem │ │ │ │ ├── c2pnb163v2-named.pem │ │ │ │ ├── c2pnb163v3-explicit.pem │ │ │ │ ├── c2pnb163v3-named.pem │ │ │ │ ├── c2pnb176v1-explicit.pem │ │ │ │ ├── c2pnb176v1-named.pem │ │ │ │ ├── c2pnb208w1-explicit.pem │ │ │ │ ├── c2pnb208w1-named.pem │ │ │ │ ├── c2pnb272w1-explicit.pem │ │ │ │ ├── c2pnb272w1-named.pem │ │ │ │ ├── c2pnb304w1-explicit.pem │ │ │ │ ├── c2pnb304w1-named.pem │ │ │ │ ├── c2pnb368w1-explicit.pem │ │ │ │ ├── c2pnb368w1-named.pem │ │ │ │ ├── c2tnb191v1-explicit.pem │ │ │ │ ├── c2tnb191v1-named.pem │ │ │ │ ├── c2tnb191v2-explicit.pem │ │ │ │ ├── c2tnb191v2-named.pem │ │ │ │ ├── c2tnb191v3-explicit.pem │ │ │ │ ├── c2tnb191v3-named.pem │ │ │ │ ├── c2tnb239v1-explicit.pem │ │ │ │ ├── c2tnb239v1-named.pem │ │ │ │ ├── c2tnb239v2-explicit.pem │ │ │ │ ├── c2tnb239v2-named.pem │ │ │ │ ├── c2tnb239v3-explicit.pem │ │ │ │ ├── c2tnb239v3-named.pem │ │ │ │ ├── c2tnb359v1-explicit.pem │ │ │ │ ├── c2tnb359v1-named.pem │ │ │ │ ├── c2tnb431r1-explicit.pem │ │ │ │ ├── c2tnb431r1-named.pem │ │ │ │ ├── prime192v1-explicit.pem │ │ │ │ ├── prime192v1-named.pem │ │ │ │ ├── prime192v2-explicit.pem │ │ │ │ ├── prime192v2-named.pem │ │ │ │ ├── prime192v3-explicit.pem │ │ │ │ ├── prime192v3-named.pem │ │ │ │ ├── prime239v1-explicit.pem │ │ │ │ ├── prime239v1-named.pem │ │ │ │ ├── prime239v2-explicit.pem │ │ │ │ ├── prime239v2-named.pem │ │ │ │ ├── prime239v3-explicit.pem │ │ │ │ ├── prime239v3-named.pem │ │ │ │ ├── prime256v1-explicit.pem │ │ │ │ ├── prime256v1-named.pem │ │ │ │ ├── secp112r1-explicit.pem │ │ │ │ ├── secp112r1-named.pem │ │ │ │ ├── secp112r2-explicit.pem │ │ │ │ ├── secp112r2-named.pem │ │ │ │ ├── secp128r1-explicit.pem │ │ │ │ ├── secp128r1-named.pem │ │ │ │ ├── secp128r2-explicit.pem │ │ │ │ ├── secp128r2-named.pem │ │ │ │ ├── secp160k1-explicit.pem │ │ │ │ ├── secp160k1-named.pem │ │ │ │ ├── secp160r1-explicit.pem │ │ │ │ ├── secp160r1-named.pem │ │ │ │ ├── secp160r2-explicit.pem │ │ │ │ ├── secp160r2-named.pem │ │ │ │ ├── secp192k1-explicit.pem │ │ │ │ ├── secp192k1-named.pem │ │ │ │ ├── secp224k1-explicit.pem │ │ │ │ ├── secp224k1-named.pem │ │ │ │ ├── secp224r1-explicit.pem │ │ │ │ ├── secp224r1-named.pem │ │ │ │ ├── secp256k1-explicit.pem │ │ │ │ ├── secp256k1-named.pem │ │ │ │ ├── secp384r1-explicit.pem │ │ │ │ ├── secp384r1-named.pem │ │ │ │ ├── secp521r1-explicit.pem │ │ │ │ ├── secp521r1-named.pem │ │ │ │ ├── sect113r1-explicit.pem │ │ │ │ ├── sect113r1-named.pem │ │ │ │ ├── sect113r2-explicit.pem │ │ │ │ ├── sect113r2-named.pem │ │ │ │ ├── sect131r1-explicit.pem │ │ │ │ ├── sect131r1-named.pem │ │ │ │ ├── sect131r2-explicit.pem │ │ │ │ ├── sect131r2-named.pem │ │ │ │ ├── sect163k1-explicit.pem │ │ │ │ ├── sect163k1-named.pem │ │ │ │ ├── sect163r1-explicit.pem │ │ │ │ ├── sect163r1-named.pem │ │ │ │ ├── sect163r2-explicit.pem │ │ │ │ ├── sect163r2-named.pem │ │ │ │ ├── sect193r1-explicit.pem │ │ │ │ ├── sect193r1-named.pem │ │ │ │ ├── sect193r2-explicit.pem │ │ │ │ ├── sect193r2-named.pem │ │ │ │ ├── sect233k1-explicit.pem │ │ │ │ ├── sect233k1-named.pem │ │ │ │ ├── sect233r1-explicit.pem │ │ │ │ ├── sect233r1-named.pem │ │ │ │ ├── sect239k1-explicit.pem │ │ │ │ ├── sect239k1-named.pem │ │ │ │ ├── sect283k1-explicit.pem │ │ │ │ ├── sect283k1-named.pem │ │ │ │ ├── sect283r1-explicit.pem │ │ │ │ ├── sect283r1-named.pem │ │ │ │ ├── sect409k1-explicit.pem │ │ │ │ ├── sect409k1-named.pem │ │ │ │ ├── sect409r1-explicit.pem │ │ │ │ ├── sect409r1-named.pem │ │ │ │ ├── sect571k1-explicit.pem │ │ │ │ ├── sect571k1-named.pem │ │ │ │ ├── sect571r1-explicit.pem │ │ │ │ ├── sect571r1-named.pem │ │ │ │ ├── wap-wsg-idm-ecid-wtls1-explicit.pem │ │ │ │ ├── wap-wsg-idm-ecid-wtls1-named.pem │ │ │ │ ├── wap-wsg-idm-ecid-wtls10-explicit.pem │ │ │ │ ├── wap-wsg-idm-ecid-wtls10-named.pem │ │ │ │ ├── wap-wsg-idm-ecid-wtls11-explicit.pem │ │ │ │ ├── wap-wsg-idm-ecid-wtls11-named.pem │ │ │ │ ├── wap-wsg-idm-ecid-wtls12-explicit.pem │ │ │ │ ├── wap-wsg-idm-ecid-wtls12-named.pem │ │ │ │ ├── wap-wsg-idm-ecid-wtls3-explicit.pem │ │ │ │ ├── wap-wsg-idm-ecid-wtls3-named.pem │ │ │ │ ├── wap-wsg-idm-ecid-wtls4-explicit.pem │ │ │ │ ├── wap-wsg-idm-ecid-wtls4-named.pem │ │ │ │ ├── wap-wsg-idm-ecid-wtls5-explicit.pem │ │ │ │ ├── wap-wsg-idm-ecid-wtls5-named.pem │ │ │ │ ├── wap-wsg-idm-ecid-wtls6-explicit.pem │ │ │ │ ├── wap-wsg-idm-ecid-wtls6-named.pem │ │ │ │ ├── wap-wsg-idm-ecid-wtls7-explicit.pem │ │ │ │ ├── wap-wsg-idm-ecid-wtls7-named.pem │ │ │ │ ├── wap-wsg-idm-ecid-wtls8-explicit.pem │ │ │ │ ├── wap-wsg-idm-ecid-wtls8-named.pem │ │ │ │ ├── wap-wsg-idm-ecid-wtls9-explicit.pem │ │ │ │ └── wap-wsg-idm-ecid-wtls9-named.pem │ │ ├── 15-test_genrsa.t │ │ ├── 15-test_mp_rsa.t │ │ ├── 15-test_mp_rsa_data │ │ │ └── plain_text │ │ ├── 15-test_out_option.t │ │ ├── 15-test_rsa.t │ │ ├── 15-test_rsapss.t │ │ ├── 20-test_enc.t │ │ ├── 20-test_enc_more.t │ │ ├── 20-test_passwd.t │ │ ├── 25-test_crl.t │ │ ├── 25-test_d2i.t │ │ ├── 25-test_pkcs7.t │ │ ├── 25-test_req.t │ │ ├── 25-test_sid.t │ │ ├── 25-test_verify.t │ │ ├── 25-test_x509.t │ │ ├── 30-test_afalg.t │ │ ├── 30-test_engine.t │ │ ├── 30-test_evp.t │ │ ├── 30-test_evp_data │ │ │ ├── evpcase.txt │ │ │ ├── evpciph.txt │ │ │ ├── evpdigest.txt │ │ │ ├── evpencod.txt │ │ │ ├── evpkdf.txt │ │ │ ├── evpmac.txt │ │ │ ├── evppbe.txt │ │ │ ├── evppkey.txt │ │ │ └── evppkey_ecc.txt │ │ ├── 30-test_evp_extra.t │ │ ├── 30-test_pbelu.t │ │ ├── 30-test_pkey_meth.t │ │ ├── 30-test_pkey_meth_kdf.t │ │ ├── 40-test_rehash.t │ │ ├── 60-test_x509_check_cert_pkey.t │ │ ├── 60-test_x509_dup_cert.t │ │ ├── 60-test_x509_store.t │ │ ├── 60-test_x509_time.t │ │ ├── 70-test_asyncio.t │ │ ├── 70-test_bad_dtls.t │ │ ├── 70-test_clienthello.t │ │ ├── 70-test_comp.t │ │ ├── 70-test_key_share.t │ │ ├── 70-test_packet.t │ │ ├── 70-test_recordlen.t │ │ ├── 70-test_renegotiation.t │ │ ├── 70-test_servername.t │ │ ├── 70-test_sslcbcpadding.t │ │ ├── 70-test_sslcertstatus.t │ │ ├── 70-test_sslextension.t │ │ ├── 70-test_sslmessages.t │ │ ├── 70-test_sslrecords.t │ │ ├── 70-test_sslsessiontick.t │ │ ├── 70-test_sslsigalgs.t │ │ ├── 70-test_sslsignature.t │ │ ├── 70-test_sslskewith0p.t │ │ ├── 70-test_sslversions.t │ │ ├── 70-test_sslvertol.t │ │ ├── 70-test_tls13alerts.t │ │ ├── 70-test_tls13cookie.t │ │ ├── 70-test_tls13downgrade.t │ │ ├── 70-test_tls13hrr.t │ │ ├── 70-test_tls13kexmodes.t │ │ ├── 70-test_tls13messages.t │ │ ├── 70-test_tls13psk.t │ │ ├── 70-test_tlsextms.t │ │ ├── 70-test_verify_extra.t │ │ ├── 70-test_wpacket.t │ │ ├── 80-test_ca.t │ │ ├── 80-test_cipherbytes.t │ │ ├── 80-test_cipherlist.t │ │ ├── 80-test_ciphername.t │ │ ├── 80-test_cms.t │ │ ├── 80-test_cmsapi.t │ │ ├── 80-test_ct.t │ │ ├── 80-test_dane.t │ │ ├── 80-test_dtls.t │ │ ├── 80-test_dtls_mtu.t │ │ ├── 80-test_dtlsv1listen.t │ │ ├── 80-test_ocsp.t │ │ ├── 80-test_ocsp_data │ │ │ ├── cert.pem │ │ │ └── key.pem │ │ ├── 80-test_pkcs12.t │ │ ├── 80-test_ssl_new.t │ │ ├── 80-test_ssl_old.t │ │ ├── 80-test_ssl_test_ctx.t │ │ ├── 80-test_sslcorrupt.t │ │ ├── 80-test_tsa.t │ │ ├── 80-test_x509aux.t │ │ ├── 90-test_asn1_time.t │ │ ├── 90-test_async.t │ │ ├── 90-test_bio_enc.t │ │ ├── 90-test_constant_time.t │ │ ├── 90-test_fatalerr.t │ │ ├── 90-test_gmdiff.t │ │ ├── 90-test_gost.t │ │ ├── 90-test_gost_data │ │ │ ├── gost.conf │ │ │ ├── server-cert2001.pem │ │ │ ├── server-cert2012.pem │ │ │ ├── server-key2001.pem │ │ │ └── server-key2012.pem │ │ ├── 90-test_ige.t │ │ ├── 90-test_includes.t │ │ ├── 90-test_includes_data │ │ │ ├── conf-includes │ │ │ │ ├── includes1.cnf │ │ │ │ └── includes2.cnf │ │ │ ├── includes-broken.cnf │ │ │ ├── includes-file.cnf │ │ │ ├── includes.cnf │ │ │ ├── vms-includes-file.cnf │ │ │ └── vms-includes.cnf │ │ ├── 90-test_memleak.t │ │ ├── 90-test_overhead.t │ │ ├── 90-test_secmem.t │ │ ├── 90-test_shlibload.t │ │ ├── 90-test_srp.t │ │ ├── 90-test_sslapi.t │ │ ├── 90-test_sslapi_data │ │ │ └── passwd.txt │ │ ├── 90-test_sslbuffers.t │ │ ├── 90-test_store.t │ │ ├── 90-test_store_data │ │ │ ├── ca.cnf │ │ │ └── user.cnf │ │ ├── 90-test_sysdefault.t │ │ ├── 90-test_threads.t │ │ ├── 90-test_time_offset.t │ │ ├── 90-test_tls13ccs.t │ │ ├── 90-test_tls13encryption.t │ │ ├── 90-test_tls13secrets.t │ │ ├── 90-test_v3name.t │ │ ├── 95-test_external_boringssl.t │ │ ├── 95-test_external_krb5.t │ │ ├── 95-test_external_krb5_data │ │ │ └── krb5.sh │ │ ├── 95-test_external_pyca.t │ │ ├── 95-test_external_pyca_data │ │ │ └── cryptography.sh │ │ ├── 99-test_ecstress.t │ │ ├── 99-test_fuzz.t │ │ ├── ocsp-response.der │ │ └── tconversion.pl │ ├── recordlentest.c │ ├── rsa_mp_test.c │ ├── rsa_test.c │ ├── run_tests.pl │ ├── sanitytest.c │ ├── secmemtest.c │ ├── serverinfo.pem │ ├── serverinfo2.pem │ ├── servername_test.c │ ├── session.pem │ ├── shibboleth.pfx │ ├── shlibloadtest.c │ ├── siphash_internal_test.c │ ├── sm2_internal_test.c │ ├── sm4_internal_test.c │ ├── smcont.txt │ ├── smime-certs │ │ ├── ca.cnf │ │ ├── mksmime-certs.sh │ │ ├── smdh.pem │ │ ├── smdsa1.pem │ │ ├── smdsa2.pem │ │ ├── smdsa3.pem │ │ ├── smdsap.pem │ │ ├── smec1.pem │ │ ├── smec2.pem │ │ ├── smec3.pem │ │ ├── smroot.pem │ │ ├── smrsa1.pem │ │ ├── smrsa2.pem │ │ └── smrsa3.pem │ ├── srptest.c │ ├── ssl-tests │ │ ├── 01-simple.conf │ │ ├── 01-simple.conf.in │ │ ├── 02-protocol-version.conf │ │ ├── 02-protocol-version.conf.in │ │ ├── 03-custom_verify.conf │ │ ├── 03-custom_verify.conf.in │ │ ├── 04-client_auth.conf │ │ ├── 04-client_auth.conf.in │ │ ├── 05-sni.conf │ │ ├── 05-sni.conf.in │ │ ├── 06-sni-ticket.conf │ │ ├── 06-sni-ticket.conf.in │ │ ├── 07-dtls-protocol-version.conf │ │ ├── 07-dtls-protocol-version.conf.in │ │ ├── 08-npn.conf │ │ ├── 08-npn.conf.in │ │ ├── 09-alpn.conf │ │ ├── 09-alpn.conf.in │ │ ├── 10-resumption.conf │ │ ├── 10-resumption.conf.in │ │ ├── 11-dtls_resumption.conf │ │ ├── 11-dtls_resumption.conf.in │ │ ├── 12-ct.conf │ │ ├── 12-ct.conf.in │ │ ├── 13-fragmentation.conf │ │ ├── 13-fragmentation.conf.in │ │ ├── 14-curves.conf │ │ ├── 14-curves.conf.in │ │ ├── 15-certstatus.conf │ │ ├── 15-certstatus.conf.in │ │ ├── 16-certstatus.conf │ │ ├── 16-dtls-certstatus.conf │ │ ├── 16-dtls-certstatus.conf.in │ │ ├── 17-renegotiate.conf │ │ ├── 17-renegotiate.conf.in │ │ ├── 18-dtls-renegotiate.conf │ │ ├── 18-dtls-renegotiate.conf.in │ │ ├── 19-mac-then-encrypt.conf │ │ ├── 19-mac-then-encrypt.conf.in │ │ ├── 20-cert-select.conf │ │ ├── 20-cert-select.conf.in │ │ ├── 21-key-update.conf │ │ ├── 21-key-update.conf.in │ │ ├── 22-compression.conf │ │ ├── 22-compression.conf.in │ │ ├── 23-srp.conf │ │ ├── 23-srp.conf.in │ │ ├── 24-padding.conf │ │ ├── 24-padding.conf.in │ │ ├── 25-cipher.conf │ │ ├── 25-cipher.conf.in │ │ ├── 26-tls13_client_auth.conf │ │ ├── 26-tls13_client_auth.conf.in │ │ ├── 27-ticket-appdata.conf │ │ ├── 27-ticket-appdata.conf.in │ │ ├── protocol_version.pm │ │ └── ssltests_base.pm │ ├── ssl_cert_table_internal_test.c │ ├── ssl_test.c │ ├── ssl_test.tmpl │ ├── ssl_test_ctx.c │ ├── ssl_test_ctx.h │ ├── ssl_test_ctx_test.c │ ├── ssl_test_ctx_test.conf │ ├── sslapitest.c │ ├── sslbuffertest.c │ ├── sslcorrupttest.c │ ├── ssltest_old.c │ ├── ssltestlib.c │ ├── ssltestlib.h │ ├── stack_test.c │ ├── sysdefault.cnf │ ├── sysdefaulttest.c │ ├── test.cnf │ ├── test_test.c │ ├── testcrl.pem │ ├── testdsa.pem │ ├── testdsapub.pem │ ├── testec-p256.pem │ ├── testecpub-p256.pem │ ├── testp7.pem │ ├── testreq2.pem │ ├── testrsa.pem │ ├── testrsapub.pem │ ├── testsid.pem │ ├── testutil.h │ ├── testutil │ │ ├── basic_output.c │ │ ├── cb.c │ │ ├── driver.c │ │ ├── format_output.c │ │ ├── init.c │ │ ├── main.c │ │ ├── output.h │ │ ├── output_helpers.c │ │ ├── stanza.c │ │ ├── tap_bio.c │ │ ├── test_cleanup.c │ │ ├── tests.c │ │ └── tu_local.h │ ├── testx509.pem │ ├── threadstest.c │ ├── time_offset_test.c │ ├── tls13ccstest.c │ ├── tls13encryptiontest.c │ ├── tls13secretstest.c │ ├── uitest.c │ ├── v3-cert1.pem │ ├── v3-cert2.pem │ ├── v3ext.c │ ├── v3nametest.c │ ├── verify_extra_test.c │ ├── versions.c │ ├── wpackettest.c │ ├── x509_check_cert_pkey_test.c │ ├── x509_dup_cert_test.c │ ├── x509_internal_test.c │ ├── x509_time_test.c │ └── x509aux.c ├── tools │ ├── build.info │ └── c_rehash.in └── util │ ├── add-depends.pl │ ├── build.info │ ├── check-malloc-errs │ ├── ck_errf.pl │ ├── copy.pl │ ├── dofile.pl │ ├── echo.pl │ ├── find-doc-nits │ ├── find-unused-errs │ ├── indent.pro │ ├── libcrypto.num │ ├── libssl.num │ ├── local_shlib.com.in │ ├── mkbuildinf.pl │ ├── mkdef.pl │ ├── mkdir-p.pl │ ├── mkerr.pl │ ├── mkrc.pl │ ├── openssl-format-source │ ├── openssl-update-copyright │ ├── opensslwrap.sh │ ├── perl │ ├── OpenSSL │ │ ├── Glob.pm │ │ ├── Test.pm │ │ ├── Test │ │ │ ├── Simple.pm │ │ │ └── Utils.pm │ │ └── Util │ │ │ └── Pod.pm │ ├── TLSProxy │ │ ├── Alert.pm │ │ ├── Certificate.pm │ │ ├── CertificateVerify.pm │ │ ├── ClientHello.pm │ │ ├── EncryptedExtensions.pm │ │ ├── Message.pm │ │ ├── NewSessionTicket.pm │ │ ├── Proxy.pm │ │ ├── Record.pm │ │ ├── ServerHello.pm │ │ └── ServerKeyExchange.pm │ ├── checkhandshake.pm │ └── with_fallback.pm │ ├── private.num │ ├── process_docs.pl │ ├── shlib_wrap.sh.in │ ├── su-filter.pl │ └── unlocal_shlib.com.in └── yaffs2utils ├── CHANGES ├── COPYING ├── Makefile ├── README ├── configs.h ├── endian_convert.c ├── endian_convert.h ├── list.h ├── mkyaffs2 ├── mkyaffs2.c ├── mtd-abi.h ├── nand_ecclayout.h ├── progress_bar.c ├── progress_bar.h ├── safe_rw.c ├── safe_rw.h ├── unspare2 ├── unspare2.c ├── unyaffs2 ├── unyaffs2.c ├── version.h └── yaffs2 ├── yaffs_ecc.c ├── yaffs_ecc.h ├── yaffs_guts.h ├── yaffs_hweight.c ├── yaffs_hweight.h ├── yaffs_packedtags1.c ├── yaffs_packedtags1.h ├── yaffs_packedtags2.c ├── yaffs_packedtags2.h ├── yaffs_trace.h └── yaffs_utils.h /Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenNuvoton/NUC980_Linux_Applications/HEAD/Makefile -------------------------------------------------------------------------------- /alsa-utils-1.0.23/ABOUT-NLS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenNuvoton/NUC980_Linux_Applications/HEAD/alsa-utils-1.0.23/ABOUT-NLS -------------------------------------------------------------------------------- /alsa-utils-1.0.23/COPYING: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenNuvoton/NUC980_Linux_Applications/HEAD/alsa-utils-1.0.23/COPYING -------------------------------------------------------------------------------- /alsa-utils-1.0.23/ChangeLog: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenNuvoton/NUC980_Linux_Applications/HEAD/alsa-utils-1.0.23/ChangeLog -------------------------------------------------------------------------------- /alsa-utils-1.0.23/INSTALL: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenNuvoton/NUC980_Linux_Applications/HEAD/alsa-utils-1.0.23/INSTALL -------------------------------------------------------------------------------- /alsa-utils-1.0.23/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenNuvoton/NUC980_Linux_Applications/HEAD/alsa-utils-1.0.23/README -------------------------------------------------------------------------------- /alsa-utils-1.0.23/TODO: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenNuvoton/NUC980_Linux_Applications/HEAD/alsa-utils-1.0.23/TODO -------------------------------------------------------------------------------- /alsa-utils-1.0.23/aplay/arecord: -------------------------------------------------------------------------------- 1 | aplay -------------------------------------------------------------------------------- /alsa-utils-1.0.23/configure: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenNuvoton/NUC980_Linux_Applications/HEAD/alsa-utils-1.0.23/configure -------------------------------------------------------------------------------- /alsa-utils-1.0.23/depcomp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenNuvoton/NUC980_Linux_Applications/HEAD/alsa-utils-1.0.23/depcomp -------------------------------------------------------------------------------- /alsa-utils-1.0.23/include/gettext_curses.h: -------------------------------------------------------------------------------- 1 | #define USES_CURSES 2 | #include "gettext.h" 3 | -------------------------------------------------------------------------------- /alsa-utils-1.0.23/m4/nls.m4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenNuvoton/NUC980_Linux_Applications/HEAD/alsa-utils-1.0.23/m4/nls.m4 -------------------------------------------------------------------------------- /alsa-utils-1.0.23/m4/po.m4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenNuvoton/NUC980_Linux_Applications/HEAD/alsa-utils-1.0.23/m4/po.m4 -------------------------------------------------------------------------------- /alsa-utils-1.0.23/missing: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenNuvoton/NUC980_Linux_Applications/HEAD/alsa-utils-1.0.23/missing -------------------------------------------------------------------------------- /alsa-utils-1.0.23/po/LINGUAS: -------------------------------------------------------------------------------- 1 | ja de 2 | -------------------------------------------------------------------------------- /alsa-utils-1.0.23/po/de.gmo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenNuvoton/NUC980_Linux_Applications/HEAD/alsa-utils-1.0.23/po/de.gmo -------------------------------------------------------------------------------- /alsa-utils-1.0.23/po/de.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenNuvoton/NUC980_Linux_Applications/HEAD/alsa-utils-1.0.23/po/de.po -------------------------------------------------------------------------------- /alsa-utils-1.0.23/po/ja.gmo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenNuvoton/NUC980_Linux_Applications/HEAD/alsa-utils-1.0.23/po/ja.gmo -------------------------------------------------------------------------------- /alsa-utils-1.0.23/po/ja.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenNuvoton/NUC980_Linux_Applications/HEAD/alsa-utils-1.0.23/po/ja.po -------------------------------------------------------------------------------- /alsa-utils-1.0.23/po/stamp-po: -------------------------------------------------------------------------------- 1 | timestamp 2 | -------------------------------------------------------------------------------- /alsa-utils-1.0.23/version: -------------------------------------------------------------------------------- 1 | 1.0.23 2 | -------------------------------------------------------------------------------- /benchmark/netperf-2.6.0/ChangeLog: -------------------------------------------------------------------------------- 1 | See the file Release_Notes. -------------------------------------------------------------------------------- /benchmark/netperf-2.6.0/NEWS: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /benchmark/netperf-2.6.0/inet_ntop.c: -------------------------------------------------------------------------------- 1 | #include "missing\inet_ntop.c" -------------------------------------------------------------------------------- /benchmark/netperf-2.6.0/src/missing/.deps/getaddrinfo.Po: -------------------------------------------------------------------------------- 1 | # dummy 2 | -------------------------------------------------------------------------------- /benchmark/netperf-2.6.0/src/missing/.deps/inet_ntop.Po: -------------------------------------------------------------------------------- 1 | # dummy 2 | -------------------------------------------------------------------------------- /benchmark/netperf-2.6.0/src/missing/m4/Makefile.am: -------------------------------------------------------------------------------- 1 | EXTRA_DIST = *.m4 2 | -------------------------------------------------------------------------------- /benchmark/netperf-2.6.0/stamp-h1: -------------------------------------------------------------------------------- 1 | timestamp for config.h 2 | -------------------------------------------------------------------------------- /busybox-1.22.1/.indent.pro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenNuvoton/NUC980_Linux_Applications/HEAD/busybox-1.22.1/.indent.pro -------------------------------------------------------------------------------- /busybox-1.22.1/AUTHORS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenNuvoton/NUC980_Linux_Applications/HEAD/busybox-1.22.1/AUTHORS -------------------------------------------------------------------------------- /busybox-1.22.1/Config.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenNuvoton/NUC980_Linux_Applications/HEAD/busybox-1.22.1/Config.in -------------------------------------------------------------------------------- /busybox-1.22.1/INSTALL: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenNuvoton/NUC980_Linux_Applications/HEAD/busybox-1.22.1/INSTALL -------------------------------------------------------------------------------- /busybox-1.22.1/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenNuvoton/NUC980_Linux_Applications/HEAD/busybox-1.22.1/LICENSE -------------------------------------------------------------------------------- /busybox-1.22.1/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenNuvoton/NUC980_Linux_Applications/HEAD/busybox-1.22.1/Makefile -------------------------------------------------------------------------------- /busybox-1.22.1/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenNuvoton/NUC980_Linux_Applications/HEAD/busybox-1.22.1/README -------------------------------------------------------------------------------- /busybox-1.22.1/TODO: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenNuvoton/NUC980_Linux_Applications/HEAD/busybox-1.22.1/TODO -------------------------------------------------------------------------------- /busybox-1.22.1/TODO_unicode: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenNuvoton/NUC980_Linux_Applications/HEAD/busybox-1.22.1/TODO_unicode -------------------------------------------------------------------------------- /busybox-1.22.1/docs/tcp.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenNuvoton/NUC980_Linux_Applications/HEAD/busybox-1.22.1/docs/tcp.txt -------------------------------------------------------------------------------- /busybox-1.22.1/e2fsprogs/old_e2fsprogs/ext2fs/ext2_types.h: -------------------------------------------------------------------------------- 1 | /* vi: set sw=4 ts=4: */ 2 | #include 3 | -------------------------------------------------------------------------------- /busybox-1.22.1/editors/ed.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenNuvoton/NUC980_Linux_Applications/HEAD/busybox-1.22.1/editors/ed.c -------------------------------------------------------------------------------- /busybox-1.22.1/editors/vi.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenNuvoton/NUC980_Linux_Applications/HEAD/busybox-1.22.1/editors/vi.c -------------------------------------------------------------------------------- /busybox-1.22.1/examples/dnsd.conf: -------------------------------------------------------------------------------- 1 | thebox 192.168.1.5 2 | -------------------------------------------------------------------------------- /busybox-1.22.1/examples/udhcp/sample.nak: -------------------------------------------------------------------------------- 1 | #!/bin/sh 2 | # Sample udhcpc nak script 3 | 4 | echo Received a NAK: $message 5 | -------------------------------------------------------------------------------- /busybox-1.22.1/examples/var_service/dhcp_if/p_log: -------------------------------------------------------------------------------- 1 | #!/bin/sh 2 | 3 | cd log/logdir || exit 1 4 | cat @* current | $PAGER 5 | -------------------------------------------------------------------------------- /busybox-1.22.1/examples/var_service/ftpd/p_log: -------------------------------------------------------------------------------- 1 | #!/bin/sh 2 | 3 | cd log/logdir || exit 1 4 | cat @* current | $PAGER 5 | -------------------------------------------------------------------------------- /busybox-1.22.1/examples/var_service/httpd/p_log: -------------------------------------------------------------------------------- 1 | #!/bin/sh 2 | 3 | cd log/logdir || exit 1 4 | cat @* current | $PAGER 5 | -------------------------------------------------------------------------------- /busybox-1.22.1/examples/var_service/ifplugd_if/p_log: -------------------------------------------------------------------------------- 1 | #!/bin/sh 2 | 3 | cd log/logdir || exit 1 4 | cat @* current | $PAGER 5 | -------------------------------------------------------------------------------- /busybox-1.22.1/examples/var_service/inetd/p_log: -------------------------------------------------------------------------------- 1 | #!/bin/sh 2 | 3 | cd log/logdir || exit 1 4 | cat @* current | $PAGER 5 | -------------------------------------------------------------------------------- /busybox-1.22.1/examples/var_service/ntpd/p_log: -------------------------------------------------------------------------------- 1 | #!/bin/sh 2 | 3 | cd log/logdir || exit 1 4 | cat @* current | $PAGER 5 | -------------------------------------------------------------------------------- /busybox-1.22.1/examples/var_service/tftpd/p_log: -------------------------------------------------------------------------------- 1 | #!/bin/sh 2 | 3 | cd log/logdir || exit 1 4 | cat @* current | $PAGER 5 | -------------------------------------------------------------------------------- /busybox-1.22.1/include/ar.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenNuvoton/NUC980_Linux_Applications/HEAD/busybox-1.22.1/include/ar.h -------------------------------------------------------------------------------- /busybox-1.22.1/init/halt.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenNuvoton/NUC980_Linux_Applications/HEAD/busybox-1.22.1/init/halt.c -------------------------------------------------------------------------------- /busybox-1.22.1/init/init.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenNuvoton/NUC980_Linux_Applications/HEAD/busybox-1.22.1/init/init.c -------------------------------------------------------------------------------- /busybox-1.22.1/init/mesg.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenNuvoton/NUC980_Linux_Applications/HEAD/busybox-1.22.1/init/mesg.c -------------------------------------------------------------------------------- /busybox-1.22.1/libbb/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenNuvoton/NUC980_Linux_Applications/HEAD/busybox-1.22.1/libbb/README -------------------------------------------------------------------------------- /busybox-1.22.1/libbb/dump.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenNuvoton/NUC980_Linux_Applications/HEAD/busybox-1.22.1/libbb/dump.c -------------------------------------------------------------------------------- /busybox-1.22.1/libbb/loop.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenNuvoton/NUC980_Linux_Applications/HEAD/busybox-1.22.1/libbb/loop.c -------------------------------------------------------------------------------- /busybox-1.22.1/libbb/mtab.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenNuvoton/NUC980_Linux_Applications/HEAD/busybox-1.22.1/libbb/mtab.c -------------------------------------------------------------------------------- /busybox-1.22.1/libbb/read.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenNuvoton/NUC980_Linux_Applications/HEAD/busybox-1.22.1/libbb/read.c -------------------------------------------------------------------------------- /busybox-1.22.1/libbb/rtc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenNuvoton/NUC980_Linux_Applications/HEAD/busybox-1.22.1/libbb/rtc.c -------------------------------------------------------------------------------- /busybox-1.22.1/libbb/time.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenNuvoton/NUC980_Linux_Applications/HEAD/busybox-1.22.1/libbb/time.c -------------------------------------------------------------------------------- /busybox-1.22.1/libbb/trim.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenNuvoton/NUC980_Linux_Applications/HEAD/busybox-1.22.1/libbb/trim.c -------------------------------------------------------------------------------- /busybox-1.22.1/libbb/utmp.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenNuvoton/NUC980_Linux_Applications/HEAD/busybox-1.22.1/libbb/utmp.c -------------------------------------------------------------------------------- /busybox-1.22.1/procps/ps.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenNuvoton/NUC980_Linux_Applications/HEAD/busybox-1.22.1/procps/ps.c -------------------------------------------------------------------------------- /busybox-1.22.1/procps/top.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenNuvoton/NUC980_Linux_Applications/HEAD/busybox-1.22.1/procps/top.c -------------------------------------------------------------------------------- /busybox-1.22.1/runit/sv.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenNuvoton/NUC980_Linux_Applications/HEAD/busybox-1.22.1/runit/sv.c -------------------------------------------------------------------------------- /busybox-1.22.1/shell/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenNuvoton/NUC980_Linux_Applications/HEAD/busybox-1.22.1/shell/README -------------------------------------------------------------------------------- /busybox-1.22.1/shell/ash.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenNuvoton/NUC980_Linux_Applications/HEAD/busybox-1.22.1/shell/ash.c -------------------------------------------------------------------------------- /busybox-1.22.1/shell/ash_test/ash-arith/arith-bash1.right: -------------------------------------------------------------------------------- 1 | 1 2 | 0 3 | -------------------------------------------------------------------------------- /busybox-1.22.1/shell/ash_test/ash-misc/echo_write_error.right: -------------------------------------------------------------------------------- 1 | ash: write error: Broken pipe 2 | Ok: 1 3 | -------------------------------------------------------------------------------- /busybox-1.22.1/shell/ash_test/ash-misc/last_amp.right: -------------------------------------------------------------------------------- 1 | 3 2 | End 3 | -------------------------------------------------------------------------------- /busybox-1.22.1/shell/ash_test/ash-misc/source1.right: -------------------------------------------------------------------------------- 1 | Sourced ok 2 | Done 3 | -------------------------------------------------------------------------------- /busybox-1.22.1/shell/ash_test/ash-misc/source2.right: -------------------------------------------------------------------------------- 1 | Done: 0 2 | -------------------------------------------------------------------------------- /busybox-1.22.1/shell/ash_test/ash-misc/source2.tests: -------------------------------------------------------------------------------- 1 | false 2 | . /dev/null 3 | echo Done: $? 4 | -------------------------------------------------------------------------------- /busybox-1.22.1/shell/ash_test/ash-redir/redir.right: -------------------------------------------------------------------------------- 1 | ash: write error: Bad file descriptor 2 | TEST 3 | -------------------------------------------------------------------------------- /busybox-1.22.1/shell/ash_test/ash-redir/redir2.right: -------------------------------------------------------------------------------- 1 | OK 2 | -------------------------------------------------------------------------------- /busybox-1.22.1/shell/ash_test/ash-redir/redir4.right: -------------------------------------------------------------------------------- 1 | OK 2 | -------------------------------------------------------------------------------- /busybox-1.22.1/shell/ash_test/ash-redir/redir5.right: -------------------------------------------------------------------------------- 1 | ./redir5.tests: line 2: 10: Bad file descriptor 2 | OK 3 | -------------------------------------------------------------------------------- /busybox-1.22.1/shell/ash_test/ash-redir/redir6.right: -------------------------------------------------------------------------------- 1 | Hello 2 | OK 3 | -------------------------------------------------------------------------------- /busybox-1.22.1/shell/ash_test/ash-redir/redir7.right: -------------------------------------------------------------------------------- 1 | Ok 2 | Ok 3 | Done 4 | -------------------------------------------------------------------------------- /busybox-1.22.1/shell/ash_test/ash-redir/redir8.right: -------------------------------------------------------------------------------- 1 | Ok 2 | Ok 3 | Done 4 | -------------------------------------------------------------------------------- /busybox-1.22.1/shell/ash_test/ash-redir/redir9.right: -------------------------------------------------------------------------------- 1 | Ok 2 | Done:0 3 | -------------------------------------------------------------------------------- /busybox-1.22.1/shell/ash_test/ash-signals/reap1.right: -------------------------------------------------------------------------------- 1 | Ok 2 | -------------------------------------------------------------------------------- /busybox-1.22.1/shell/ash_test/ash-signals/sigint1.right: -------------------------------------------------------------------------------- 1 | Sending SIGINT to main shell PID 2 | -------------------------------------------------------------------------------- /busybox-1.22.1/shell/ash_test/ash-signals/signal6.right: -------------------------------------------------------------------------------- 1 | got TERM 2 | Done: 0 3 | -------------------------------------------------------------------------------- /busybox-1.22.1/shell/ash_test/ash-signals/signal7.right: -------------------------------------------------------------------------------- 1 | Bug detected: 0 2 | -------------------------------------------------------------------------------- /busybox-1.22.1/shell/ash_test/ash-signals/signal8.right: -------------------------------------------------------------------------------- 1 | Removing traps 2 | End of exit_func 3 | Done: 0 4 | -------------------------------------------------------------------------------- /busybox-1.22.1/shell/ash_test/ash-signals/signal9.right: -------------------------------------------------------------------------------- 1 | Removing traps 2 | End of exit_func 3 | Done: 0 4 | -------------------------------------------------------------------------------- /busybox-1.22.1/shell/ash_test/ash-standalone/nofork_trashes_getopt.right: -------------------------------------------------------------------------------- 1 | 0 2 | -------------------------------------------------------------------------------- /busybox-1.22.1/shell/ash_test/ash-standalone/var_standalone1.right: -------------------------------------------------------------------------------- 1 | Done: 1 2 | -------------------------------------------------------------------------------- /busybox-1.22.1/shell/ash_test/ash-vars/var2.right: -------------------------------------------------------------------------------- 1 | bus/usb/1/2 2 | -------------------------------------------------------------------------------- /busybox-1.22.1/shell/ash_test/ash-vars/var_bash5.right: -------------------------------------------------------------------------------- 1 | a/ 2 | a/d 3 | a/e/f 4 | Done: 0 5 | -------------------------------------------------------------------------------- /busybox-1.22.1/shell/hush.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenNuvoton/NUC980_Linux_Applications/HEAD/busybox-1.22.1/shell/hush.c -------------------------------------------------------------------------------- /busybox-1.22.1/shell/hush_test/hush-bugs/and_or_and_backgrounding.right: -------------------------------------------------------------------------------- 1 | First 2 | Second 3 | Third 4 | Done 5 | -------------------------------------------------------------------------------- /busybox-1.22.1/shell/hush_test/hush-leak/leak_argv1.right: -------------------------------------------------------------------------------- 1 | Measuring memory leak... 2 | Ok 3 | -------------------------------------------------------------------------------- /busybox-1.22.1/shell/hush_test/hush-misc/assignment2.rigth: -------------------------------------------------------------------------------- 1 | hush: can't exec 'a=b': No such file or directory 2 | 1 3 | -------------------------------------------------------------------------------- /busybox-1.22.1/shell/hush_test/hush-misc/assignment3.right: -------------------------------------------------------------------------------- 1 | Done:0 2 | abc=123 3 | -------------------------------------------------------------------------------- /busybox-1.22.1/shell/hush_test/hush-misc/assignment4.right: -------------------------------------------------------------------------------- 1 | Done:0 2 | -------------------------------------------------------------------------------- /busybox-1.22.1/shell/hush_test/hush-misc/break1.right: -------------------------------------------------------------------------------- 1 | A 2 | OK:0 3 | -------------------------------------------------------------------------------- /busybox-1.22.1/shell/hush_test/hush-misc/break2.right: -------------------------------------------------------------------------------- 1 | A 2 | AA 3 | OK:0 4 | -------------------------------------------------------------------------------- /busybox-1.22.1/shell/hush_test/hush-misc/break3.right: -------------------------------------------------------------------------------- 1 | A 2 | OK:0 3 | -------------------------------------------------------------------------------- /busybox-1.22.1/shell/hush_test/hush-misc/builtin1.right: -------------------------------------------------------------------------------- 1 | VARIABLE=export 2 | OK:0 3 | -------------------------------------------------------------------------------- /busybox-1.22.1/shell/hush_test/hush-misc/colon.right: -------------------------------------------------------------------------------- 1 | 0 2 | OK: 0 3 | -------------------------------------------------------------------------------- /busybox-1.22.1/shell/hush_test/hush-misc/continue2.right: -------------------------------------------------------------------------------- 1 | Ok:1 2 | -------------------------------------------------------------------------------- /busybox-1.22.1/shell/hush_test/hush-misc/continue3.right: -------------------------------------------------------------------------------- 1 | 0 2 | 0 3 | -------------------------------------------------------------------------------- /busybox-1.22.1/shell/hush_test/hush-misc/echo_write_error.right: -------------------------------------------------------------------------------- 1 | hush: write error: Broken pipe 2 | Ok: 1 3 | -------------------------------------------------------------------------------- /busybox-1.22.1/shell/hush_test/hush-misc/empty_for.right: -------------------------------------------------------------------------------- 1 | OK: 0 2 | -------------------------------------------------------------------------------- /busybox-1.22.1/shell/hush_test/hush-misc/env_and_func.right: -------------------------------------------------------------------------------- 1 | var=val 2 | var=old 3 | -------------------------------------------------------------------------------- /busybox-1.22.1/shell/hush_test/hush-misc/exit1.right: -------------------------------------------------------------------------------- 1 | Once 2 | -------------------------------------------------------------------------------- /busybox-1.22.1/shell/hush_test/hush-misc/for_with_keywords.right: -------------------------------------------------------------------------------- 1 | do 2 | done 3 | then 4 | OK: 0 5 | -------------------------------------------------------------------------------- /busybox-1.22.1/shell/hush_test/hush-misc/func4.right: -------------------------------------------------------------------------------- 1 | 24 2 | Done 3 | -------------------------------------------------------------------------------- /busybox-1.22.1/shell/hush_test/hush-misc/func5.right: -------------------------------------------------------------------------------- 1 | 1 2 | 2 3 | 3 4 | -------------------------------------------------------------------------------- /busybox-1.22.1/shell/hush_test/hush-misc/func_local1.right: -------------------------------------------------------------------------------- 1 | z=a 2 | z=z 3 | Done 4 | -------------------------------------------------------------------------------- /busybox-1.22.1/shell/hush_test/hush-misc/heredoc1.right: -------------------------------------------------------------------------------- 1 | qwe 2 | asd 3 | 123 4 | 456 5 | Ok 6 | -------------------------------------------------------------------------------- /busybox-1.22.1/shell/hush_test/hush-misc/if_false_exitcode.right: -------------------------------------------------------------------------------- 1 | Ok:0 2 | -------------------------------------------------------------------------------- /busybox-1.22.1/shell/hush_test/hush-misc/opts1.right: -------------------------------------------------------------------------------- 1 | Param1: >-10qwertyuiop< 2 | Done 3 | -------------------------------------------------------------------------------- /busybox-1.22.1/shell/hush_test/hush-misc/pid.right: -------------------------------------------------------------------------------- 1 | 0 2 | -------------------------------------------------------------------------------- /busybox-1.22.1/shell/hush_test/hush-misc/redir2.right: -------------------------------------------------------------------------------- 1 | Ok 2 | -------------------------------------------------------------------------------- /busybox-1.22.1/shell/hush_test/hush-misc/redir2.tests: -------------------------------------------------------------------------------- 1 | echo NOT SHOWN \2>/dev/null 2 | echo Ok 3 | -------------------------------------------------------------------------------- /busybox-1.22.1/shell/hush_test/hush-misc/return1.right: -------------------------------------------------------------------------------- 1 | Ok:0 2 | -------------------------------------------------------------------------------- /busybox-1.22.1/shell/hush_test/hush-misc/sigint1.right: -------------------------------------------------------------------------------- 1 | Sending SIGINT to main shell PID 2 | -------------------------------------------------------------------------------- /busybox-1.22.1/shell/hush_test/hush-misc/syntax_err_negate.right: -------------------------------------------------------------------------------- 1 | bash 3.2 fails this 2 | hush: syntax error: ! ! command 3 | -------------------------------------------------------------------------------- /busybox-1.22.1/shell/hush_test/hush-misc/syntax_err_negate.tests: -------------------------------------------------------------------------------- 1 | echo bash 3.2 fails this 2 | ! ! true 3 | -------------------------------------------------------------------------------- /busybox-1.22.1/shell/hush_test/hush-misc/until1.right: -------------------------------------------------------------------------------- 1 | 1 2 | 1 3 | Ok:0 4 | -------------------------------------------------------------------------------- /busybox-1.22.1/shell/hush_test/hush-misc/while1.right: -------------------------------------------------------------------------------- 1 | OK:0 2 | -------------------------------------------------------------------------------- /busybox-1.22.1/shell/hush_test/hush-misc/while2.right: -------------------------------------------------------------------------------- 1 | Hello 2 | OK:0 3 | -------------------------------------------------------------------------------- /busybox-1.22.1/shell/hush_test/hush-misc/while3.right: -------------------------------------------------------------------------------- 1 | OK:0 2 | -------------------------------------------------------------------------------- /busybox-1.22.1/shell/hush_test/hush-misc/while4.right: -------------------------------------------------------------------------------- 1 | Ok:0 2 | -------------------------------------------------------------------------------- /busybox-1.22.1/shell/hush_test/hush-misc/while_in_subshell.right: -------------------------------------------------------------------------------- 1 | OK: 0 2 | -------------------------------------------------------------------------------- /busybox-1.22.1/shell/hush_test/hush-parsing/argv0.right: -------------------------------------------------------------------------------- 1 | OK 2 | -------------------------------------------------------------------------------- /busybox-1.22.1/shell/hush_test/hush-parsing/eol1.right: -------------------------------------------------------------------------------- 1 | Done:0 2 | -------------------------------------------------------------------------------- /busybox-1.22.1/shell/hush_test/hush-parsing/escape1.right: -------------------------------------------------------------------------------- 1 | \ 2 | a\b 3 | \\ 4 | c\\d 5 | -------------------------------------------------------------------------------- /busybox-1.22.1/shell/hush_test/hush-parsing/escape4.right: -------------------------------------------------------------------------------- 1 | Ok 2 | End 3 | -------------------------------------------------------------------------------- /busybox-1.22.1/shell/hush_test/hush-parsing/group1.right: -------------------------------------------------------------------------------- 1 | word} } 2 | -------------------------------------------------------------------------------- /busybox-1.22.1/shell/hush_test/hush-parsing/group1.tests: -------------------------------------------------------------------------------- 1 | { echo word} }; } 2 | -------------------------------------------------------------------------------- /busybox-1.22.1/shell/hush_test/hush-parsing/group2.right: -------------------------------------------------------------------------------- 1 | got TERM 2 | Done: 0 3 | -------------------------------------------------------------------------------- /busybox-1.22.1/shell/hush_test/hush-parsing/noeol.right: -------------------------------------------------------------------------------- 1 | HELLO 2 | -------------------------------------------------------------------------------- /busybox-1.22.1/shell/hush_test/hush-parsing/noeol.tests: -------------------------------------------------------------------------------- 1 | # next line has no EOL! 2 | echo HELLO -------------------------------------------------------------------------------- /busybox-1.22.1/shell/hush_test/hush-parsing/noeol2.right: -------------------------------------------------------------------------------- 1 | 1 2 | -------------------------------------------------------------------------------- /busybox-1.22.1/shell/hush_test/hush-parsing/noeol3.right: -------------------------------------------------------------------------------- 1 | hush: syntax error: unterminated " 2 | -------------------------------------------------------------------------------- /busybox-1.22.1/shell/hush_test/hush-parsing/noeol3.tests: -------------------------------------------------------------------------------- 1 | # last line has no EOL! 2 | echo "unterminated -------------------------------------------------------------------------------- /busybox-1.22.1/shell/hush_test/hush-parsing/quote1.right: -------------------------------------------------------------------------------- 1 | '1' 2 | -------------------------------------------------------------------------------- /busybox-1.22.1/shell/hush_test/hush-parsing/quote1.tests: -------------------------------------------------------------------------------- 1 | a=1 2 | echo "'$a'" 3 | -------------------------------------------------------------------------------- /busybox-1.22.1/shell/hush_test/hush-parsing/quote2.right: -------------------------------------------------------------------------------- 1 | >1 2 | -------------------------------------------------------------------------------- /busybox-1.22.1/shell/hush_test/hush-parsing/quote2.tests: -------------------------------------------------------------------------------- 1 | a=1 2 | echo ">$a" 3 | -------------------------------------------------------------------------------- /busybox-1.22.1/shell/hush_test/hush-parsing/quote4.right: -------------------------------------------------------------------------------- 1 | a b 2 | -------------------------------------------------------------------------------- /busybox-1.22.1/shell/hush_test/hush-parsing/quote4.tests: -------------------------------------------------------------------------------- 1 | a_b='a b' 2 | echo "$a_b" 3 | -------------------------------------------------------------------------------- /busybox-1.22.1/shell/hush_test/hush-psubst/tick.right: -------------------------------------------------------------------------------- 1 | 1 2 | 1 3 | -------------------------------------------------------------------------------- /busybox-1.22.1/shell/hush_test/hush-psubst/tick2.right: -------------------------------------------------------------------------------- 1 | BAZ 2 | -------------------------------------------------------------------------------- /busybox-1.22.1/shell/hush_test/hush-psubst/tick5.right: -------------------------------------------------------------------------------- 1 | 1 2 | -------------------------------------------------------------------------------- /busybox-1.22.1/shell/hush_test/hush-psubst/tick5.tests: -------------------------------------------------------------------------------- 1 | true; echo `false` $? 2 | -------------------------------------------------------------------------------- /busybox-1.22.1/shell/hush_test/hush-trap/save-ret.right: -------------------------------------------------------------------------------- 1 | YEAH 2 | 0 3 | -------------------------------------------------------------------------------- /busybox-1.22.1/shell/hush_test/hush-trap/signal7.right: -------------------------------------------------------------------------------- 1 | Bug detected: 0 2 | -------------------------------------------------------------------------------- /busybox-1.22.1/shell/hush_test/hush-trap/signal_read1.right: -------------------------------------------------------------------------------- 1 | Got HUP:0 2 | -------------------------------------------------------------------------------- /busybox-1.22.1/shell/hush_test/hush-trap/signal_read2.right: -------------------------------------------------------------------------------- 1 | HUP 2 | Done:129 3 | -------------------------------------------------------------------------------- /busybox-1.22.1/shell/hush_test/hush-vars/glob_and_vars.tests: -------------------------------------------------------------------------------- 1 | v=. 2 | echo $v/glob_and_vars.[tr]* 3 | -------------------------------------------------------------------------------- /busybox-1.22.1/shell/hush_test/hush-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-1.22.1/shell/hush_test/hush-vars/var_leaks.right: -------------------------------------------------------------------------------- 1 | OK 2 | -------------------------------------------------------------------------------- /busybox-1.22.1/shell/hush_test/hush-z_slow/leak_all1.right: -------------------------------------------------------------------------------- 1 | Warm up 2 | Measuring memory leak... 3 | Ok 4 | -------------------------------------------------------------------------------- /busybox-1.22.1/shell/hush_test/hush-z_slow/leak_all2.right: -------------------------------------------------------------------------------- 1 | Warm up 2 | Measuring memory leak... 3 | Ok 4 | -------------------------------------------------------------------------------- /busybox-1.22.1/shell/hush_test/hush-z_slow/leak_empty_tick.right: -------------------------------------------------------------------------------- 1 | Warm up 2 | Measuring memory leak... 3 | Ok 4 | -------------------------------------------------------------------------------- /busybox-1.22.1/shell/hush_test/hush-z_slow/leak_heredoc1.right: -------------------------------------------------------------------------------- 1 | Warm up 2 | Measuring memory leak... 3 | Ok 4 | -------------------------------------------------------------------------------- /busybox-1.22.1/shell/hush_test/hush-z_slow/leak_var.right: -------------------------------------------------------------------------------- 1 | Measuring memory leak... 2 | Ok 3 | -------------------------------------------------------------------------------- /busybox-1.22.1/shell/hush_test/hush-z_slow/leak_var2.right: -------------------------------------------------------------------------------- 1 | Warm up 2 | Measuring memory leak... 3 | Ok 4 | -------------------------------------------------------------------------------- /busybox-1.22.1/shell/hush_test/hush-z_slow/leak_var3.right: -------------------------------------------------------------------------------- 1 | Warm up 2 | Measuring memory leak... 3 | Ok 4 | -------------------------------------------------------------------------------- /busybox-1.22.1/shell/math.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenNuvoton/NUC980_Linux_Applications/HEAD/busybox-1.22.1/shell/math.c -------------------------------------------------------------------------------- /busybox-1.22.1/shell/math.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenNuvoton/NUC980_Linux_Applications/HEAD/busybox-1.22.1/shell/math.h -------------------------------------------------------------------------------- /busybox-1.22.1/shell/msh_test/msh-bugs/noeol3.right: -------------------------------------------------------------------------------- 1 | hush: syntax error: unterminated " 2 | -------------------------------------------------------------------------------- /busybox-1.22.1/shell/msh_test/msh-bugs/noeol3.tests: -------------------------------------------------------------------------------- 1 | # last line has no EOL! 2 | echo "unterminated -------------------------------------------------------------------------------- /busybox-1.22.1/shell/msh_test/msh-bugs/syntax_err.right: -------------------------------------------------------------------------------- 1 | shown 2 | hush: syntax error: unterminated ' 3 | -------------------------------------------------------------------------------- /busybox-1.22.1/shell/msh_test/msh-execution/exitcode_EACCES.right: -------------------------------------------------------------------------------- 1 | ./: can't execute 2 | 126 3 | -------------------------------------------------------------------------------- /busybox-1.22.1/shell/msh_test/msh-execution/exitcode_EACCES.tests: -------------------------------------------------------------------------------- 1 | ./ 2 | echo $? 3 | -------------------------------------------------------------------------------- /busybox-1.22.1/shell/msh_test/msh-execution/exitcode_ENOENT.right: -------------------------------------------------------------------------------- 1 | ./does_not_exist_for_sure: not found 2 | 127 3 | -------------------------------------------------------------------------------- /busybox-1.22.1/shell/msh_test/msh-execution/exitcode_ENOENT.tests: -------------------------------------------------------------------------------- 1 | ./does_not_exist_for_sure 2 | echo $? 3 | -------------------------------------------------------------------------------- /busybox-1.22.1/shell/msh_test/msh-execution/many_continues.right: -------------------------------------------------------------------------------- 1 | OK 2 | -------------------------------------------------------------------------------- /busybox-1.22.1/shell/msh_test/msh-misc/tick.right: -------------------------------------------------------------------------------- 1 | 1 2 | 1 3 | -------------------------------------------------------------------------------- /busybox-1.22.1/shell/msh_test/msh-parsing/argv0.right: -------------------------------------------------------------------------------- 1 | OK 2 | -------------------------------------------------------------------------------- /busybox-1.22.1/shell/msh_test/msh-parsing/noeol.right: -------------------------------------------------------------------------------- 1 | HELLO 2 | -------------------------------------------------------------------------------- /busybox-1.22.1/shell/msh_test/msh-parsing/noeol.tests: -------------------------------------------------------------------------------- 1 | # next line has no EOL! 2 | echo HELLO -------------------------------------------------------------------------------- /busybox-1.22.1/shell/msh_test/msh-parsing/noeol2.right: -------------------------------------------------------------------------------- 1 | 1 2 | -------------------------------------------------------------------------------- /busybox-1.22.1/shell/msh_test/msh-parsing/quote1.right: -------------------------------------------------------------------------------- 1 | '1' 2 | -------------------------------------------------------------------------------- /busybox-1.22.1/shell/msh_test/msh-parsing/quote1.tests: -------------------------------------------------------------------------------- 1 | a=1 2 | echo "'$a'" 3 | -------------------------------------------------------------------------------- /busybox-1.22.1/shell/msh_test/msh-parsing/quote2.right: -------------------------------------------------------------------------------- 1 | >1 2 | -------------------------------------------------------------------------------- /busybox-1.22.1/shell/msh_test/msh-parsing/quote2.tests: -------------------------------------------------------------------------------- 1 | a=1 2 | echo ">$a" 3 | -------------------------------------------------------------------------------- /busybox-1.22.1/shell/msh_test/msh-parsing/quote3.right: -------------------------------------------------------------------------------- 1 | Testing: in $empty"" 2 | .. 3 | Finished 4 | -------------------------------------------------------------------------------- /busybox-1.22.1/shell/msh_test/msh-parsing/quote4.right: -------------------------------------------------------------------------------- 1 | a b 2 | -------------------------------------------------------------------------------- /busybox-1.22.1/shell/msh_test/msh-parsing/quote4.tests: -------------------------------------------------------------------------------- 1 | a_b='a b' 2 | echo "$a_b" 3 | -------------------------------------------------------------------------------- /busybox-1.22.1/testsuite/cut/cut-cuts-a-character: -------------------------------------------------------------------------------- 1 | test $(echo abcd | busybox cut -c 3) = c 2 | -------------------------------------------------------------------------------- /busybox-1.22.1/testsuite/cut/cut-cuts-a-closed-range: -------------------------------------------------------------------------------- 1 | test $(echo abcd | busybox cut -c 1-2) = ab 2 | -------------------------------------------------------------------------------- /busybox-1.22.1/testsuite/cut/cut-cuts-a-field: -------------------------------------------------------------------------------- 1 | test $($ECHO -e "f1\tf2\tf3" | busybox cut -f 2) = f2 2 | -------------------------------------------------------------------------------- /busybox-1.22.1/testsuite/cut/cut-cuts-an-open-range: -------------------------------------------------------------------------------- 1 | test $(echo abcd | busybox cut -c -3) = abc 2 | -------------------------------------------------------------------------------- /busybox-1.22.1/testsuite/cut/cut-cuts-an-unclosed-range: -------------------------------------------------------------------------------- 1 | test $(echo abcd | busybox cut -c 3-) = cd 2 | -------------------------------------------------------------------------------- /busybox-1.22.1/testsuite/dirname/dirname-handles-empty-path: -------------------------------------------------------------------------------- 1 | test $(busybox dirname '') = . 2 | -------------------------------------------------------------------------------- /busybox-1.22.1/testsuite/dirname/dirname-handles-root: -------------------------------------------------------------------------------- 1 | test $(busybox dirname /) = / 2 | -------------------------------------------------------------------------------- /busybox-1.22.1/testsuite/dirname/dirname-handles-single-component: -------------------------------------------------------------------------------- 1 | test $(busybox dirname foo) = . 2 | -------------------------------------------------------------------------------- /busybox-1.22.1/testsuite/echo/echo-prints-newline: -------------------------------------------------------------------------------- 1 | test `busybox echo word | wc -c` -eq 5 2 | -------------------------------------------------------------------------------- /busybox-1.22.1/testsuite/false/false-is-silent: -------------------------------------------------------------------------------- 1 | busybox false 2>&1 | cmp - /dev/null 2 | -------------------------------------------------------------------------------- /busybox-1.22.1/testsuite/false/false-returns-failure: -------------------------------------------------------------------------------- 1 | ! busybox false 2 | -------------------------------------------------------------------------------- /busybox-1.22.1/testsuite/gunzip.tests: -------------------------------------------------------------------------------- 1 | #!/bin/sh 2 | 3 | . ./bunzip2.tests 4 | -------------------------------------------------------------------------------- /busybox-1.22.1/testsuite/gzip/gzip-accepts-single-minus: -------------------------------------------------------------------------------- 1 | echo foo | busybox gzip - >/dev/null 2 | -------------------------------------------------------------------------------- /busybox-1.22.1/testsuite/tar/tar-demands-at-least-one-ctx: -------------------------------------------------------------------------------- 1 | ! busybox tar v 2 | -------------------------------------------------------------------------------- /busybox-1.22.1/testsuite/tar/tar-demands-at-most-one-ctx: -------------------------------------------------------------------------------- 1 | ! busybox tar tx 2 | -------------------------------------------------------------------------------- /busybox-1.22.1/testsuite/true/true-is-silent: -------------------------------------------------------------------------------- 1 | busybox true 2>&1 | cmp - /dev/null 2 | -------------------------------------------------------------------------------- /busybox-1.22.1/testsuite/true/true-returns-success: -------------------------------------------------------------------------------- 1 | busybox true 2 | -------------------------------------------------------------------------------- /busybox-1.22.1/testsuite/uptime/uptime-works: -------------------------------------------------------------------------------- 1 | busybox uptime 2 | -------------------------------------------------------------------------------- /busybox-1.22.1/testsuite/wc/wc-counts-characters: -------------------------------------------------------------------------------- 1 | test `echo i\'m a little teapot | busybox wc -c` -eq 20 2 | -------------------------------------------------------------------------------- /busybox-1.22.1/testsuite/wc/wc-counts-lines: -------------------------------------------------------------------------------- 1 | test `echo i\'m a little teapot | busybox wc -l` -eq 1 2 | -------------------------------------------------------------------------------- /busybox-1.22.1/testsuite/wc/wc-counts-words: -------------------------------------------------------------------------------- 1 | test `echo i\'m a little teapot | busybox wc -w` -eq 4 2 | -------------------------------------------------------------------------------- /busybox-1.22.1/testsuite/wc/wc-prints-longest-line-length: -------------------------------------------------------------------------------- 1 | test `echo i\'m a little teapot | busybox wc -L` -eq 19 2 | -------------------------------------------------------------------------------- /demos/CAN/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenNuvoton/NUC980_Linux_Applications/HEAD/demos/CAN/Makefile -------------------------------------------------------------------------------- /demos/CAN/can.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenNuvoton/NUC980_Linux_Applications/HEAD/demos/CAN/can.c -------------------------------------------------------------------------------- /demos/alsa_audio/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenNuvoton/NUC980_Linux_Applications/HEAD/demos/alsa_audio/Makefile -------------------------------------------------------------------------------- /demos/alsa_audio/demo.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenNuvoton/NUC980_Linux_Applications/HEAD/demos/alsa_audio/demo.c -------------------------------------------------------------------------------- /demos/cap/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenNuvoton/NUC980_Linux_Applications/HEAD/demos/cap/Makefile -------------------------------------------------------------------------------- /demos/cap/cap2bmp.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenNuvoton/NUC980_Linux_Applications/HEAD/demos/cap/cap2bmp.c -------------------------------------------------------------------------------- /demos/crypto/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenNuvoton/NUC980_Linux_Applications/HEAD/demos/crypto/Makefile -------------------------------------------------------------------------------- /demos/crypto/crypto.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenNuvoton/NUC980_Linux_Applications/HEAD/demos/crypto/crypto.c -------------------------------------------------------------------------------- /demos/crypto/crypto_raw.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenNuvoton/NUC980_Linux_Applications/HEAD/demos/crypto/crypto_raw.c -------------------------------------------------------------------------------- /demos/crypto/if_alg.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenNuvoton/NUC980_Linux_Applications/HEAD/demos/crypto/if_alg.h -------------------------------------------------------------------------------- /demos/ebi/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenNuvoton/NUC980_Linux_Applications/HEAD/demos/ebi/Makefile -------------------------------------------------------------------------------- /demos/ebi/ebi.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenNuvoton/NUC980_Linux_Applications/HEAD/demos/ebi/ebi.c -------------------------------------------------------------------------------- /demos/ebi/nuc980-ebi.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenNuvoton/NUC980_Linux_Applications/HEAD/demos/ebi/nuc980-ebi.h -------------------------------------------------------------------------------- /demos/eth2uart/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenNuvoton/NUC980_Linux_Applications/HEAD/demos/eth2uart/Makefile -------------------------------------------------------------------------------- /demos/eth2uart/eth2uart.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenNuvoton/NUC980_Linux_Applications/HEAD/demos/eth2uart/eth2uart.c -------------------------------------------------------------------------------- /demos/eth2uart/lighttpd/log/lighttpd/access.log: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /demos/eth2uart/lighttpd/log/lighttpd/error.log: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /demos/eth2uart/lighttpd/rcS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenNuvoton/NUC980_Linux_Applications/HEAD/demos/eth2uart/lighttpd/rcS -------------------------------------------------------------------------------- /demos/etimer/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenNuvoton/NUC980_Linux_Applications/HEAD/demos/etimer/Makefile -------------------------------------------------------------------------------- /demos/etimer/etimer.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenNuvoton/NUC980_Linux_Applications/HEAD/demos/etimer/etimer.c -------------------------------------------------------------------------------- /demos/fwupdate/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenNuvoton/NUC980_Linux_Applications/HEAD/demos/fwupdate/Makefile -------------------------------------------------------------------------------- /demos/fwupdate/fwupdate.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenNuvoton/NUC980_Linux_Applications/HEAD/demos/fwupdate/fwupdate.c -------------------------------------------------------------------------------- /demos/gpio/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenNuvoton/NUC980_Linux_Applications/HEAD/demos/gpio/Makefile -------------------------------------------------------------------------------- /demos/gpio/gpio_demo.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenNuvoton/NUC980_Linux_Applications/HEAD/demos/gpio/gpio_demo.c -------------------------------------------------------------------------------- /demos/irda/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenNuvoton/NUC980_Linux_Applications/HEAD/demos/irda/Makefile -------------------------------------------------------------------------------- /demos/irda/irda.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenNuvoton/NUC980_Linux_Applications/HEAD/demos/irda/irda.c -------------------------------------------------------------------------------- /demos/rs485/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenNuvoton/NUC980_Linux_Applications/HEAD/demos/rs485/Makefile -------------------------------------------------------------------------------- /demos/rs485/uart.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenNuvoton/NUC980_Linux_Applications/HEAD/demos/rs485/uart.c -------------------------------------------------------------------------------- /demos/rtc/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenNuvoton/NUC980_Linux_Applications/HEAD/demos/rtc/Makefile -------------------------------------------------------------------------------- /demos/rtc/rtc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenNuvoton/NUC980_Linux_Applications/HEAD/demos/rtc/rtc.c -------------------------------------------------------------------------------- /demos/sc/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenNuvoton/NUC980_Linux_Applications/HEAD/demos/sc/Makefile -------------------------------------------------------------------------------- /demos/sc/nuc980-sc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenNuvoton/NUC980_Linux_Applications/HEAD/demos/sc/nuc980-sc.h -------------------------------------------------------------------------------- /demos/sc/sc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenNuvoton/NUC980_Linux_Applications/HEAD/demos/sc/sc.c -------------------------------------------------------------------------------- /demos/spi/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenNuvoton/NUC980_Linux_Applications/HEAD/demos/spi/Makefile -------------------------------------------------------------------------------- /demos/spi/spidev.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenNuvoton/NUC980_Linux_Applications/HEAD/demos/spi/spidev.h -------------------------------------------------------------------------------- /demos/spi/spidev_test.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenNuvoton/NUC980_Linux_Applications/HEAD/demos/spi/spidev_test.c -------------------------------------------------------------------------------- /demos/uart/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenNuvoton/NUC980_Linux_Applications/HEAD/demos/uart/Makefile -------------------------------------------------------------------------------- /demos/uart/uart.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenNuvoton/NUC980_Linux_Applications/HEAD/demos/uart/uart.c -------------------------------------------------------------------------------- /demos/wdt/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenNuvoton/NUC980_Linux_Applications/HEAD/demos/wdt/Makefile -------------------------------------------------------------------------------- /demos/wdt/wdt.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenNuvoton/NUC980_Linux_Applications/HEAD/demos/wdt/wdt.c -------------------------------------------------------------------------------- /demos/wwdt/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenNuvoton/NUC980_Linux_Applications/HEAD/demos/wwdt/Makefile -------------------------------------------------------------------------------- /demos/wwdt/wwdt.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenNuvoton/NUC980_Linux_Applications/HEAD/demos/wwdt/wwdt.c -------------------------------------------------------------------------------- /ethtool-4.6/AUTHORS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenNuvoton/NUC980_Linux_Applications/HEAD/ethtool-4.6/AUTHORS -------------------------------------------------------------------------------- /ethtool-4.6/COPYING: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenNuvoton/NUC980_Linux_Applications/HEAD/ethtool-4.6/COPYING -------------------------------------------------------------------------------- /ethtool-4.6/ChangeLog: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenNuvoton/NUC980_Linux_Applications/HEAD/ethtool-4.6/ChangeLog -------------------------------------------------------------------------------- /ethtool-4.6/INSTALL: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenNuvoton/NUC980_Linux_Applications/HEAD/ethtool-4.6/INSTALL -------------------------------------------------------------------------------- /ethtool-4.6/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenNuvoton/NUC980_Linux_Applications/HEAD/ethtool-4.6/LICENSE -------------------------------------------------------------------------------- /ethtool-4.6/Makefile.am: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenNuvoton/NUC980_Linux_Applications/HEAD/ethtool-4.6/Makefile.am -------------------------------------------------------------------------------- /ethtool-4.6/Makefile.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenNuvoton/NUC980_Linux_Applications/HEAD/ethtool-4.6/Makefile.in -------------------------------------------------------------------------------- /ethtool-4.6/NEWS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenNuvoton/NUC980_Linux_Applications/HEAD/ethtool-4.6/NEWS -------------------------------------------------------------------------------- /ethtool-4.6/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenNuvoton/NUC980_Linux_Applications/HEAD/ethtool-4.6/README -------------------------------------------------------------------------------- /ethtool-4.6/aclocal.m4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenNuvoton/NUC980_Linux_Applications/HEAD/ethtool-4.6/aclocal.m4 -------------------------------------------------------------------------------- /ethtool-4.6/amd8111e.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenNuvoton/NUC980_Linux_Applications/HEAD/ethtool-4.6/amd8111e.c -------------------------------------------------------------------------------- /ethtool-4.6/at76c50x-usb.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenNuvoton/NUC980_Linux_Applications/HEAD/ethtool-4.6/at76c50x-usb.c -------------------------------------------------------------------------------- /ethtool-4.6/autogen.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenNuvoton/NUC980_Linux_Applications/HEAD/ethtool-4.6/autogen.sh -------------------------------------------------------------------------------- /ethtool-4.6/compile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenNuvoton/NUC980_Linux_Applications/HEAD/ethtool-4.6/compile -------------------------------------------------------------------------------- /ethtool-4.6/configure: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenNuvoton/NUC980_Linux_Applications/HEAD/ethtool-4.6/configure -------------------------------------------------------------------------------- /ethtool-4.6/configure.ac: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenNuvoton/NUC980_Linux_Applications/HEAD/ethtool-4.6/configure.ac -------------------------------------------------------------------------------- /ethtool-4.6/de2104x.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenNuvoton/NUC980_Linux_Applications/HEAD/ethtool-4.6/de2104x.c -------------------------------------------------------------------------------- /ethtool-4.6/depcomp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenNuvoton/NUC980_Linux_Applications/HEAD/ethtool-4.6/depcomp -------------------------------------------------------------------------------- /ethtool-4.6/e100.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenNuvoton/NUC980_Linux_Applications/HEAD/ethtool-4.6/e100.c -------------------------------------------------------------------------------- /ethtool-4.6/e1000.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenNuvoton/NUC980_Linux_Applications/HEAD/ethtool-4.6/e1000.c -------------------------------------------------------------------------------- /ethtool-4.6/et131x.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenNuvoton/NUC980_Linux_Applications/HEAD/ethtool-4.6/et131x.c -------------------------------------------------------------------------------- /ethtool-4.6/ethtool-copy.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenNuvoton/NUC980_Linux_Applications/HEAD/ethtool-4.6/ethtool-copy.h -------------------------------------------------------------------------------- /ethtool-4.6/ethtool.8.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenNuvoton/NUC980_Linux_Applications/HEAD/ethtool-4.6/ethtool.8.in -------------------------------------------------------------------------------- /ethtool-4.6/ethtool.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenNuvoton/NUC980_Linux_Applications/HEAD/ethtool-4.6/ethtool.c -------------------------------------------------------------------------------- /ethtool-4.6/ethtool.spec.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenNuvoton/NUC980_Linux_Applications/HEAD/ethtool-4.6/ethtool.spec.in -------------------------------------------------------------------------------- /ethtool-4.6/fec_8xx.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenNuvoton/NUC980_Linux_Applications/HEAD/ethtool-4.6/fec_8xx.c -------------------------------------------------------------------------------- /ethtool-4.6/ibm_emac.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenNuvoton/NUC980_Linux_Applications/HEAD/ethtool-4.6/ibm_emac.c -------------------------------------------------------------------------------- /ethtool-4.6/igb.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenNuvoton/NUC980_Linux_Applications/HEAD/ethtool-4.6/igb.c -------------------------------------------------------------------------------- /ethtool-4.6/install-sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenNuvoton/NUC980_Linux_Applications/HEAD/ethtool-4.6/install-sh -------------------------------------------------------------------------------- /ethtool-4.6/internal.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenNuvoton/NUC980_Linux_Applications/HEAD/ethtool-4.6/internal.h -------------------------------------------------------------------------------- /ethtool-4.6/ixgb.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenNuvoton/NUC980_Linux_Applications/HEAD/ethtool-4.6/ixgb.c -------------------------------------------------------------------------------- /ethtool-4.6/ixgbe.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenNuvoton/NUC980_Linux_Applications/HEAD/ethtool-4.6/ixgbe.c -------------------------------------------------------------------------------- /ethtool-4.6/ixgbevf.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenNuvoton/NUC980_Linux_Applications/HEAD/ethtool-4.6/ixgbevf.c -------------------------------------------------------------------------------- /ethtool-4.6/marvell.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenNuvoton/NUC980_Linux_Applications/HEAD/ethtool-4.6/marvell.c -------------------------------------------------------------------------------- /ethtool-4.6/missing: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenNuvoton/NUC980_Linux_Applications/HEAD/ethtool-4.6/missing -------------------------------------------------------------------------------- /ethtool-4.6/natsemi.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenNuvoton/NUC980_Linux_Applications/HEAD/ethtool-4.6/natsemi.c -------------------------------------------------------------------------------- /ethtool-4.6/pcnet32.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenNuvoton/NUC980_Linux_Applications/HEAD/ethtool-4.6/pcnet32.c -------------------------------------------------------------------------------- /ethtool-4.6/realtek.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenNuvoton/NUC980_Linux_Applications/HEAD/ethtool-4.6/realtek.c -------------------------------------------------------------------------------- /ethtool-4.6/rxclass.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenNuvoton/NUC980_Linux_Applications/HEAD/ethtool-4.6/rxclass.c -------------------------------------------------------------------------------- /ethtool-4.6/sfc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenNuvoton/NUC980_Linux_Applications/HEAD/ethtool-4.6/sfc.c -------------------------------------------------------------------------------- /ethtool-4.6/sfpdiag.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenNuvoton/NUC980_Linux_Applications/HEAD/ethtool-4.6/sfpdiag.c -------------------------------------------------------------------------------- /ethtool-4.6/sfpid.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenNuvoton/NUC980_Linux_Applications/HEAD/ethtool-4.6/sfpid.c -------------------------------------------------------------------------------- /ethtool-4.6/smsc911x.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenNuvoton/NUC980_Linux_Applications/HEAD/ethtool-4.6/smsc911x.c -------------------------------------------------------------------------------- /ethtool-4.6/stmmac.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenNuvoton/NUC980_Linux_Applications/HEAD/ethtool-4.6/stmmac.c -------------------------------------------------------------------------------- /ethtool-4.6/test-cmdline.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenNuvoton/NUC980_Linux_Applications/HEAD/ethtool-4.6/test-cmdline.c -------------------------------------------------------------------------------- /ethtool-4.6/test-common.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenNuvoton/NUC980_Linux_Applications/HEAD/ethtool-4.6/test-common.c -------------------------------------------------------------------------------- /ethtool-4.6/test-driver: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenNuvoton/NUC980_Linux_Applications/HEAD/ethtool-4.6/test-driver -------------------------------------------------------------------------------- /ethtool-4.6/test-features.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenNuvoton/NUC980_Linux_Applications/HEAD/ethtool-4.6/test-features.c -------------------------------------------------------------------------------- /ethtool-4.6/tg3.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenNuvoton/NUC980_Linux_Applications/HEAD/ethtool-4.6/tg3.c -------------------------------------------------------------------------------- /ethtool-4.6/tse.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenNuvoton/NUC980_Linux_Applications/HEAD/ethtool-4.6/tse.c -------------------------------------------------------------------------------- /ethtool-4.6/vioc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenNuvoton/NUC980_Linux_Applications/HEAD/ethtool-4.6/vioc.c -------------------------------------------------------------------------------- /ethtool-4.6/vmxnet3.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenNuvoton/NUC980_Linux_Applications/HEAD/ethtool-4.6/vmxnet3.c -------------------------------------------------------------------------------- /i2c-tools/CHANGES: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenNuvoton/NUC980_Linux_Applications/HEAD/i2c-tools/CHANGES -------------------------------------------------------------------------------- /i2c-tools/COPYING: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenNuvoton/NUC980_Linux_Applications/HEAD/i2c-tools/COPYING -------------------------------------------------------------------------------- /i2c-tools/COPYING.LGPL: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenNuvoton/NUC980_Linux_Applications/HEAD/i2c-tools/COPYING.LGPL -------------------------------------------------------------------------------- /i2c-tools/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenNuvoton/NUC980_Linux_Applications/HEAD/i2c-tools/Makefile -------------------------------------------------------------------------------- /i2c-tools/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenNuvoton/NUC980_Linux_Applications/HEAD/i2c-tools/README -------------------------------------------------------------------------------- /i2c-tools/eeprog/24cXX.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenNuvoton/NUC980_Linux_Applications/HEAD/i2c-tools/eeprog/24cXX.c -------------------------------------------------------------------------------- /i2c-tools/eeprog/24cXX.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenNuvoton/NUC980_Linux_Applications/HEAD/i2c-tools/eeprog/24cXX.h -------------------------------------------------------------------------------- /i2c-tools/eeprog/Module.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenNuvoton/NUC980_Linux_Applications/HEAD/i2c-tools/eeprog/Module.mk -------------------------------------------------------------------------------- /i2c-tools/eeprog/eeprog.8: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenNuvoton/NUC980_Linux_Applications/HEAD/i2c-tools/eeprog/eeprog.8 -------------------------------------------------------------------------------- /i2c-tools/eeprog/eeprog.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenNuvoton/NUC980_Linux_Applications/HEAD/i2c-tools/eeprog/eeprog.c -------------------------------------------------------------------------------- /i2c-tools/eeprom/Module.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenNuvoton/NUC980_Linux_Applications/HEAD/i2c-tools/eeprom/Module.mk -------------------------------------------------------------------------------- /i2c-tools/eeprom/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenNuvoton/NUC980_Linux_Applications/HEAD/i2c-tools/eeprom/README -------------------------------------------------------------------------------- /i2c-tools/eeprom/ddcmon: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenNuvoton/NUC980_Linux_Applications/HEAD/i2c-tools/eeprom/ddcmon -------------------------------------------------------------------------------- /i2c-tools/eepromer/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenNuvoton/NUC980_Linux_Applications/HEAD/i2c-tools/eepromer/Makefile -------------------------------------------------------------------------------- /i2c-tools/eepromer/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenNuvoton/NUC980_Linux_Applications/HEAD/i2c-tools/eepromer/README -------------------------------------------------------------------------------- /i2c-tools/eepromer/eeprom.8: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenNuvoton/NUC980_Linux_Applications/HEAD/i2c-tools/eepromer/eeprom.8 -------------------------------------------------------------------------------- /i2c-tools/eepromer/eeprom.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenNuvoton/NUC980_Linux_Applications/HEAD/i2c-tools/eepromer/eeprom.c -------------------------------------------------------------------------------- /i2c-tools/include/Module.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenNuvoton/NUC980_Linux_Applications/HEAD/i2c-tools/include/Module.mk -------------------------------------------------------------------------------- /i2c-tools/lib/Module.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenNuvoton/NUC980_Linux_Applications/HEAD/i2c-tools/lib/Module.mk -------------------------------------------------------------------------------- /i2c-tools/lib/libi2c.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenNuvoton/NUC980_Linux_Applications/HEAD/i2c-tools/lib/libi2c.map -------------------------------------------------------------------------------- /i2c-tools/lib/smbus.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenNuvoton/NUC980_Linux_Applications/HEAD/i2c-tools/lib/smbus.c -------------------------------------------------------------------------------- /i2c-tools/py-smbus/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenNuvoton/NUC980_Linux_Applications/HEAD/i2c-tools/py-smbus/README -------------------------------------------------------------------------------- /i2c-tools/py-smbus/setup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenNuvoton/NUC980_Linux_Applications/HEAD/i2c-tools/py-smbus/setup.py -------------------------------------------------------------------------------- /i2c-tools/stub/Module.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenNuvoton/NUC980_Linux_Applications/HEAD/i2c-tools/stub/Module.mk -------------------------------------------------------------------------------- /i2c-tools/tools/Module.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenNuvoton/NUC980_Linux_Applications/HEAD/i2c-tools/tools/Module.mk -------------------------------------------------------------------------------- /i2c-tools/tools/i2cbusses.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenNuvoton/NUC980_Linux_Applications/HEAD/i2c-tools/tools/i2cbusses.c -------------------------------------------------------------------------------- /i2c-tools/tools/i2cbusses.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenNuvoton/NUC980_Linux_Applications/HEAD/i2c-tools/tools/i2cbusses.h -------------------------------------------------------------------------------- /i2c-tools/tools/i2cdetect.8: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenNuvoton/NUC980_Linux_Applications/HEAD/i2c-tools/tools/i2cdetect.8 -------------------------------------------------------------------------------- /i2c-tools/tools/i2cdetect.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenNuvoton/NUC980_Linux_Applications/HEAD/i2c-tools/tools/i2cdetect.c -------------------------------------------------------------------------------- /i2c-tools/tools/i2cdump.8: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenNuvoton/NUC980_Linux_Applications/HEAD/i2c-tools/tools/i2cdump.8 -------------------------------------------------------------------------------- /i2c-tools/tools/i2cdump.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenNuvoton/NUC980_Linux_Applications/HEAD/i2c-tools/tools/i2cdump.c -------------------------------------------------------------------------------- /i2c-tools/tools/i2cget.8: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenNuvoton/NUC980_Linux_Applications/HEAD/i2c-tools/tools/i2cget.8 -------------------------------------------------------------------------------- /i2c-tools/tools/i2cget.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenNuvoton/NUC980_Linux_Applications/HEAD/i2c-tools/tools/i2cget.c -------------------------------------------------------------------------------- /i2c-tools/tools/i2cset.8: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenNuvoton/NUC980_Linux_Applications/HEAD/i2c-tools/tools/i2cset.8 -------------------------------------------------------------------------------- /i2c-tools/tools/i2cset.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenNuvoton/NUC980_Linux_Applications/HEAD/i2c-tools/tools/i2cset.c -------------------------------------------------------------------------------- /i2c-tools/tools/util.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenNuvoton/NUC980_Linux_Applications/HEAD/i2c-tools/tools/util.c -------------------------------------------------------------------------------- /i2c-tools/tools/util.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenNuvoton/NUC980_Linux_Applications/HEAD/i2c-tools/tools/util.h -------------------------------------------------------------------------------- /i2c-tools/version.h: -------------------------------------------------------------------------------- 1 | #define VERSION "3.1.0" 2 | -------------------------------------------------------------------------------- /libuuid-1.0.3/.deps/test_uuid-test_uuid.Po: -------------------------------------------------------------------------------- 1 | # dummy 2 | -------------------------------------------------------------------------------- /libuuid-1.0.3/COPYING: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenNuvoton/NUC980_Linux_Applications/HEAD/libuuid-1.0.3/COPYING -------------------------------------------------------------------------------- /libuuid-1.0.3/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenNuvoton/NUC980_Linux_Applications/HEAD/libuuid-1.0.3/Makefile -------------------------------------------------------------------------------- /libuuid-1.0.3/Makefile.am: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenNuvoton/NUC980_Linux_Applications/HEAD/libuuid-1.0.3/Makefile.am -------------------------------------------------------------------------------- /libuuid-1.0.3/Makefile.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenNuvoton/NUC980_Linux_Applications/HEAD/libuuid-1.0.3/Makefile.in -------------------------------------------------------------------------------- /libuuid-1.0.3/aclocal.m4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenNuvoton/NUC980_Linux_Applications/HEAD/libuuid-1.0.3/aclocal.m4 -------------------------------------------------------------------------------- /libuuid-1.0.3/all-io.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenNuvoton/NUC980_Linux_Applications/HEAD/libuuid-1.0.3/all-io.h -------------------------------------------------------------------------------- /libuuid-1.0.3/c.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenNuvoton/NUC980_Linux_Applications/HEAD/libuuid-1.0.3/c.h -------------------------------------------------------------------------------- /libuuid-1.0.3/clear.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenNuvoton/NUC980_Linux_Applications/HEAD/libuuid-1.0.3/clear.c -------------------------------------------------------------------------------- /libuuid-1.0.3/compare.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenNuvoton/NUC980_Linux_Applications/HEAD/libuuid-1.0.3/compare.c -------------------------------------------------------------------------------- /libuuid-1.0.3/config.guess: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenNuvoton/NUC980_Linux_Applications/HEAD/libuuid-1.0.3/config.guess -------------------------------------------------------------------------------- /libuuid-1.0.3/config.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenNuvoton/NUC980_Linux_Applications/HEAD/libuuid-1.0.3/config.h -------------------------------------------------------------------------------- /libuuid-1.0.3/config.h.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenNuvoton/NUC980_Linux_Applications/HEAD/libuuid-1.0.3/config.h.in -------------------------------------------------------------------------------- /libuuid-1.0.3/config.log: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenNuvoton/NUC980_Linux_Applications/HEAD/libuuid-1.0.3/config.log -------------------------------------------------------------------------------- /libuuid-1.0.3/config.status: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenNuvoton/NUC980_Linux_Applications/HEAD/libuuid-1.0.3/config.status -------------------------------------------------------------------------------- /libuuid-1.0.3/config.sub: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenNuvoton/NUC980_Linux_Applications/HEAD/libuuid-1.0.3/config.sub -------------------------------------------------------------------------------- /libuuid-1.0.3/configure: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenNuvoton/NUC980_Linux_Applications/HEAD/libuuid-1.0.3/configure -------------------------------------------------------------------------------- /libuuid-1.0.3/configure.ac: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenNuvoton/NUC980_Linux_Applications/HEAD/libuuid-1.0.3/configure.ac -------------------------------------------------------------------------------- /libuuid-1.0.3/copy.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenNuvoton/NUC980_Linux_Applications/HEAD/libuuid-1.0.3/copy.c -------------------------------------------------------------------------------- /libuuid-1.0.3/depcomp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenNuvoton/NUC980_Linux_Applications/HEAD/libuuid-1.0.3/depcomp -------------------------------------------------------------------------------- /libuuid-1.0.3/gen_uuid.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenNuvoton/NUC980_Linux_Applications/HEAD/libuuid-1.0.3/gen_uuid.c -------------------------------------------------------------------------------- /libuuid-1.0.3/install-sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenNuvoton/NUC980_Linux_Applications/HEAD/libuuid-1.0.3/install-sh -------------------------------------------------------------------------------- /libuuid-1.0.3/isnull.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenNuvoton/NUC980_Linux_Applications/HEAD/libuuid-1.0.3/isnull.c -------------------------------------------------------------------------------- /libuuid-1.0.3/ltmain.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenNuvoton/NUC980_Linux_Applications/HEAD/libuuid-1.0.3/ltmain.sh -------------------------------------------------------------------------------- /libuuid-1.0.3/missing: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenNuvoton/NUC980_Linux_Applications/HEAD/libuuid-1.0.3/missing -------------------------------------------------------------------------------- /libuuid-1.0.3/pack.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenNuvoton/NUC980_Linux_Applications/HEAD/libuuid-1.0.3/pack.c -------------------------------------------------------------------------------- /libuuid-1.0.3/parse.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenNuvoton/NUC980_Linux_Applications/HEAD/libuuid-1.0.3/parse.c -------------------------------------------------------------------------------- /libuuid-1.0.3/randutils.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenNuvoton/NUC980_Linux_Applications/HEAD/libuuid-1.0.3/randutils.c -------------------------------------------------------------------------------- /libuuid-1.0.3/randutils.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenNuvoton/NUC980_Linux_Applications/HEAD/libuuid-1.0.3/randutils.h -------------------------------------------------------------------------------- /libuuid-1.0.3/stamp-h1: -------------------------------------------------------------------------------- 1 | timestamp for config.h 2 | -------------------------------------------------------------------------------- /libuuid-1.0.3/test_uuid.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenNuvoton/NUC980_Linux_Applications/HEAD/libuuid-1.0.3/test_uuid.c -------------------------------------------------------------------------------- /libuuid-1.0.3/unpack.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenNuvoton/NUC980_Linux_Applications/HEAD/libuuid-1.0.3/unpack.c -------------------------------------------------------------------------------- /libuuid-1.0.3/unparse.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenNuvoton/NUC980_Linux_Applications/HEAD/libuuid-1.0.3/unparse.c -------------------------------------------------------------------------------- /libuuid-1.0.3/uuid.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenNuvoton/NUC980_Linux_Applications/HEAD/libuuid-1.0.3/uuid.h -------------------------------------------------------------------------------- /libuuid-1.0.3/uuid.pc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenNuvoton/NUC980_Linux_Applications/HEAD/libuuid-1.0.3/uuid.pc -------------------------------------------------------------------------------- /libuuid-1.0.3/uuid.pc.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenNuvoton/NUC980_Linux_Applications/HEAD/libuuid-1.0.3/uuid.pc.in -------------------------------------------------------------------------------- /libuuid-1.0.3/uuidP.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenNuvoton/NUC980_Linux_Applications/HEAD/libuuid-1.0.3/uuidP.h -------------------------------------------------------------------------------- /libuuid-1.0.3/uuid_time.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenNuvoton/NUC980_Linux_Applications/HEAD/libuuid-1.0.3/uuid_time.c -------------------------------------------------------------------------------- /libuuid-1.0.3/uuidd.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenNuvoton/NUC980_Linux_Applications/HEAD/libuuid-1.0.3/uuidd.h -------------------------------------------------------------------------------- /lighttpd-1.4.39/AUTHORS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenNuvoton/NUC980_Linux_Applications/HEAD/lighttpd-1.4.39/AUTHORS -------------------------------------------------------------------------------- /lighttpd-1.4.39/COPYING: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenNuvoton/NUC980_Linux_Applications/HEAD/lighttpd-1.4.39/COPYING -------------------------------------------------------------------------------- /lighttpd-1.4.39/INSTALL: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenNuvoton/NUC980_Linux_Applications/HEAD/lighttpd-1.4.39/INSTALL -------------------------------------------------------------------------------- /lighttpd-1.4.39/Makefile.am: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenNuvoton/NUC980_Linux_Applications/HEAD/lighttpd-1.4.39/Makefile.am -------------------------------------------------------------------------------- /lighttpd-1.4.39/Makefile.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenNuvoton/NUC980_Linux_Applications/HEAD/lighttpd-1.4.39/Makefile.in -------------------------------------------------------------------------------- /lighttpd-1.4.39/NEWS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenNuvoton/NUC980_Linux_Applications/HEAD/lighttpd-1.4.39/NEWS -------------------------------------------------------------------------------- /lighttpd-1.4.39/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenNuvoton/NUC980_Linux_Applications/HEAD/lighttpd-1.4.39/README -------------------------------------------------------------------------------- /lighttpd-1.4.39/SConstruct: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenNuvoton/NUC980_Linux_Applications/HEAD/lighttpd-1.4.39/SConstruct -------------------------------------------------------------------------------- /lighttpd-1.4.39/aclocal.m4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenNuvoton/NUC980_Linux_Applications/HEAD/lighttpd-1.4.39/aclocal.m4 -------------------------------------------------------------------------------- /lighttpd-1.4.39/ar-lib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenNuvoton/NUC980_Linux_Applications/HEAD/lighttpd-1.4.39/ar-lib -------------------------------------------------------------------------------- /lighttpd-1.4.39/autogen.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenNuvoton/NUC980_Linux_Applications/HEAD/lighttpd-1.4.39/autogen.sh -------------------------------------------------------------------------------- /lighttpd-1.4.39/compile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenNuvoton/NUC980_Linux_Applications/HEAD/lighttpd-1.4.39/compile -------------------------------------------------------------------------------- /lighttpd-1.4.39/config.h.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenNuvoton/NUC980_Linux_Applications/HEAD/lighttpd-1.4.39/config.h.in -------------------------------------------------------------------------------- /lighttpd-1.4.39/config.sub: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenNuvoton/NUC980_Linux_Applications/HEAD/lighttpd-1.4.39/config.sub -------------------------------------------------------------------------------- /lighttpd-1.4.39/configure: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenNuvoton/NUC980_Linux_Applications/HEAD/lighttpd-1.4.39/configure -------------------------------------------------------------------------------- /lighttpd-1.4.39/depcomp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenNuvoton/NUC980_Linux_Applications/HEAD/lighttpd-1.4.39/depcomp -------------------------------------------------------------------------------- /lighttpd-1.4.39/doc/config/vhosts.d/Makefile.am: -------------------------------------------------------------------------------- 1 | EXTRA_DIST=vhosts.template 2 | -------------------------------------------------------------------------------- /lighttpd-1.4.39/doc/systemd/Makefile.am: -------------------------------------------------------------------------------- 1 | EXTRA_DIST=lighttpd.service 2 | -------------------------------------------------------------------------------- /lighttpd-1.4.39/install-sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenNuvoton/NUC980_Linux_Applications/HEAD/lighttpd-1.4.39/install-sh -------------------------------------------------------------------------------- /lighttpd-1.4.39/ltmain.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenNuvoton/NUC980_Linux_Applications/HEAD/lighttpd-1.4.39/ltmain.sh -------------------------------------------------------------------------------- /lighttpd-1.4.39/missing: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenNuvoton/NUC980_Linux_Applications/HEAD/lighttpd-1.4.39/missing -------------------------------------------------------------------------------- /lighttpd-1.4.39/src/array.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenNuvoton/NUC980_Linux_Applications/HEAD/lighttpd-1.4.39/src/array.c -------------------------------------------------------------------------------- /lighttpd-1.4.39/src/array.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenNuvoton/NUC980_Linux_Applications/HEAD/lighttpd-1.4.39/src/array.h -------------------------------------------------------------------------------- /lighttpd-1.4.39/src/base.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenNuvoton/NUC980_Linux_Applications/HEAD/lighttpd-1.4.39/src/base.h -------------------------------------------------------------------------------- /lighttpd-1.4.39/src/chunk.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenNuvoton/NUC980_Linux_Applications/HEAD/lighttpd-1.4.39/src/chunk.c -------------------------------------------------------------------------------- /lighttpd-1.4.39/src/chunk.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenNuvoton/NUC980_Linux_Applications/HEAD/lighttpd-1.4.39/src/chunk.h -------------------------------------------------------------------------------- /lighttpd-1.4.39/src/crc32.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenNuvoton/NUC980_Linux_Applications/HEAD/lighttpd-1.4.39/src/crc32.c -------------------------------------------------------------------------------- /lighttpd-1.4.39/src/crc32.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenNuvoton/NUC980_Linux_Applications/HEAD/lighttpd-1.4.39/src/crc32.h -------------------------------------------------------------------------------- /lighttpd-1.4.39/src/etag.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenNuvoton/NUC980_Linux_Applications/HEAD/lighttpd-1.4.39/src/etag.c -------------------------------------------------------------------------------- /lighttpd-1.4.39/src/etag.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenNuvoton/NUC980_Linux_Applications/HEAD/lighttpd-1.4.39/src/etag.h -------------------------------------------------------------------------------- /lighttpd-1.4.39/src/lemon.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenNuvoton/NUC980_Linux_Applications/HEAD/lighttpd-1.4.39/src/lemon.c -------------------------------------------------------------------------------- /lighttpd-1.4.39/src/log.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenNuvoton/NUC980_Linux_Applications/HEAD/lighttpd-1.4.39/src/log.c -------------------------------------------------------------------------------- /lighttpd-1.4.39/src/log.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenNuvoton/NUC980_Linux_Applications/HEAD/lighttpd-1.4.39/src/log.h -------------------------------------------------------------------------------- /lighttpd-1.4.39/src/md5.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenNuvoton/NUC980_Linux_Applications/HEAD/lighttpd-1.4.39/src/md5.c -------------------------------------------------------------------------------- /lighttpd-1.4.39/src/md5.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenNuvoton/NUC980_Linux_Applications/HEAD/lighttpd-1.4.39/src/md5.h -------------------------------------------------------------------------------- /lighttpd-1.4.39/src/mod_auth.h: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /lighttpd-1.4.39/tests/docroot/123/12345.html: -------------------------------------------------------------------------------- 1 | 12345 2 | -------------------------------------------------------------------------------- /lighttpd-1.4.39/tests/docroot/123/12345.txt: -------------------------------------------------------------------------------- 1 | 12345 2 | -------------------------------------------------------------------------------- /lighttpd-1.4.39/tests/docroot/123/dummyfile.bla: -------------------------------------------------------------------------------- 1 | 12345 2 | -------------------------------------------------------------------------------- /lighttpd-1.4.39/tests/docroot/123/phpinfo.php: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /lighttpd-1.4.39/tests/docroot/Makefile.am: -------------------------------------------------------------------------------- 1 | SUBDIRS=123 www 2 | -------------------------------------------------------------------------------- /lighttpd-1.4.39/tests/docroot/www/404.html: -------------------------------------------------------------------------------- 1 | static not found 2 | -------------------------------------------------------------------------------- /lighttpd-1.4.39/tests/docroot/www/exec-date.shtml: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /lighttpd-1.4.39/tests/docroot/www/expire/Makefile.am: -------------------------------------------------------------------------------- 1 | EXTRA_DIST=access.txt modification.txt 2 | -------------------------------------------------------------------------------- /lighttpd-1.4.39/tests/docroot/www/expire/access.txt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /lighttpd-1.4.39/tests/docroot/www/expire/modification.txt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /lighttpd-1.4.39/tests/docroot/www/get-server-env.php: -------------------------------------------------------------------------------- 1 | 4 | -------------------------------------------------------------------------------- /lighttpd-1.4.39/tests/docroot/www/go/Makefile.am: -------------------------------------------------------------------------------- 1 | EXTRA_DIST=cgi.php 2 | -------------------------------------------------------------------------------- /lighttpd-1.4.39/tests/docroot/www/indexfile/index.php: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /lighttpd-1.4.39/tests/docroot/www/indexfile/rewrite.php: -------------------------------------------------------------------------------- 1 | 4 | -------------------------------------------------------------------------------- /lighttpd-1.4.39/tests/docroot/www/phpinfo.php: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /lighttpd-1.4.39/tests/docroot/www/prefix.fcgi: -------------------------------------------------------------------------------- 1 | 4 | -------------------------------------------------------------------------------- /lighttpd-1.4.39/tests/docroot/www/redirect.php: -------------------------------------------------------------------------------- 1 | 5 | -------------------------------------------------------------------------------- /lighttpd-1.4.39/tests/docroot/www/ssi.shtml: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /lighttpd-1.4.39/tests/lighttpd.user: -------------------------------------------------------------------------------- 1 | jan:jan 2 | -------------------------------------------------------------------------------- /lzo-2.09/AUTHORS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenNuvoton/NUC980_Linux_Applications/HEAD/lzo-2.09/AUTHORS -------------------------------------------------------------------------------- /lzo-2.09/B/00README.TXT: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenNuvoton/NUC980_Linux_Applications/HEAD/lzo-2.09/B/00README.TXT -------------------------------------------------------------------------------- /lzo-2.09/B/clean.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenNuvoton/NUC980_Linux_Applications/HEAD/lzo-2.09/B/clean.bat -------------------------------------------------------------------------------- /lzo-2.09/B/done.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenNuvoton/NUC980_Linux_Applications/HEAD/lzo-2.09/B/done.bat -------------------------------------------------------------------------------- /lzo-2.09/B/dos32/bc_pp.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenNuvoton/NUC980_Linux_Applications/HEAD/lzo-2.09/B/dos32/bc_pp.bat -------------------------------------------------------------------------------- /lzo-2.09/B/dos32/dj2.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenNuvoton/NUC980_Linux_Applications/HEAD/lzo-2.09/B/dos32/dj2.bat -------------------------------------------------------------------------------- /lzo-2.09/B/dos32/dj2.opt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenNuvoton/NUC980_Linux_Applications/HEAD/lzo-2.09/B/dos32/dj2.opt -------------------------------------------------------------------------------- /lzo-2.09/B/dos32/dm.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenNuvoton/NUC980_Linux_Applications/HEAD/lzo-2.09/B/dos32/dm.bat -------------------------------------------------------------------------------- /lzo-2.09/B/dos32/emx.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenNuvoton/NUC980_Linux_Applications/HEAD/lzo-2.09/B/dos32/emx.bat -------------------------------------------------------------------------------- /lzo-2.09/B/dos32/highc.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenNuvoton/NUC980_Linux_Applications/HEAD/lzo-2.09/B/dos32/highc.bat -------------------------------------------------------------------------------- /lzo-2.09/B/dos32/highc.rsp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenNuvoton/NUC980_Linux_Applications/HEAD/lzo-2.09/B/dos32/highc.rsp -------------------------------------------------------------------------------- /lzo-2.09/B/dos32/ndp.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenNuvoton/NUC980_Linux_Applications/HEAD/lzo-2.09/B/dos32/ndp.bat -------------------------------------------------------------------------------- /lzo-2.09/B/dos32/ndp.rsp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenNuvoton/NUC980_Linux_Applications/HEAD/lzo-2.09/B/dos32/ndp.rsp -------------------------------------------------------------------------------- /lzo-2.09/B/dos32/sc.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenNuvoton/NUC980_Linux_Applications/HEAD/lzo-2.09/B/dos32/sc.bat -------------------------------------------------------------------------------- /lzo-2.09/B/dos32/wc.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenNuvoton/NUC980_Linux_Applications/HEAD/lzo-2.09/B/dos32/wc.bat -------------------------------------------------------------------------------- /lzo-2.09/B/dos32/zc.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenNuvoton/NUC980_Linux_Applications/HEAD/lzo-2.09/B/dos32/zc.bat -------------------------------------------------------------------------------- /lzo-2.09/B/generic/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenNuvoton/NUC980_Linux_Applications/HEAD/lzo-2.09/B/generic/Makefile -------------------------------------------------------------------------------- /lzo-2.09/B/generic/build.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenNuvoton/NUC980_Linux_Applications/HEAD/lzo-2.09/B/generic/build.sh -------------------------------------------------------------------------------- /lzo-2.09/B/generic/clean.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenNuvoton/NUC980_Linux_Applications/HEAD/lzo-2.09/B/generic/clean.sh -------------------------------------------------------------------------------- /lzo-2.09/B/os2/emx.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenNuvoton/NUC980_Linux_Applications/HEAD/lzo-2.09/B/os2/emx.bat -------------------------------------------------------------------------------- /lzo-2.09/B/os2/wc.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenNuvoton/NUC980_Linux_Applications/HEAD/lzo-2.09/B/os2/wc.bat -------------------------------------------------------------------------------- /lzo-2.09/B/os2/zc.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenNuvoton/NUC980_Linux_Applications/HEAD/lzo-2.09/B/os2/zc.bat -------------------------------------------------------------------------------- /lzo-2.09/B/prepare.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenNuvoton/NUC980_Linux_Applications/HEAD/lzo-2.09/B/prepare.bat -------------------------------------------------------------------------------- /lzo-2.09/B/src.rsp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenNuvoton/NUC980_Linux_Applications/HEAD/lzo-2.09/B/src.rsp -------------------------------------------------------------------------------- /lzo-2.09/B/unset.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenNuvoton/NUC980_Linux_Applications/HEAD/lzo-2.09/B/unset.bat -------------------------------------------------------------------------------- /lzo-2.09/B/win32/bc.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenNuvoton/NUC980_Linux_Applications/HEAD/lzo-2.09/B/win32/bc.bat -------------------------------------------------------------------------------- /lzo-2.09/B/win32/bc.rsp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenNuvoton/NUC980_Linux_Applications/HEAD/lzo-2.09/B/win32/bc.rsp -------------------------------------------------------------------------------- /lzo-2.09/B/win32/cygwin.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenNuvoton/NUC980_Linux_Applications/HEAD/lzo-2.09/B/win32/cygwin.bat -------------------------------------------------------------------------------- /lzo-2.09/B/win32/cygwin.rsp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenNuvoton/NUC980_Linux_Applications/HEAD/lzo-2.09/B/win32/cygwin.rsp -------------------------------------------------------------------------------- /lzo-2.09/B/win32/dm.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenNuvoton/NUC980_Linux_Applications/HEAD/lzo-2.09/B/win32/dm.bat -------------------------------------------------------------------------------- /lzo-2.09/B/win32/ic.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenNuvoton/NUC980_Linux_Applications/HEAD/lzo-2.09/B/win32/ic.bat -------------------------------------------------------------------------------- /lzo-2.09/B/win32/mingw.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenNuvoton/NUC980_Linux_Applications/HEAD/lzo-2.09/B/win32/mingw.bat -------------------------------------------------------------------------------- /lzo-2.09/B/win32/mwerks.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenNuvoton/NUC980_Linux_Applications/HEAD/lzo-2.09/B/win32/mwerks.bat -------------------------------------------------------------------------------- /lzo-2.09/B/win32/pgi.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenNuvoton/NUC980_Linux_Applications/HEAD/lzo-2.09/B/win32/pgi.bat -------------------------------------------------------------------------------- /lzo-2.09/B/win32/pw32.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenNuvoton/NUC980_Linux_Applications/HEAD/lzo-2.09/B/win32/pw32.bat -------------------------------------------------------------------------------- /lzo-2.09/B/win32/rsxnt.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenNuvoton/NUC980_Linux_Applications/HEAD/lzo-2.09/B/win32/rsxnt.bat -------------------------------------------------------------------------------- /lzo-2.09/B/win32/sc.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenNuvoton/NUC980_Linux_Applications/HEAD/lzo-2.09/B/win32/sc.bat -------------------------------------------------------------------------------- /lzo-2.09/B/win32/vc.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenNuvoton/NUC980_Linux_Applications/HEAD/lzo-2.09/B/win32/vc.bat -------------------------------------------------------------------------------- /lzo-2.09/B/win32/vc.rsp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenNuvoton/NUC980_Linux_Applications/HEAD/lzo-2.09/B/win32/vc.rsp -------------------------------------------------------------------------------- /lzo-2.09/B/win32/vc_dll.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenNuvoton/NUC980_Linux_Applications/HEAD/lzo-2.09/B/win32/vc_dll.bat -------------------------------------------------------------------------------- /lzo-2.09/B/win32/vc_dll.def: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenNuvoton/NUC980_Linux_Applications/HEAD/lzo-2.09/B/win32/vc_dll.def -------------------------------------------------------------------------------- /lzo-2.09/B/win32/wc.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenNuvoton/NUC980_Linux_Applications/HEAD/lzo-2.09/B/win32/wc.bat -------------------------------------------------------------------------------- /lzo-2.09/B/win32/wc.rsp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenNuvoton/NUC980_Linux_Applications/HEAD/lzo-2.09/B/win32/wc.rsp -------------------------------------------------------------------------------- /lzo-2.09/B/win64/ic.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenNuvoton/NUC980_Linux_Applications/HEAD/lzo-2.09/B/win64/ic.bat -------------------------------------------------------------------------------- /lzo-2.09/B/win64/ic_dll.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenNuvoton/NUC980_Linux_Applications/HEAD/lzo-2.09/B/win64/ic_dll.bat -------------------------------------------------------------------------------- /lzo-2.09/B/win64/vc.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenNuvoton/NUC980_Linux_Applications/HEAD/lzo-2.09/B/win64/vc.bat -------------------------------------------------------------------------------- /lzo-2.09/B/win64/vc.rsp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenNuvoton/NUC980_Linux_Applications/HEAD/lzo-2.09/B/win64/vc.rsp -------------------------------------------------------------------------------- /lzo-2.09/B/win64/vc_dll.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenNuvoton/NUC980_Linux_Applications/HEAD/lzo-2.09/B/win64/vc_dll.bat -------------------------------------------------------------------------------- /lzo-2.09/B/win64/vc_dll.def: -------------------------------------------------------------------------------- 1 | EXPORTS 2 | -------------------------------------------------------------------------------- /lzo-2.09/BUGS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenNuvoton/NUC980_Linux_Applications/HEAD/lzo-2.09/BUGS -------------------------------------------------------------------------------- /lzo-2.09/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenNuvoton/NUC980_Linux_Applications/HEAD/lzo-2.09/CMakeLists.txt -------------------------------------------------------------------------------- /lzo-2.09/COPYING: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenNuvoton/NUC980_Linux_Applications/HEAD/lzo-2.09/COPYING -------------------------------------------------------------------------------- /lzo-2.09/ChangeLog: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenNuvoton/NUC980_Linux_Applications/HEAD/lzo-2.09/ChangeLog -------------------------------------------------------------------------------- /lzo-2.09/INSTALL: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenNuvoton/NUC980_Linux_Applications/HEAD/lzo-2.09/INSTALL -------------------------------------------------------------------------------- /lzo-2.09/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenNuvoton/NUC980_Linux_Applications/HEAD/lzo-2.09/Makefile -------------------------------------------------------------------------------- /lzo-2.09/Makefile.am: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenNuvoton/NUC980_Linux_Applications/HEAD/lzo-2.09/Makefile.am -------------------------------------------------------------------------------- /lzo-2.09/Makefile.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenNuvoton/NUC980_Linux_Applications/HEAD/lzo-2.09/Makefile.in -------------------------------------------------------------------------------- /lzo-2.09/NEWS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenNuvoton/NUC980_Linux_Applications/HEAD/lzo-2.09/NEWS -------------------------------------------------------------------------------- /lzo-2.09/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenNuvoton/NUC980_Linux_Applications/HEAD/lzo-2.09/README -------------------------------------------------------------------------------- /lzo-2.09/THANKS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenNuvoton/NUC980_Linux_Applications/HEAD/lzo-2.09/THANKS -------------------------------------------------------------------------------- /lzo-2.09/aclocal.m4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenNuvoton/NUC980_Linux_Applications/HEAD/lzo-2.09/aclocal.m4 -------------------------------------------------------------------------------- /lzo-2.09/asm/i386/src_gas/.deps/lzo1c_s1.Plo: -------------------------------------------------------------------------------- 1 | # dummy 2 | -------------------------------------------------------------------------------- /lzo-2.09/asm/i386/src_gas/.deps/lzo1f_f1.Plo: -------------------------------------------------------------------------------- 1 | # dummy 2 | -------------------------------------------------------------------------------- /lzo-2.09/asm/i386/src_gas/.deps/lzo1x_f1.Plo: -------------------------------------------------------------------------------- 1 | # dummy 2 | -------------------------------------------------------------------------------- /lzo-2.09/asm/i386/src_gas/.deps/lzo1x_s1.Plo: -------------------------------------------------------------------------------- 1 | # dummy 2 | -------------------------------------------------------------------------------- /lzo-2.09/asm/i386/src_gas/.deps/lzo1y_f1.Plo: -------------------------------------------------------------------------------- 1 | # dummy 2 | -------------------------------------------------------------------------------- /lzo-2.09/asm/i386/src_gas/.deps/lzo1y_s1.Plo: -------------------------------------------------------------------------------- 1 | # dummy 2 | -------------------------------------------------------------------------------- /lzo-2.09/autoconf/ar-lib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenNuvoton/NUC980_Linux_Applications/HEAD/lzo-2.09/autoconf/ar-lib -------------------------------------------------------------------------------- /lzo-2.09/autoconf/compile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenNuvoton/NUC980_Linux_Applications/HEAD/lzo-2.09/autoconf/compile -------------------------------------------------------------------------------- /lzo-2.09/autoconf/depcomp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenNuvoton/NUC980_Linux_Applications/HEAD/lzo-2.09/autoconf/depcomp -------------------------------------------------------------------------------- /lzo-2.09/autoconf/local.m4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenNuvoton/NUC980_Linux_Applications/HEAD/lzo-2.09/autoconf/local.m4 -------------------------------------------------------------------------------- /lzo-2.09/autoconf/ltmain.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenNuvoton/NUC980_Linux_Applications/HEAD/lzo-2.09/autoconf/ltmain.sh -------------------------------------------------------------------------------- /lzo-2.09/autoconf/mdate-sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenNuvoton/NUC980_Linux_Applications/HEAD/lzo-2.09/autoconf/mdate-sh -------------------------------------------------------------------------------- /lzo-2.09/autoconf/missing: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenNuvoton/NUC980_Linux_Applications/HEAD/lzo-2.09/autoconf/missing -------------------------------------------------------------------------------- /lzo-2.09/autoconf/shtool: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenNuvoton/NUC980_Linux_Applications/HEAD/lzo-2.09/autoconf/shtool -------------------------------------------------------------------------------- /lzo-2.09/autoconf/ylwrap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenNuvoton/NUC980_Linux_Applications/HEAD/lzo-2.09/autoconf/ylwrap -------------------------------------------------------------------------------- /lzo-2.09/config.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenNuvoton/NUC980_Linux_Applications/HEAD/lzo-2.09/config.h -------------------------------------------------------------------------------- /lzo-2.09/config.hin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenNuvoton/NUC980_Linux_Applications/HEAD/lzo-2.09/config.hin -------------------------------------------------------------------------------- /lzo-2.09/config.log: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenNuvoton/NUC980_Linux_Applications/HEAD/lzo-2.09/config.log -------------------------------------------------------------------------------- /lzo-2.09/config.status: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenNuvoton/NUC980_Linux_Applications/HEAD/lzo-2.09/config.status -------------------------------------------------------------------------------- /lzo-2.09/configure: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenNuvoton/NUC980_Linux_Applications/HEAD/lzo-2.09/configure -------------------------------------------------------------------------------- /lzo-2.09/configure.ac: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenNuvoton/NUC980_Linux_Applications/HEAD/lzo-2.09/configure.ac -------------------------------------------------------------------------------- /lzo-2.09/doc/LZO.FAQ: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenNuvoton/NUC980_Linux_Applications/HEAD/lzo-2.09/doc/LZO.FAQ -------------------------------------------------------------------------------- /lzo-2.09/doc/LZO.TXT: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenNuvoton/NUC980_Linux_Applications/HEAD/lzo-2.09/doc/LZO.TXT -------------------------------------------------------------------------------- /lzo-2.09/doc/LZOAPI.TXT: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenNuvoton/NUC980_Linux_Applications/HEAD/lzo-2.09/doc/LZOAPI.TXT -------------------------------------------------------------------------------- /lzo-2.09/doc/LZOTEST.TXT: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenNuvoton/NUC980_Linux_Applications/HEAD/lzo-2.09/doc/LZOTEST.TXT -------------------------------------------------------------------------------- /lzo-2.09/examples/.deps/.dirstamp: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /lzo-2.09/examples/.dirstamp: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /lzo-2.09/examples/dict.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenNuvoton/NUC980_Linux_Applications/HEAD/lzo-2.09/examples/dict.c -------------------------------------------------------------------------------- /lzo-2.09/examples/lzopack.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenNuvoton/NUC980_Linux_Applications/HEAD/lzo-2.09/examples/lzopack.c -------------------------------------------------------------------------------- /lzo-2.09/examples/overlap.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenNuvoton/NUC980_Linux_Applications/HEAD/lzo-2.09/examples/overlap.c -------------------------------------------------------------------------------- /lzo-2.09/examples/portab.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenNuvoton/NUC980_Linux_Applications/HEAD/lzo-2.09/examples/portab.h -------------------------------------------------------------------------------- /lzo-2.09/examples/precomp.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenNuvoton/NUC980_Linux_Applications/HEAD/lzo-2.09/examples/precomp.c -------------------------------------------------------------------------------- /lzo-2.09/examples/simple.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenNuvoton/NUC980_Linux_Applications/HEAD/lzo-2.09/examples/simple.c -------------------------------------------------------------------------------- /lzo-2.09/include/lzo/lzo1.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenNuvoton/NUC980_Linux_Applications/HEAD/lzo-2.09/include/lzo/lzo1.h -------------------------------------------------------------------------------- /lzo-2.09/libtool: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenNuvoton/NUC980_Linux_Applications/HEAD/lzo-2.09/libtool -------------------------------------------------------------------------------- /lzo-2.09/lzotest/.deps/.dirstamp: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /lzo-2.09/lzotest/.dirstamp: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /lzo-2.09/lzotest/asm.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenNuvoton/NUC980_Linux_Applications/HEAD/lzo-2.09/lzotest/asm.h -------------------------------------------------------------------------------- /lzo-2.09/lzotest/db.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenNuvoton/NUC980_Linux_Applications/HEAD/lzo-2.09/lzotest/db.h -------------------------------------------------------------------------------- /lzo-2.09/lzotest/lzotest.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenNuvoton/NUC980_Linux_Applications/HEAD/lzo-2.09/lzotest/lzotest.c -------------------------------------------------------------------------------- /lzo-2.09/lzotest/wrap.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenNuvoton/NUC980_Linux_Applications/HEAD/lzo-2.09/lzotest/wrap.h -------------------------------------------------------------------------------- /lzo-2.09/lzotest/wrapmisc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenNuvoton/NUC980_Linux_Applications/HEAD/lzo-2.09/lzotest/wrapmisc.h -------------------------------------------------------------------------------- /lzo-2.09/minilzo/.deps/.dirstamp: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /lzo-2.09/minilzo/.dirstamp: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /lzo-2.09/minilzo/README.LZO: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenNuvoton/NUC980_Linux_Applications/HEAD/lzo-2.09/minilzo/README.LZO -------------------------------------------------------------------------------- /lzo-2.09/minilzo/minilzo.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenNuvoton/NUC980_Linux_Applications/HEAD/lzo-2.09/minilzo/minilzo.c -------------------------------------------------------------------------------- /lzo-2.09/minilzo/minilzo.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenNuvoton/NUC980_Linux_Applications/HEAD/lzo-2.09/minilzo/minilzo.h -------------------------------------------------------------------------------- /lzo-2.09/minilzo/testmini.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenNuvoton/NUC980_Linux_Applications/HEAD/lzo-2.09/minilzo/testmini.c -------------------------------------------------------------------------------- /lzo-2.09/src/.deps/.dirstamp: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /lzo-2.09/src/.deps/lzo1.Plo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenNuvoton/NUC980_Linux_Applications/HEAD/lzo-2.09/src/.deps/lzo1.Plo -------------------------------------------------------------------------------- /lzo-2.09/src/.dirstamp: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /lzo-2.09/src/compr1b.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenNuvoton/NUC980_Linux_Applications/HEAD/lzo-2.09/src/compr1b.h -------------------------------------------------------------------------------- /lzo-2.09/src/compr1c.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenNuvoton/NUC980_Linux_Applications/HEAD/lzo-2.09/src/compr1c.h -------------------------------------------------------------------------------- /lzo-2.09/src/config1.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenNuvoton/NUC980_Linux_Applications/HEAD/lzo-2.09/src/config1.h -------------------------------------------------------------------------------- /lzo-2.09/src/config1a.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenNuvoton/NUC980_Linux_Applications/HEAD/lzo-2.09/src/config1a.h -------------------------------------------------------------------------------- /lzo-2.09/src/config1b.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenNuvoton/NUC980_Linux_Applications/HEAD/lzo-2.09/src/config1b.h -------------------------------------------------------------------------------- /lzo-2.09/src/config1c.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenNuvoton/NUC980_Linux_Applications/HEAD/lzo-2.09/src/config1c.h -------------------------------------------------------------------------------- /lzo-2.09/src/config1f.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenNuvoton/NUC980_Linux_Applications/HEAD/lzo-2.09/src/config1f.h -------------------------------------------------------------------------------- /lzo-2.09/src/config1x.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenNuvoton/NUC980_Linux_Applications/HEAD/lzo-2.09/src/config1x.h -------------------------------------------------------------------------------- /lzo-2.09/src/config1y.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenNuvoton/NUC980_Linux_Applications/HEAD/lzo-2.09/src/config1y.h -------------------------------------------------------------------------------- /lzo-2.09/src/config1z.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenNuvoton/NUC980_Linux_Applications/HEAD/lzo-2.09/src/config1z.h -------------------------------------------------------------------------------- /lzo-2.09/src/config2a.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenNuvoton/NUC980_Linux_Applications/HEAD/lzo-2.09/src/config2a.h -------------------------------------------------------------------------------- /lzo-2.09/src/lzo1.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenNuvoton/NUC980_Linux_Applications/HEAD/lzo-2.09/src/lzo1.c -------------------------------------------------------------------------------- /lzo-2.09/src/lzo1_99.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenNuvoton/NUC980_Linux_Applications/HEAD/lzo-2.09/src/lzo1_99.c -------------------------------------------------------------------------------- /lzo-2.09/src/lzo1_cm.ch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenNuvoton/NUC980_Linux_Applications/HEAD/lzo-2.09/src/lzo1_cm.ch -------------------------------------------------------------------------------- /lzo-2.09/src/lzo1_d.ch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenNuvoton/NUC980_Linux_Applications/HEAD/lzo-2.09/src/lzo1_d.ch -------------------------------------------------------------------------------- /lzo-2.09/src/lzo1a.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenNuvoton/NUC980_Linux_Applications/HEAD/lzo-2.09/src/lzo1a.c -------------------------------------------------------------------------------- /lzo-2.09/src/lzo1a_99.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenNuvoton/NUC980_Linux_Applications/HEAD/lzo-2.09/src/lzo1a_99.c -------------------------------------------------------------------------------- /lzo-2.09/src/lzo1a_cm.ch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenNuvoton/NUC980_Linux_Applications/HEAD/lzo-2.09/src/lzo1a_cm.ch -------------------------------------------------------------------------------- /lzo-2.09/src/lzo1a_cr.ch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenNuvoton/NUC980_Linux_Applications/HEAD/lzo-2.09/src/lzo1a_cr.ch -------------------------------------------------------------------------------- /lzo-2.09/src/lzo1a_de.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenNuvoton/NUC980_Linux_Applications/HEAD/lzo-2.09/src/lzo1a_de.h -------------------------------------------------------------------------------- /lzo-2.09/src/lzo1b_1.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenNuvoton/NUC980_Linux_Applications/HEAD/lzo-2.09/src/lzo1b_1.c -------------------------------------------------------------------------------- /lzo-2.09/src/lzo1b_2.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenNuvoton/NUC980_Linux_Applications/HEAD/lzo-2.09/src/lzo1b_2.c -------------------------------------------------------------------------------- /lzo-2.09/src/lzo1b_3.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenNuvoton/NUC980_Linux_Applications/HEAD/lzo-2.09/src/lzo1b_3.c -------------------------------------------------------------------------------- /lzo-2.09/src/lzo1b_4.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenNuvoton/NUC980_Linux_Applications/HEAD/lzo-2.09/src/lzo1b_4.c -------------------------------------------------------------------------------- /lzo-2.09/src/lzo1b_5.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenNuvoton/NUC980_Linux_Applications/HEAD/lzo-2.09/src/lzo1b_5.c -------------------------------------------------------------------------------- /lzo-2.09/src/lzo1b_6.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenNuvoton/NUC980_Linux_Applications/HEAD/lzo-2.09/src/lzo1b_6.c -------------------------------------------------------------------------------- /lzo-2.09/src/lzo1b_7.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenNuvoton/NUC980_Linux_Applications/HEAD/lzo-2.09/src/lzo1b_7.c -------------------------------------------------------------------------------- /lzo-2.09/src/lzo1b_8.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenNuvoton/NUC980_Linux_Applications/HEAD/lzo-2.09/src/lzo1b_8.c -------------------------------------------------------------------------------- /lzo-2.09/src/lzo1b_9.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenNuvoton/NUC980_Linux_Applications/HEAD/lzo-2.09/src/lzo1b_9.c -------------------------------------------------------------------------------- /lzo-2.09/src/lzo1b_99.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenNuvoton/NUC980_Linux_Applications/HEAD/lzo-2.09/src/lzo1b_99.c -------------------------------------------------------------------------------- /lzo-2.09/src/lzo1b_9x.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenNuvoton/NUC980_Linux_Applications/HEAD/lzo-2.09/src/lzo1b_9x.c -------------------------------------------------------------------------------- /lzo-2.09/src/lzo1b_c.ch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenNuvoton/NUC980_Linux_Applications/HEAD/lzo-2.09/src/lzo1b_c.ch -------------------------------------------------------------------------------- /lzo-2.09/src/lzo1b_cc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenNuvoton/NUC980_Linux_Applications/HEAD/lzo-2.09/src/lzo1b_cc.c -------------------------------------------------------------------------------- /lzo-2.09/src/lzo1b_cc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenNuvoton/NUC980_Linux_Applications/HEAD/lzo-2.09/src/lzo1b_cc.h -------------------------------------------------------------------------------- /lzo-2.09/src/lzo1b_cm.ch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenNuvoton/NUC980_Linux_Applications/HEAD/lzo-2.09/src/lzo1b_cm.ch -------------------------------------------------------------------------------- /lzo-2.09/src/lzo1b_cr.ch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenNuvoton/NUC980_Linux_Applications/HEAD/lzo-2.09/src/lzo1b_cr.ch -------------------------------------------------------------------------------- /lzo-2.09/src/lzo1b_d.ch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenNuvoton/NUC980_Linux_Applications/HEAD/lzo-2.09/src/lzo1b_d.ch -------------------------------------------------------------------------------- /lzo-2.09/src/lzo1b_d1.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenNuvoton/NUC980_Linux_Applications/HEAD/lzo-2.09/src/lzo1b_d1.c -------------------------------------------------------------------------------- /lzo-2.09/src/lzo1b_d2.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenNuvoton/NUC980_Linux_Applications/HEAD/lzo-2.09/src/lzo1b_d2.c -------------------------------------------------------------------------------- /lzo-2.09/src/lzo1b_de.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenNuvoton/NUC980_Linux_Applications/HEAD/lzo-2.09/src/lzo1b_de.h -------------------------------------------------------------------------------- /lzo-2.09/src/lzo1b_r.ch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenNuvoton/NUC980_Linux_Applications/HEAD/lzo-2.09/src/lzo1b_r.ch -------------------------------------------------------------------------------- /lzo-2.09/src/lzo1b_rr.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenNuvoton/NUC980_Linux_Applications/HEAD/lzo-2.09/src/lzo1b_rr.c -------------------------------------------------------------------------------- /lzo-2.09/src/lzo1b_sm.ch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenNuvoton/NUC980_Linux_Applications/HEAD/lzo-2.09/src/lzo1b_sm.ch -------------------------------------------------------------------------------- /lzo-2.09/src/lzo1b_tm.ch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenNuvoton/NUC980_Linux_Applications/HEAD/lzo-2.09/src/lzo1b_tm.ch -------------------------------------------------------------------------------- /lzo-2.09/src/lzo1b_xx.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenNuvoton/NUC980_Linux_Applications/HEAD/lzo-2.09/src/lzo1b_xx.c -------------------------------------------------------------------------------- /lzo-2.09/src/lzo1c_1.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenNuvoton/NUC980_Linux_Applications/HEAD/lzo-2.09/src/lzo1c_1.c -------------------------------------------------------------------------------- /lzo-2.09/src/lzo1c_2.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenNuvoton/NUC980_Linux_Applications/HEAD/lzo-2.09/src/lzo1c_2.c -------------------------------------------------------------------------------- /lzo-2.09/src/lzo1c_3.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenNuvoton/NUC980_Linux_Applications/HEAD/lzo-2.09/src/lzo1c_3.c -------------------------------------------------------------------------------- /lzo-2.09/src/lzo1c_4.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenNuvoton/NUC980_Linux_Applications/HEAD/lzo-2.09/src/lzo1c_4.c -------------------------------------------------------------------------------- /lzo-2.09/src/lzo1c_5.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenNuvoton/NUC980_Linux_Applications/HEAD/lzo-2.09/src/lzo1c_5.c -------------------------------------------------------------------------------- /lzo-2.09/src/lzo1c_6.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenNuvoton/NUC980_Linux_Applications/HEAD/lzo-2.09/src/lzo1c_6.c -------------------------------------------------------------------------------- /lzo-2.09/src/lzo1c_7.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenNuvoton/NUC980_Linux_Applications/HEAD/lzo-2.09/src/lzo1c_7.c -------------------------------------------------------------------------------- /lzo-2.09/src/lzo1c_8.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenNuvoton/NUC980_Linux_Applications/HEAD/lzo-2.09/src/lzo1c_8.c -------------------------------------------------------------------------------- /lzo-2.09/src/lzo1c_9.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenNuvoton/NUC980_Linux_Applications/HEAD/lzo-2.09/src/lzo1c_9.c -------------------------------------------------------------------------------- /lzo-2.09/src/lzo1c_99.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenNuvoton/NUC980_Linux_Applications/HEAD/lzo-2.09/src/lzo1c_99.c -------------------------------------------------------------------------------- /lzo-2.09/src/lzo1c_9x.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenNuvoton/NUC980_Linux_Applications/HEAD/lzo-2.09/src/lzo1c_9x.c -------------------------------------------------------------------------------- /lzo-2.09/src/lzo1c_cc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenNuvoton/NUC980_Linux_Applications/HEAD/lzo-2.09/src/lzo1c_cc.c -------------------------------------------------------------------------------- /lzo-2.09/src/lzo1c_cc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenNuvoton/NUC980_Linux_Applications/HEAD/lzo-2.09/src/lzo1c_cc.h -------------------------------------------------------------------------------- /lzo-2.09/src/lzo1c_d1.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenNuvoton/NUC980_Linux_Applications/HEAD/lzo-2.09/src/lzo1c_d1.c -------------------------------------------------------------------------------- /lzo-2.09/src/lzo1c_d2.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenNuvoton/NUC980_Linux_Applications/HEAD/lzo-2.09/src/lzo1c_d2.c -------------------------------------------------------------------------------- /lzo-2.09/src/lzo1c_rr.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenNuvoton/NUC980_Linux_Applications/HEAD/lzo-2.09/src/lzo1c_rr.c -------------------------------------------------------------------------------- /lzo-2.09/src/lzo1c_xx.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenNuvoton/NUC980_Linux_Applications/HEAD/lzo-2.09/src/lzo1c_xx.c -------------------------------------------------------------------------------- /lzo-2.09/src/lzo1f_1.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenNuvoton/NUC980_Linux_Applications/HEAD/lzo-2.09/src/lzo1f_1.c -------------------------------------------------------------------------------- /lzo-2.09/src/lzo1f_9x.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenNuvoton/NUC980_Linux_Applications/HEAD/lzo-2.09/src/lzo1f_9x.c -------------------------------------------------------------------------------- /lzo-2.09/src/lzo1f_d.ch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenNuvoton/NUC980_Linux_Applications/HEAD/lzo-2.09/src/lzo1f_d.ch -------------------------------------------------------------------------------- /lzo-2.09/src/lzo1f_d1.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenNuvoton/NUC980_Linux_Applications/HEAD/lzo-2.09/src/lzo1f_d1.c -------------------------------------------------------------------------------- /lzo-2.09/src/lzo1f_d2.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenNuvoton/NUC980_Linux_Applications/HEAD/lzo-2.09/src/lzo1f_d2.c -------------------------------------------------------------------------------- /lzo-2.09/src/lzo1x_1.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenNuvoton/NUC980_Linux_Applications/HEAD/lzo-2.09/src/lzo1x_1.c -------------------------------------------------------------------------------- /lzo-2.09/src/lzo1x_1k.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenNuvoton/NUC980_Linux_Applications/HEAD/lzo-2.09/src/lzo1x_1k.c -------------------------------------------------------------------------------- /lzo-2.09/src/lzo1x_1l.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenNuvoton/NUC980_Linux_Applications/HEAD/lzo-2.09/src/lzo1x_1l.c -------------------------------------------------------------------------------- /lzo-2.09/src/lzo1x_1o.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenNuvoton/NUC980_Linux_Applications/HEAD/lzo-2.09/src/lzo1x_1o.c -------------------------------------------------------------------------------- /lzo-2.09/src/lzo1x_9x.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenNuvoton/NUC980_Linux_Applications/HEAD/lzo-2.09/src/lzo1x_9x.c -------------------------------------------------------------------------------- /lzo-2.09/src/lzo1x_c.ch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenNuvoton/NUC980_Linux_Applications/HEAD/lzo-2.09/src/lzo1x_c.ch -------------------------------------------------------------------------------- /lzo-2.09/src/lzo1x_d.ch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenNuvoton/NUC980_Linux_Applications/HEAD/lzo-2.09/src/lzo1x_d.ch -------------------------------------------------------------------------------- /lzo-2.09/src/lzo1x_d1.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenNuvoton/NUC980_Linux_Applications/HEAD/lzo-2.09/src/lzo1x_d1.c -------------------------------------------------------------------------------- /lzo-2.09/src/lzo1x_d2.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenNuvoton/NUC980_Linux_Applications/HEAD/lzo-2.09/src/lzo1x_d2.c -------------------------------------------------------------------------------- /lzo-2.09/src/lzo1x_d3.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenNuvoton/NUC980_Linux_Applications/HEAD/lzo-2.09/src/lzo1x_d3.c -------------------------------------------------------------------------------- /lzo-2.09/src/lzo1x_o.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenNuvoton/NUC980_Linux_Applications/HEAD/lzo-2.09/src/lzo1x_o.c -------------------------------------------------------------------------------- /lzo-2.09/src/lzo1x_oo.ch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenNuvoton/NUC980_Linux_Applications/HEAD/lzo-2.09/src/lzo1x_oo.ch -------------------------------------------------------------------------------- /lzo-2.09/src/lzo1y_1.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenNuvoton/NUC980_Linux_Applications/HEAD/lzo-2.09/src/lzo1y_1.c -------------------------------------------------------------------------------- /lzo-2.09/src/lzo1y_9x.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenNuvoton/NUC980_Linux_Applications/HEAD/lzo-2.09/src/lzo1y_9x.c -------------------------------------------------------------------------------- /lzo-2.09/src/lzo1y_d1.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenNuvoton/NUC980_Linux_Applications/HEAD/lzo-2.09/src/lzo1y_d1.c -------------------------------------------------------------------------------- /lzo-2.09/src/lzo1y_d2.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenNuvoton/NUC980_Linux_Applications/HEAD/lzo-2.09/src/lzo1y_d2.c -------------------------------------------------------------------------------- /lzo-2.09/src/lzo1y_d3.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenNuvoton/NUC980_Linux_Applications/HEAD/lzo-2.09/src/lzo1y_d3.c -------------------------------------------------------------------------------- /lzo-2.09/src/lzo1y_o.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenNuvoton/NUC980_Linux_Applications/HEAD/lzo-2.09/src/lzo1y_o.c -------------------------------------------------------------------------------- /lzo-2.09/src/lzo1z_9x.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenNuvoton/NUC980_Linux_Applications/HEAD/lzo-2.09/src/lzo1z_9x.c -------------------------------------------------------------------------------- /lzo-2.09/src/lzo1z_d1.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenNuvoton/NUC980_Linux_Applications/HEAD/lzo-2.09/src/lzo1z_d1.c -------------------------------------------------------------------------------- /lzo-2.09/src/lzo1z_d2.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenNuvoton/NUC980_Linux_Applications/HEAD/lzo-2.09/src/lzo1z_d2.c -------------------------------------------------------------------------------- /lzo-2.09/src/lzo1z_d3.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenNuvoton/NUC980_Linux_Applications/HEAD/lzo-2.09/src/lzo1z_d3.c -------------------------------------------------------------------------------- /lzo-2.09/src/lzo2a_9x.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenNuvoton/NUC980_Linux_Applications/HEAD/lzo-2.09/src/lzo2a_9x.c -------------------------------------------------------------------------------- /lzo-2.09/src/lzo2a_d.ch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenNuvoton/NUC980_Linux_Applications/HEAD/lzo-2.09/src/lzo2a_d.ch -------------------------------------------------------------------------------- /lzo-2.09/src/lzo2a_d1.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenNuvoton/NUC980_Linux_Applications/HEAD/lzo-2.09/src/lzo2a_d1.c -------------------------------------------------------------------------------- /lzo-2.09/src/lzo2a_d2.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenNuvoton/NUC980_Linux_Applications/HEAD/lzo-2.09/src/lzo2a_d2.c -------------------------------------------------------------------------------- /lzo-2.09/src/lzo_conf.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenNuvoton/NUC980_Linux_Applications/HEAD/lzo-2.09/src/lzo_conf.h -------------------------------------------------------------------------------- /lzo-2.09/src/lzo_crc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenNuvoton/NUC980_Linux_Applications/HEAD/lzo-2.09/src/lzo_crc.c -------------------------------------------------------------------------------- /lzo-2.09/src/lzo_dict.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenNuvoton/NUC980_Linux_Applications/HEAD/lzo-2.09/src/lzo_dict.h -------------------------------------------------------------------------------- /lzo-2.09/src/lzo_dll.ch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenNuvoton/NUC980_Linux_Applications/HEAD/lzo-2.09/src/lzo_dll.ch -------------------------------------------------------------------------------- /lzo-2.09/src/lzo_func.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenNuvoton/NUC980_Linux_Applications/HEAD/lzo-2.09/src/lzo_func.h -------------------------------------------------------------------------------- /lzo-2.09/src/lzo_init.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenNuvoton/NUC980_Linux_Applications/HEAD/lzo-2.09/src/lzo_init.c -------------------------------------------------------------------------------- /lzo-2.09/src/lzo_mchw.ch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenNuvoton/NUC980_Linux_Applications/HEAD/lzo-2.09/src/lzo_mchw.ch -------------------------------------------------------------------------------- /lzo-2.09/src/lzo_ptr.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenNuvoton/NUC980_Linux_Applications/HEAD/lzo-2.09/src/lzo_ptr.c -------------------------------------------------------------------------------- /lzo-2.09/src/lzo_ptr.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenNuvoton/NUC980_Linux_Applications/HEAD/lzo-2.09/src/lzo_ptr.h -------------------------------------------------------------------------------- /lzo-2.09/src/lzo_str.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenNuvoton/NUC980_Linux_Applications/HEAD/lzo-2.09/src/lzo_str.c -------------------------------------------------------------------------------- /lzo-2.09/src/lzo_supp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenNuvoton/NUC980_Linux_Applications/HEAD/lzo-2.09/src/lzo_supp.h -------------------------------------------------------------------------------- /lzo-2.09/src/lzo_swd.ch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenNuvoton/NUC980_Linux_Applications/HEAD/lzo-2.09/src/lzo_swd.ch -------------------------------------------------------------------------------- /lzo-2.09/src/lzo_util.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenNuvoton/NUC980_Linux_Applications/HEAD/lzo-2.09/src/lzo_util.c -------------------------------------------------------------------------------- /lzo-2.09/src/stats1a.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenNuvoton/NUC980_Linux_Applications/HEAD/lzo-2.09/src/stats1a.h -------------------------------------------------------------------------------- /lzo-2.09/src/stats1b.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenNuvoton/NUC980_Linux_Applications/HEAD/lzo-2.09/src/stats1b.h -------------------------------------------------------------------------------- /lzo-2.09/src/stats1c.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenNuvoton/NUC980_Linux_Applications/HEAD/lzo-2.09/src/stats1c.h -------------------------------------------------------------------------------- /lzo-2.09/stamp-h1: -------------------------------------------------------------------------------- 1 | timestamp for config.h 2 | -------------------------------------------------------------------------------- /lzo-2.09/tests/.deps/.dirstamp: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /lzo-2.09/tests/.dirstamp: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /lzo-2.09/tests/align.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenNuvoton/NUC980_Linux_Applications/HEAD/lzo-2.09/tests/align.c -------------------------------------------------------------------------------- /lzo-2.09/tests/chksum.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenNuvoton/NUC980_Linux_Applications/HEAD/lzo-2.09/tests/chksum.c -------------------------------------------------------------------------------- /lzo-2.09/tests/promote.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenNuvoton/NUC980_Linux_Applications/HEAD/lzo-2.09/tests/promote.c -------------------------------------------------------------------------------- /lzo-2.09/tests/sizes.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenNuvoton/NUC980_Linux_Applications/HEAD/lzo-2.09/tests/sizes.c -------------------------------------------------------------------------------- /lzo-2.09/util/check.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenNuvoton/NUC980_Linux_Applications/HEAD/lzo-2.09/util/check.sh -------------------------------------------------------------------------------- /lzo-2.09/util/checkasm.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenNuvoton/NUC980_Linux_Applications/HEAD/lzo-2.09/util/checkasm.sh -------------------------------------------------------------------------------- /lzo-2.09/util/notime.pl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenNuvoton/NUC980_Linux_Applications/HEAD/lzo-2.09/util/notime.pl -------------------------------------------------------------------------------- /lzo-2.09/util/overlap.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenNuvoton/NUC980_Linux_Applications/HEAD/lzo-2.09/util/overlap.sh -------------------------------------------------------------------------------- /lzo-2.09/util/shortf.pl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenNuvoton/NUC980_Linux_Applications/HEAD/lzo-2.09/util/shortf.pl -------------------------------------------------------------------------------- /lzo-2.09/util/table.pl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenNuvoton/NUC980_Linux_Applications/HEAD/lzo-2.09/util/table.pl -------------------------------------------------------------------------------- /lzo-2.09/util/uncompr.pl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenNuvoton/NUC980_Linux_Applications/HEAD/lzo-2.09/util/uncompr.pl -------------------------------------------------------------------------------- /mtd-utils/COPYING: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenNuvoton/NUC980_Linux_Applications/HEAD/mtd-utils/COPYING -------------------------------------------------------------------------------- /mtd-utils/MAKEDEV: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenNuvoton/NUC980_Linux_Applications/HEAD/mtd-utils/MAKEDEV -------------------------------------------------------------------------------- /mtd-utils/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenNuvoton/NUC980_Linux_Applications/HEAD/mtd-utils/Makefile -------------------------------------------------------------------------------- /mtd-utils/arm-linux/flashcp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenNuvoton/NUC980_Linux_Applications/HEAD/mtd-utils/arm-linux/flashcp -------------------------------------------------------------------------------- /mtd-utils/arm-linux/include/version.h: -------------------------------------------------------------------------------- 1 | #define VERSION "1.5.1" 2 | -------------------------------------------------------------------------------- /mtd-utils/arm-linux/rfddump: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenNuvoton/NUC980_Linux_Applications/HEAD/mtd-utils/arm-linux/rfddump -------------------------------------------------------------------------------- /mtd-utils/arm-linux/sumtool: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenNuvoton/NUC980_Linux_Applications/HEAD/mtd-utils/arm-linux/sumtool -------------------------------------------------------------------------------- /mtd-utils/common.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenNuvoton/NUC980_Linux_Applications/HEAD/mtd-utils/common.mk -------------------------------------------------------------------------------- /mtd-utils/compr.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenNuvoton/NUC980_Linux_Applications/HEAD/mtd-utils/compr.c -------------------------------------------------------------------------------- /mtd-utils/compr.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenNuvoton/NUC980_Linux_Applications/HEAD/mtd-utils/compr.h -------------------------------------------------------------------------------- /mtd-utils/compr_lzo.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenNuvoton/NUC980_Linux_Applications/HEAD/mtd-utils/compr_lzo.c -------------------------------------------------------------------------------- /mtd-utils/compr_rtime.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenNuvoton/NUC980_Linux_Applications/HEAD/mtd-utils/compr_rtime.c -------------------------------------------------------------------------------- /mtd-utils/compr_zlib.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenNuvoton/NUC980_Linux_Applications/HEAD/mtd-utils/compr_zlib.c -------------------------------------------------------------------------------- /mtd-utils/device_table.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenNuvoton/NUC980_Linux_Applications/HEAD/mtd-utils/device_table.txt -------------------------------------------------------------------------------- /mtd-utils/doc_loadbios.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenNuvoton/NUC980_Linux_Applications/HEAD/mtd-utils/doc_loadbios.c -------------------------------------------------------------------------------- /mtd-utils/docfdisk.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenNuvoton/NUC980_Linux_Applications/HEAD/mtd-utils/docfdisk.c -------------------------------------------------------------------------------- /mtd-utils/fectest.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenNuvoton/NUC980_Linux_Applications/HEAD/mtd-utils/fectest.c -------------------------------------------------------------------------------- /mtd-utils/flash_erase.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenNuvoton/NUC980_Linux_Applications/HEAD/mtd-utils/flash_erase.c -------------------------------------------------------------------------------- /mtd-utils/flash_eraseall: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenNuvoton/NUC980_Linux_Applications/HEAD/mtd-utils/flash_eraseall -------------------------------------------------------------------------------- /mtd-utils/flash_lock.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenNuvoton/NUC980_Linux_Applications/HEAD/mtd-utils/flash_lock.c -------------------------------------------------------------------------------- /mtd-utils/flash_otp_dump.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenNuvoton/NUC980_Linux_Applications/HEAD/mtd-utils/flash_otp_dump.c -------------------------------------------------------------------------------- /mtd-utils/flash_otp_info.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenNuvoton/NUC980_Linux_Applications/HEAD/mtd-utils/flash_otp_info.c -------------------------------------------------------------------------------- /mtd-utils/flash_otp_lock.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenNuvoton/NUC980_Linux_Applications/HEAD/mtd-utils/flash_otp_lock.c -------------------------------------------------------------------------------- /mtd-utils/flash_otp_write.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenNuvoton/NUC980_Linux_Applications/HEAD/mtd-utils/flash_otp_write.c -------------------------------------------------------------------------------- /mtd-utils/flash_unlock.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenNuvoton/NUC980_Linux_Applications/HEAD/mtd-utils/flash_unlock.c -------------------------------------------------------------------------------- /mtd-utils/flashcp.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenNuvoton/NUC980_Linux_Applications/HEAD/mtd-utils/flashcp.c -------------------------------------------------------------------------------- /mtd-utils/ftl_check.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenNuvoton/NUC980_Linux_Applications/HEAD/mtd-utils/ftl_check.c -------------------------------------------------------------------------------- /mtd-utils/ftl_format.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenNuvoton/NUC980_Linux_Applications/HEAD/mtd-utils/ftl_format.c -------------------------------------------------------------------------------- /mtd-utils/include/common.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenNuvoton/NUC980_Linux_Applications/HEAD/mtd-utils/include/common.h -------------------------------------------------------------------------------- /mtd-utils/include/crc32.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenNuvoton/NUC980_Linux_Applications/HEAD/mtd-utils/include/crc32.h -------------------------------------------------------------------------------- /mtd-utils/include/libmtd.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenNuvoton/NUC980_Linux_Applications/HEAD/mtd-utils/include/libmtd.h -------------------------------------------------------------------------------- /mtd-utils/include/xalloc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenNuvoton/NUC980_Linux_Applications/HEAD/mtd-utils/include/xalloc.h -------------------------------------------------------------------------------- /mtd-utils/jffs-dump.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenNuvoton/NUC980_Linux_Applications/HEAD/mtd-utils/jffs-dump.c -------------------------------------------------------------------------------- /mtd-utils/jffs2dump.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenNuvoton/NUC980_Linux_Applications/HEAD/mtd-utils/jffs2dump.c -------------------------------------------------------------------------------- /mtd-utils/jffs2reader.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenNuvoton/NUC980_Linux_Applications/HEAD/mtd-utils/jffs2reader.c -------------------------------------------------------------------------------- /mtd-utils/lib/libcrc32.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenNuvoton/NUC980_Linux_Applications/HEAD/mtd-utils/lib/libcrc32.c -------------------------------------------------------------------------------- /mtd-utils/lib/libfec.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenNuvoton/NUC980_Linux_Applications/HEAD/mtd-utils/lib/libfec.c -------------------------------------------------------------------------------- /mtd-utils/lib/libmtd.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenNuvoton/NUC980_Linux_Applications/HEAD/mtd-utils/lib/libmtd.c -------------------------------------------------------------------------------- /mtd-utils/lib/libmtd_int.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenNuvoton/NUC980_Linux_Applications/HEAD/mtd-utils/lib/libmtd_int.h -------------------------------------------------------------------------------- /mtd-utils/load_nandsim.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenNuvoton/NUC980_Linux_Applications/HEAD/mtd-utils/load_nandsim.sh -------------------------------------------------------------------------------- /mtd-utils/make_a_release.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenNuvoton/NUC980_Linux_Applications/HEAD/mtd-utils/make_a_release.sh -------------------------------------------------------------------------------- /mtd-utils/mcast_image.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenNuvoton/NUC980_Linux_Applications/HEAD/mtd-utils/mcast_image.h -------------------------------------------------------------------------------- /mtd-utils/mkfs.jffs2.1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenNuvoton/NUC980_Linux_Applications/HEAD/mtd-utils/mkfs.jffs2.1 -------------------------------------------------------------------------------- /mtd-utils/mkfs.jffs2.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenNuvoton/NUC980_Linux_Applications/HEAD/mtd-utils/mkfs.jffs2.c -------------------------------------------------------------------------------- /mtd-utils/mkfs.ubifs/.gitignore: -------------------------------------------------------------------------------- 1 | /mkfs.ubifs 2 | -------------------------------------------------------------------------------- /mtd-utils/mkfs.ubifs/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenNuvoton/NUC980_Linux_Applications/HEAD/mtd-utils/mkfs.ubifs/README -------------------------------------------------------------------------------- /mtd-utils/mkfs.ubifs/defs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenNuvoton/NUC980_Linux_Applications/HEAD/mtd-utils/mkfs.ubifs/defs.h -------------------------------------------------------------------------------- /mtd-utils/mkfs.ubifs/key.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenNuvoton/NUC980_Linux_Applications/HEAD/mtd-utils/mkfs.ubifs/key.h -------------------------------------------------------------------------------- /mtd-utils/mkfs.ubifs/lpt.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenNuvoton/NUC980_Linux_Applications/HEAD/mtd-utils/mkfs.ubifs/lpt.c -------------------------------------------------------------------------------- /mtd-utils/mkfs.ubifs/lpt.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenNuvoton/NUC980_Linux_Applications/HEAD/mtd-utils/mkfs.ubifs/lpt.h -------------------------------------------------------------------------------- /mtd-utils/mtd-utils.spec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenNuvoton/NUC980_Linux_Applications/HEAD/mtd-utils/mtd-utils.spec -------------------------------------------------------------------------------- /mtd-utils/mtd_debug.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenNuvoton/NUC980_Linux_Applications/HEAD/mtd-utils/mtd_debug.c -------------------------------------------------------------------------------- /mtd-utils/nanddump.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenNuvoton/NUC980_Linux_Applications/HEAD/mtd-utils/nanddump.c -------------------------------------------------------------------------------- /mtd-utils/nandtest.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenNuvoton/NUC980_Linux_Applications/HEAD/mtd-utils/nandtest.c -------------------------------------------------------------------------------- /mtd-utils/nandwrite.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenNuvoton/NUC980_Linux_Applications/HEAD/mtd-utils/nandwrite.c -------------------------------------------------------------------------------- /mtd-utils/nftl_format.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenNuvoton/NUC980_Linux_Applications/HEAD/mtd-utils/nftl_format.c -------------------------------------------------------------------------------- /mtd-utils/nftldump.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenNuvoton/NUC980_Linux_Applications/HEAD/mtd-utils/nftldump.c -------------------------------------------------------------------------------- /mtd-utils/rbtree.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenNuvoton/NUC980_Linux_Applications/HEAD/mtd-utils/rbtree.c -------------------------------------------------------------------------------- /mtd-utils/rbtree.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenNuvoton/NUC980_Linux_Applications/HEAD/mtd-utils/rbtree.h -------------------------------------------------------------------------------- /mtd-utils/recv_image.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenNuvoton/NUC980_Linux_Applications/HEAD/mtd-utils/recv_image.c -------------------------------------------------------------------------------- /mtd-utils/rfddump.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenNuvoton/NUC980_Linux_Applications/HEAD/mtd-utils/rfddump.c -------------------------------------------------------------------------------- /mtd-utils/rfdformat.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenNuvoton/NUC980_Linux_Applications/HEAD/mtd-utils/rfdformat.c -------------------------------------------------------------------------------- /mtd-utils/serve_image.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenNuvoton/NUC980_Linux_Applications/HEAD/mtd-utils/serve_image.c -------------------------------------------------------------------------------- /mtd-utils/summary.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenNuvoton/NUC980_Linux_Applications/HEAD/mtd-utils/summary.h -------------------------------------------------------------------------------- /mtd-utils/sumtool.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenNuvoton/NUC980_Linux_Applications/HEAD/mtd-utils/sumtool.c -------------------------------------------------------------------------------- /mtd-utils/tests/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenNuvoton/NUC980_Linux_Applications/HEAD/mtd-utils/tests/Makefile -------------------------------------------------------------------------------- /mtd-utils/tests/checkfs/.gitignore: -------------------------------------------------------------------------------- 1 | /checkfs 2 | /makefiles 3 | -------------------------------------------------------------------------------- /mtd-utils/tests/fs-tests/integrity/.gitignore: -------------------------------------------------------------------------------- 1 | /integck 2 | -------------------------------------------------------------------------------- /mtd-utils/tests/fs-tests/utils/.gitignore: -------------------------------------------------------------------------------- 1 | /free_space 2 | /fstest_monitor 3 | -------------------------------------------------------------------------------- /openssl-1.1.1/-: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenNuvoton/NUC980_Linux_Applications/HEAD/openssl-1.1.1/- -------------------------------------------------------------------------------- /openssl-1.1.1/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenNuvoton/NUC980_Linux_Applications/HEAD/openssl-1.1.1/.gitignore -------------------------------------------------------------------------------- /openssl-1.1.1/.gitmodules: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenNuvoton/NUC980_Linux_Applications/HEAD/openssl-1.1.1/.gitmodules -------------------------------------------------------------------------------- /openssl-1.1.1/.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenNuvoton/NUC980_Linux_Applications/HEAD/openssl-1.1.1/.travis.yml -------------------------------------------------------------------------------- /openssl-1.1.1/AUTHORS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenNuvoton/NUC980_Linux_Applications/HEAD/openssl-1.1.1/AUTHORS -------------------------------------------------------------------------------- /openssl-1.1.1/CHANGES: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenNuvoton/NUC980_Linux_Applications/HEAD/openssl-1.1.1/CHANGES -------------------------------------------------------------------------------- /openssl-1.1.1/CONTRIBUTING: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenNuvoton/NUC980_Linux_Applications/HEAD/openssl-1.1.1/CONTRIBUTING -------------------------------------------------------------------------------- /openssl-1.1.1/Configure: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenNuvoton/NUC980_Linux_Applications/HEAD/openssl-1.1.1/Configure -------------------------------------------------------------------------------- /openssl-1.1.1/FAQ: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenNuvoton/NUC980_Linux_Applications/HEAD/openssl-1.1.1/FAQ -------------------------------------------------------------------------------- /openssl-1.1.1/INSTALL: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenNuvoton/NUC980_Linux_Applications/HEAD/openssl-1.1.1/INSTALL -------------------------------------------------------------------------------- /openssl-1.1.1/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenNuvoton/NUC980_Linux_Applications/HEAD/openssl-1.1.1/LICENSE -------------------------------------------------------------------------------- /openssl-1.1.1/NEWS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenNuvoton/NUC980_Linux_Applications/HEAD/openssl-1.1.1/NEWS -------------------------------------------------------------------------------- /openssl-1.1.1/NOTES.ANDROID: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenNuvoton/NUC980_Linux_Applications/HEAD/openssl-1.1.1/NOTES.ANDROID -------------------------------------------------------------------------------- /openssl-1.1.1/NOTES.DJGPP: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenNuvoton/NUC980_Linux_Applications/HEAD/openssl-1.1.1/NOTES.DJGPP -------------------------------------------------------------------------------- /openssl-1.1.1/NOTES.PERL: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenNuvoton/NUC980_Linux_Applications/HEAD/openssl-1.1.1/NOTES.PERL -------------------------------------------------------------------------------- /openssl-1.1.1/NOTES.UNIX: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenNuvoton/NUC980_Linux_Applications/HEAD/openssl-1.1.1/NOTES.UNIX -------------------------------------------------------------------------------- /openssl-1.1.1/NOTES.VMS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenNuvoton/NUC980_Linux_Applications/HEAD/openssl-1.1.1/NOTES.VMS -------------------------------------------------------------------------------- /openssl-1.1.1/NOTES.WIN: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenNuvoton/NUC980_Linux_Applications/HEAD/openssl-1.1.1/NOTES.WIN -------------------------------------------------------------------------------- /openssl-1.1.1/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenNuvoton/NUC980_Linux_Applications/HEAD/openssl-1.1.1/README -------------------------------------------------------------------------------- /openssl-1.1.1/README.ENGINE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenNuvoton/NUC980_Linux_Applications/HEAD/openssl-1.1.1/README.ENGINE -------------------------------------------------------------------------------- /openssl-1.1.1/README.FIPS: -------------------------------------------------------------------------------- 1 | This release does not support a FIPS 140-2 validated module. 2 | -------------------------------------------------------------------------------- /openssl-1.1.1/apps/CA.pl.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenNuvoton/NUC980_Linux_Applications/HEAD/openssl-1.1.1/apps/CA.pl.in -------------------------------------------------------------------------------- /openssl-1.1.1/apps/apps.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenNuvoton/NUC980_Linux_Applications/HEAD/openssl-1.1.1/apps/apps.c -------------------------------------------------------------------------------- /openssl-1.1.1/apps/apps.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenNuvoton/NUC980_Linux_Applications/HEAD/openssl-1.1.1/apps/apps.h -------------------------------------------------------------------------------- /openssl-1.1.1/apps/ca-cert.srl: -------------------------------------------------------------------------------- 1 | 07 2 | -------------------------------------------------------------------------------- /openssl-1.1.1/apps/ca.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenNuvoton/NUC980_Linux_Applications/HEAD/openssl-1.1.1/apps/ca.c -------------------------------------------------------------------------------- /openssl-1.1.1/apps/cert.pem: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenNuvoton/NUC980_Linux_Applications/HEAD/openssl-1.1.1/apps/cert.pem -------------------------------------------------------------------------------- /openssl-1.1.1/apps/cms.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenNuvoton/NUC980_Linux_Applications/HEAD/openssl-1.1.1/apps/cms.c -------------------------------------------------------------------------------- /openssl-1.1.1/apps/crl.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenNuvoton/NUC980_Linux_Applications/HEAD/openssl-1.1.1/apps/crl.c -------------------------------------------------------------------------------- /openssl-1.1.1/apps/crl2p7.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenNuvoton/NUC980_Linux_Applications/HEAD/openssl-1.1.1/apps/crl2p7.c -------------------------------------------------------------------------------- /openssl-1.1.1/apps/demoSRP/srp_verifier.txt.attr: -------------------------------------------------------------------------------- 1 | unique_subject = yes 2 | -------------------------------------------------------------------------------- /openssl-1.1.1/apps/dgst.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenNuvoton/NUC980_Linux_Applications/HEAD/openssl-1.1.1/apps/dgst.c -------------------------------------------------------------------------------- /openssl-1.1.1/apps/dsa.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenNuvoton/NUC980_Linux_Applications/HEAD/openssl-1.1.1/apps/dsa.c -------------------------------------------------------------------------------- /openssl-1.1.1/apps/dsap.pem: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenNuvoton/NUC980_Linux_Applications/HEAD/openssl-1.1.1/apps/dsap.pem -------------------------------------------------------------------------------- /openssl-1.1.1/apps/ec.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenNuvoton/NUC980_Linux_Applications/HEAD/openssl-1.1.1/apps/ec.c -------------------------------------------------------------------------------- /openssl-1.1.1/apps/enc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenNuvoton/NUC980_Linux_Applications/HEAD/openssl-1.1.1/apps/enc.c -------------------------------------------------------------------------------- /openssl-1.1.1/apps/engine.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenNuvoton/NUC980_Linux_Applications/HEAD/openssl-1.1.1/apps/engine.c -------------------------------------------------------------------------------- /openssl-1.1.1/apps/errstr.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenNuvoton/NUC980_Linux_Applications/HEAD/openssl-1.1.1/apps/errstr.c -------------------------------------------------------------------------------- /openssl-1.1.1/apps/gendsa.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenNuvoton/NUC980_Linux_Applications/HEAD/openssl-1.1.1/apps/gendsa.c -------------------------------------------------------------------------------- /openssl-1.1.1/apps/genrsa.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenNuvoton/NUC980_Linux_Applications/HEAD/openssl-1.1.1/apps/genrsa.c -------------------------------------------------------------------------------- /openssl-1.1.1/apps/nseq.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenNuvoton/NUC980_Linux_Applications/HEAD/openssl-1.1.1/apps/nseq.c -------------------------------------------------------------------------------- /openssl-1.1.1/apps/ocsp.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenNuvoton/NUC980_Linux_Applications/HEAD/openssl-1.1.1/apps/ocsp.c -------------------------------------------------------------------------------- /openssl-1.1.1/apps/opt.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenNuvoton/NUC980_Linux_Applications/HEAD/openssl-1.1.1/apps/opt.c -------------------------------------------------------------------------------- /openssl-1.1.1/apps/passwd.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenNuvoton/NUC980_Linux_Applications/HEAD/openssl-1.1.1/apps/passwd.c -------------------------------------------------------------------------------- /openssl-1.1.1/apps/pca-cert.srl: -------------------------------------------------------------------------------- 1 | 07 2 | -------------------------------------------------------------------------------- /openssl-1.1.1/apps/pkcs12.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenNuvoton/NUC980_Linux_Applications/HEAD/openssl-1.1.1/apps/pkcs12.c -------------------------------------------------------------------------------- /openssl-1.1.1/apps/pkcs7.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenNuvoton/NUC980_Linux_Applications/HEAD/openssl-1.1.1/apps/pkcs7.c -------------------------------------------------------------------------------- /openssl-1.1.1/apps/pkcs8.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenNuvoton/NUC980_Linux_Applications/HEAD/openssl-1.1.1/apps/pkcs8.c -------------------------------------------------------------------------------- /openssl-1.1.1/apps/pkey.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenNuvoton/NUC980_Linux_Applications/HEAD/openssl-1.1.1/apps/pkey.c -------------------------------------------------------------------------------- /openssl-1.1.1/apps/prime.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenNuvoton/NUC980_Linux_Applications/HEAD/openssl-1.1.1/apps/prime.c -------------------------------------------------------------------------------- /openssl-1.1.1/apps/progs.pl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenNuvoton/NUC980_Linux_Applications/HEAD/openssl-1.1.1/apps/progs.pl -------------------------------------------------------------------------------- /openssl-1.1.1/apps/rand.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenNuvoton/NUC980_Linux_Applications/HEAD/openssl-1.1.1/apps/rand.c -------------------------------------------------------------------------------- /openssl-1.1.1/apps/rehash.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenNuvoton/NUC980_Linux_Applications/HEAD/openssl-1.1.1/apps/rehash.c -------------------------------------------------------------------------------- /openssl-1.1.1/apps/req.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenNuvoton/NUC980_Linux_Applications/HEAD/openssl-1.1.1/apps/req.c -------------------------------------------------------------------------------- /openssl-1.1.1/apps/req.pem: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenNuvoton/NUC980_Linux_Applications/HEAD/openssl-1.1.1/apps/req.pem -------------------------------------------------------------------------------- /openssl-1.1.1/apps/rsa.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenNuvoton/NUC980_Linux_Applications/HEAD/openssl-1.1.1/apps/rsa.c -------------------------------------------------------------------------------- /openssl-1.1.1/apps/rsautl.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenNuvoton/NUC980_Linux_Applications/HEAD/openssl-1.1.1/apps/rsautl.c -------------------------------------------------------------------------------- /openssl-1.1.1/apps/s_apps.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenNuvoton/NUC980_Linux_Applications/HEAD/openssl-1.1.1/apps/s_apps.h -------------------------------------------------------------------------------- /openssl-1.1.1/apps/s_cb.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenNuvoton/NUC980_Linux_Applications/HEAD/openssl-1.1.1/apps/s_cb.c -------------------------------------------------------------------------------- /openssl-1.1.1/apps/s_time.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenNuvoton/NUC980_Linux_Applications/HEAD/openssl-1.1.1/apps/s_time.c -------------------------------------------------------------------------------- /openssl-1.1.1/apps/server.srl: -------------------------------------------------------------------------------- 1 | 01 2 | -------------------------------------------------------------------------------- /openssl-1.1.1/apps/smime.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenNuvoton/NUC980_Linux_Applications/HEAD/openssl-1.1.1/apps/smime.c -------------------------------------------------------------------------------- /openssl-1.1.1/apps/speed.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenNuvoton/NUC980_Linux_Applications/HEAD/openssl-1.1.1/apps/speed.c -------------------------------------------------------------------------------- /openssl-1.1.1/apps/spkac.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenNuvoton/NUC980_Linux_Applications/HEAD/openssl-1.1.1/apps/spkac.c -------------------------------------------------------------------------------- /openssl-1.1.1/apps/srp.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenNuvoton/NUC980_Linux_Applications/HEAD/openssl-1.1.1/apps/srp.c -------------------------------------------------------------------------------- /openssl-1.1.1/apps/ts.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenNuvoton/NUC980_Linux_Applications/HEAD/openssl-1.1.1/apps/ts.c -------------------------------------------------------------------------------- /openssl-1.1.1/apps/tsget.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenNuvoton/NUC980_Linux_Applications/HEAD/openssl-1.1.1/apps/tsget.in -------------------------------------------------------------------------------- /openssl-1.1.1/apps/verify.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenNuvoton/NUC980_Linux_Applications/HEAD/openssl-1.1.1/apps/verify.c -------------------------------------------------------------------------------- /openssl-1.1.1/apps/x509.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenNuvoton/NUC980_Linux_Applications/HEAD/openssl-1.1.1/apps/x509.c -------------------------------------------------------------------------------- /openssl-1.1.1/appveyor.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenNuvoton/NUC980_Linux_Applications/HEAD/openssl-1.1.1/appveyor.yml -------------------------------------------------------------------------------- /openssl-1.1.1/build.info: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenNuvoton/NUC980_Linux_Applications/HEAD/openssl-1.1.1/build.info -------------------------------------------------------------------------------- /openssl-1.1.1/config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenNuvoton/NUC980_Linux_Applications/HEAD/openssl-1.1.1/config -------------------------------------------------------------------------------- /openssl-1.1.1/config.com: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenNuvoton/NUC980_Linux_Applications/HEAD/openssl-1.1.1/config.com -------------------------------------------------------------------------------- /openssl-1.1.1/crypto/init.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenNuvoton/NUC980_Linux_Applications/HEAD/openssl-1.1.1/crypto/init.c -------------------------------------------------------------------------------- /openssl-1.1.1/crypto/mem.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenNuvoton/NUC980_Linux_Applications/HEAD/openssl-1.1.1/crypto/mem.c -------------------------------------------------------------------------------- /openssl-1.1.1/crypto/uid.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenNuvoton/NUC980_Linux_Applications/HEAD/openssl-1.1.1/crypto/uid.c -------------------------------------------------------------------------------- /openssl-1.1.1/demos/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenNuvoton/NUC980_Linux_Applications/HEAD/openssl-1.1.1/demos/README -------------------------------------------------------------------------------- /openssl-1.1.1/demos/cms/encr.txt: -------------------------------------------------------------------------------- 1 | Content-type: text/plain 2 | 3 | Sample OpenSSL Data for CMS encryption 4 | -------------------------------------------------------------------------------- /openssl-1.1.1/demos/smime/encr.txt: -------------------------------------------------------------------------------- 1 | Content-type: text/plain 2 | 3 | Sample OpenSSL Data for PKCS#7 encryption 4 | -------------------------------------------------------------------------------- /openssl-1.1.1/doc/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenNuvoton/NUC980_Linux_Applications/HEAD/openssl-1.1.1/doc/README -------------------------------------------------------------------------------- /openssl-1.1.1/e_os.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenNuvoton/NUC980_Linux_Applications/HEAD/openssl-1.1.1/e_os.h -------------------------------------------------------------------------------- /openssl-1.1.1/fuzz/asn1.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenNuvoton/NUC980_Linux_Applications/HEAD/openssl-1.1.1/fuzz/asn1.c -------------------------------------------------------------------------------- /openssl-1.1.1/fuzz/bignum.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenNuvoton/NUC980_Linux_Applications/HEAD/openssl-1.1.1/fuzz/bignum.c -------------------------------------------------------------------------------- /openssl-1.1.1/fuzz/bndiv.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenNuvoton/NUC980_Linux_Applications/HEAD/openssl-1.1.1/fuzz/bndiv.c -------------------------------------------------------------------------------- /openssl-1.1.1/fuzz/client.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenNuvoton/NUC980_Linux_Applications/HEAD/openssl-1.1.1/fuzz/client.c -------------------------------------------------------------------------------- /openssl-1.1.1/fuzz/cms.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenNuvoton/NUC980_Linux_Applications/HEAD/openssl-1.1.1/fuzz/cms.c -------------------------------------------------------------------------------- /openssl-1.1.1/fuzz/conf.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenNuvoton/NUC980_Linux_Applications/HEAD/openssl-1.1.1/fuzz/conf.c -------------------------------------------------------------------------------- /openssl-1.1.1/fuzz/crl.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenNuvoton/NUC980_Linux_Applications/HEAD/openssl-1.1.1/fuzz/crl.c -------------------------------------------------------------------------------- /openssl-1.1.1/fuzz/ct.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenNuvoton/NUC980_Linux_Applications/HEAD/openssl-1.1.1/fuzz/ct.c -------------------------------------------------------------------------------- /openssl-1.1.1/fuzz/driver.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenNuvoton/NUC980_Linux_Applications/HEAD/openssl-1.1.1/fuzz/driver.c -------------------------------------------------------------------------------- /openssl-1.1.1/fuzz/fuzzer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenNuvoton/NUC980_Linux_Applications/HEAD/openssl-1.1.1/fuzz/fuzzer.h -------------------------------------------------------------------------------- /openssl-1.1.1/fuzz/oids.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenNuvoton/NUC980_Linux_Applications/HEAD/openssl-1.1.1/fuzz/oids.txt -------------------------------------------------------------------------------- /openssl-1.1.1/fuzz/rand.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenNuvoton/NUC980_Linux_Applications/HEAD/openssl-1.1.1/fuzz/rand.inc -------------------------------------------------------------------------------- /openssl-1.1.1/fuzz/server.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenNuvoton/NUC980_Linux_Applications/HEAD/openssl-1.1.1/fuzz/server.c -------------------------------------------------------------------------------- /openssl-1.1.1/fuzz/x509.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenNuvoton/NUC980_Linux_Applications/HEAD/openssl-1.1.1/fuzz/x509.c -------------------------------------------------------------------------------- /openssl-1.1.1/gy.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenNuvoton/NUC980_Linux_Applications/HEAD/openssl-1.1.1/gy.txt -------------------------------------------------------------------------------- /openssl-1.1.1/ms/applink.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenNuvoton/NUC980_Linux_Applications/HEAD/openssl-1.1.1/ms/applink.c -------------------------------------------------------------------------------- /openssl-1.1.1/ms/cmp.pl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenNuvoton/NUC980_Linux_Applications/HEAD/openssl-1.1.1/ms/cmp.pl -------------------------------------------------------------------------------- /openssl-1.1.1/ms/uplink.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenNuvoton/NUC980_Linux_Applications/HEAD/openssl-1.1.1/ms/uplink.c -------------------------------------------------------------------------------- /openssl-1.1.1/ms/uplink.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenNuvoton/NUC980_Linux_Applications/HEAD/openssl-1.1.1/ms/uplink.h -------------------------------------------------------------------------------- /openssl-1.1.1/pod2htmi.tmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenNuvoton/NUC980_Linux_Applications/HEAD/openssl-1.1.1/pod2htmi.tmp -------------------------------------------------------------------------------- /openssl-1.1.1/ssl/bio_ssl.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenNuvoton/NUC980_Linux_Applications/HEAD/openssl-1.1.1/ssl/bio_ssl.c -------------------------------------------------------------------------------- /openssl-1.1.1/ssl/d1_lib.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenNuvoton/NUC980_Linux_Applications/HEAD/openssl-1.1.1/ssl/d1_lib.c -------------------------------------------------------------------------------- /openssl-1.1.1/ssl/d1_msg.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenNuvoton/NUC980_Linux_Applications/HEAD/openssl-1.1.1/ssl/d1_msg.c -------------------------------------------------------------------------------- /openssl-1.1.1/ssl/d1_srtp.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenNuvoton/NUC980_Linux_Applications/HEAD/openssl-1.1.1/ssl/d1_srtp.c -------------------------------------------------------------------------------- /openssl-1.1.1/ssl/methods.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenNuvoton/NUC980_Linux_Applications/HEAD/openssl-1.1.1/ssl/methods.c -------------------------------------------------------------------------------- /openssl-1.1.1/ssl/packet.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenNuvoton/NUC980_Linux_Applications/HEAD/openssl-1.1.1/ssl/packet.c -------------------------------------------------------------------------------- /openssl-1.1.1/ssl/pqueue.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenNuvoton/NUC980_Linux_Applications/HEAD/openssl-1.1.1/ssl/pqueue.c -------------------------------------------------------------------------------- /openssl-1.1.1/ssl/s3_cbc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenNuvoton/NUC980_Linux_Applications/HEAD/openssl-1.1.1/ssl/s3_cbc.c -------------------------------------------------------------------------------- /openssl-1.1.1/ssl/s3_enc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenNuvoton/NUC980_Linux_Applications/HEAD/openssl-1.1.1/ssl/s3_enc.c -------------------------------------------------------------------------------- /openssl-1.1.1/ssl/s3_lib.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenNuvoton/NUC980_Linux_Applications/HEAD/openssl-1.1.1/ssl/s3_lib.c -------------------------------------------------------------------------------- /openssl-1.1.1/ssl/s3_msg.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenNuvoton/NUC980_Linux_Applications/HEAD/openssl-1.1.1/ssl/s3_msg.c -------------------------------------------------------------------------------- /openssl-1.1.1/ssl/ssl_err.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenNuvoton/NUC980_Linux_Applications/HEAD/openssl-1.1.1/ssl/ssl_err.c -------------------------------------------------------------------------------- /openssl-1.1.1/ssl/ssl_lib.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenNuvoton/NUC980_Linux_Applications/HEAD/openssl-1.1.1/ssl/ssl_lib.c -------------------------------------------------------------------------------- /openssl-1.1.1/ssl/ssl_rsa.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenNuvoton/NUC980_Linux_Applications/HEAD/openssl-1.1.1/ssl/ssl_rsa.c -------------------------------------------------------------------------------- /openssl-1.1.1/ssl/ssl_txt.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenNuvoton/NUC980_Linux_Applications/HEAD/openssl-1.1.1/ssl/ssl_txt.c -------------------------------------------------------------------------------- /openssl-1.1.1/ssl/t1_enc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenNuvoton/NUC980_Linux_Applications/HEAD/openssl-1.1.1/ssl/t1_enc.c -------------------------------------------------------------------------------- /openssl-1.1.1/ssl/t1_lib.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenNuvoton/NUC980_Linux_Applications/HEAD/openssl-1.1.1/ssl/t1_lib.c -------------------------------------------------------------------------------- /openssl-1.1.1/ssl/t1_trce.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenNuvoton/NUC980_Linux_Applications/HEAD/openssl-1.1.1/ssl/t1_trce.c -------------------------------------------------------------------------------- /openssl-1.1.1/ssl/tls_srp.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenNuvoton/NUC980_Linux_Applications/HEAD/openssl-1.1.1/ssl/tls_srp.c -------------------------------------------------------------------------------- /openssl-1.1.1/test/CAss.cnf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenNuvoton/NUC980_Linux_Applications/HEAD/openssl-1.1.1/test/CAss.cnf -------------------------------------------------------------------------------- /openssl-1.1.1/test/P1ss.cnf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenNuvoton/NUC980_Linux_Applications/HEAD/openssl-1.1.1/test/P1ss.cnf -------------------------------------------------------------------------------- /openssl-1.1.1/test/P2ss.cnf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenNuvoton/NUC980_Linux_Applications/HEAD/openssl-1.1.1/test/P2ss.cnf -------------------------------------------------------------------------------- /openssl-1.1.1/test/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenNuvoton/NUC980_Linux_Applications/HEAD/openssl-1.1.1/test/README -------------------------------------------------------------------------------- /openssl-1.1.1/test/Uss.cnf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenNuvoton/NUC980_Linux_Applications/HEAD/openssl-1.1.1/test/Uss.cnf -------------------------------------------------------------------------------- /openssl-1.1.1/test/d2i-tests/bad-int-pad0.der: -------------------------------------------------------------------------------- 1 |  -------------------------------------------------------------------------------- /openssl-1.1.1/test/d2i-tests/int0.der: -------------------------------------------------------------------------------- 1 |  -------------------------------------------------------------------------------- /openssl-1.1.1/test/d2i-tests/int1.der: -------------------------------------------------------------------------------- 1 |  -------------------------------------------------------------------------------- /openssl-1.1.1/test/recipes/04-test_pem_data/wellknown: -------------------------------------------------------------------------------- 1 | wellknown 2 | -------------------------------------------------------------------------------- /openssl-1.1.1/test/ssl-tests/16-certstatus.conf: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /yaffs2utils/CHANGES: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenNuvoton/NUC980_Linux_Applications/HEAD/yaffs2utils/CHANGES -------------------------------------------------------------------------------- /yaffs2utils/COPYING: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenNuvoton/NUC980_Linux_Applications/HEAD/yaffs2utils/COPYING -------------------------------------------------------------------------------- /yaffs2utils/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenNuvoton/NUC980_Linux_Applications/HEAD/yaffs2utils/Makefile -------------------------------------------------------------------------------- /yaffs2utils/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenNuvoton/NUC980_Linux_Applications/HEAD/yaffs2utils/README -------------------------------------------------------------------------------- /yaffs2utils/configs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenNuvoton/NUC980_Linux_Applications/HEAD/yaffs2utils/configs.h -------------------------------------------------------------------------------- /yaffs2utils/list.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenNuvoton/NUC980_Linux_Applications/HEAD/yaffs2utils/list.h -------------------------------------------------------------------------------- /yaffs2utils/mkyaffs2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenNuvoton/NUC980_Linux_Applications/HEAD/yaffs2utils/mkyaffs2 -------------------------------------------------------------------------------- /yaffs2utils/mkyaffs2.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenNuvoton/NUC980_Linux_Applications/HEAD/yaffs2utils/mkyaffs2.c -------------------------------------------------------------------------------- /yaffs2utils/mtd-abi.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenNuvoton/NUC980_Linux_Applications/HEAD/yaffs2utils/mtd-abi.h -------------------------------------------------------------------------------- /yaffs2utils/safe_rw.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenNuvoton/NUC980_Linux_Applications/HEAD/yaffs2utils/safe_rw.c -------------------------------------------------------------------------------- /yaffs2utils/safe_rw.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenNuvoton/NUC980_Linux_Applications/HEAD/yaffs2utils/safe_rw.h -------------------------------------------------------------------------------- /yaffs2utils/unspare2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenNuvoton/NUC980_Linux_Applications/HEAD/yaffs2utils/unspare2 -------------------------------------------------------------------------------- /yaffs2utils/unspare2.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenNuvoton/NUC980_Linux_Applications/HEAD/yaffs2utils/unspare2.c -------------------------------------------------------------------------------- /yaffs2utils/unyaffs2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenNuvoton/NUC980_Linux_Applications/HEAD/yaffs2utils/unyaffs2 -------------------------------------------------------------------------------- /yaffs2utils/unyaffs2.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenNuvoton/NUC980_Linux_Applications/HEAD/yaffs2utils/unyaffs2.c -------------------------------------------------------------------------------- /yaffs2utils/version.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenNuvoton/NUC980_Linux_Applications/HEAD/yaffs2utils/version.h --------------------------------------------------------------------------------