├── .github └── PULL_REQUEST_TEMPLATE.md ├── 25volt ├── Makefile └── src │ ├── usb_ups_apc_smart.c │ └── usb_ups_powercom_wow.c ├── 3proxy ├── Makefile ├── files │ └── S23proxy └── patches │ ├── 010-Makefile-vars.patch │ ├── 020-config-file-paths.patch │ └── 030-add-user-script-paths.patch ├── 7-zip ├── Makefile └── patches │ ├── 0002-Use-getcwd-3-POSIX-extension-to-avoid-PATH_MAX-macro.patch │ ├── 0003-Disable-local-echo-display-when-in-input-passwords-C.patch │ ├── 0004-Use-system-locale-to-select-codepage-for-legacy-zip-.patch │ ├── 100-no-softfloat-arm-optimization.patch │ ├── 110-Remove_Werror_flag.patch │ └── 110-x86_without_SSE.patch ├── LICENSE ├── README.md ├── accel-ppp ├── Makefile ├── files │ └── S60accel-ppp └── patches │ ├── 020-config-paths.patch │ ├── 030-linkage.patch │ ├── 040-ppp-no-modprobe.patch │ └── 060-paths.patch ├── afpfs-ng ├── Makefile └── patches │ ├── 010-shell-path.patch │ └── 020-no_docs.patch ├── aha └── Makefile ├── aide ├── Makefile └── patches │ └── 010-fix-for-old-kernels.patch ├── airprint ├── Makefile └── files │ ├── airprint-generate.py │ ├── airprint.convs │ └── airprint.types ├── airsane ├── Makefile ├── files │ └── S43airsaned └── patches │ └── 020-paths.patch ├── alaya ├── Makefile ├── files │ └── S80alaya └── patches │ ├── 030-conf-paths.patch │ └── 040-hardcoded-paths.patch ├── angband ├── Makefile └── patches │ ├── 010-saves-path.patch │ └── 020-use_LDFLAGS_for_binary_only.patch ├── archivemount ├── Makefile └── patches │ └── 010-fuse-headers.patch ├── arpon ├── Makefile └── patches │ ├── 010-exlclude_host_paths.patch │ └── 020-paths.patch ├── asciinema └── Makefile ├── aspell ├── Makefile └── files │ └── aspell.conf ├── asterisk-chan-quectel ├── Makefile └── patches │ ├── 010-cross.patch │ └── 020-fix-paths.patch ├── astra ├── Makefile └── patches │ ├── 010-nomarchc.patch │ ├── 020-nold.patch │ ├── 030-nosse_cross.patch │ └── 040-no_aio.patch ├── autofs ├── Config.in ├── Makefile └── patches │ └── 010-fix-paths.patch ├── automatic ├── Makefile ├── files │ └── S91automatic └── patches │ ├── 010-config-dir.patch │ ├── 020-src-dir.patch │ ├── 030-CFLAGS.patch │ └── 040-no_tests.patch ├── axel └── Makefile ├── bacula ├── Makefile ├── files │ ├── S80bacula-dir │ ├── S80bacula-fd │ └── S80bacula-sd └── patches │ ├── 500-startup.patch │ └── 501-make_catalog.patch ├── badvpn └── Makefile ├── bfgminer └── Makefile ├── bindfs └── Makefile ├── bip ├── Makefile └── files │ └── S99bip ├── bochs ├── Makefile └── patches │ ├── 010-fix_curses.patch │ ├── 020-fetchdecode_opmap_0f3a_braces.patch │ └── 030-fetchdecode_opmap_0f38_braces.patch ├── brlaser └── Makefile ├── cadaver └── Makefile ├── castget ├── Makefile └── patches │ ├── 010-paths.patch │ └── 020-config.patch ├── cavezofphear ├── Makefile └── patches │ └── 010-unroll_657d107_new_arg_declaration.patch ├── cdrkit ├── Makefile └── patches │ ├── 0003-Add-extern-to-char-outfile-declaration-to-fix-build-.patch │ ├── 0004-Add-missing-header-includes.patch │ ├── 0005-CMakeLists.txt-add-cmake_minimum_required.patch │ ├── 500-missing-hdr.patch │ └── 510-fix-paths.patch ├── cgdb ├── Makefile └── patches │ └── 010-Fix-handling-of-local-m4-macros.patch ├── cgit ├── Makefile └── patches │ ├── 100-configure_for_crosscompiling.patch │ ├── 500-fix_default_paths.patch │ └── 600-fix-paths.patch ├── chromaprint ├── Makefile └── patches │ └── 001-fix-ffmpeg-5x.patch ├── cmake └── Makefile ├── corosync-qdevice ├── Makefile └── patches │ ├── 010-no-man.patch │ ├── 020-fix-startup.patch │ ├── 030-bash.patch │ └── 040-fix-stat.patch ├── corosync ├── Makefile ├── files │ └── corosync.conf └── patches │ ├── 010-no-man.patch │ ├── 020-fix-pkgconfig.patch │ ├── 030-fix-startup.patch │ ├── 040-bash.patch │ └── 050-log.patch ├── cpio └── Makefile ├── crawl ├── Makefile └── patches │ ├── 010-LDFLAGS.patch │ ├── 020-tilegen-host-compile.patch │ ├── 050-define-FILE-OFFSET-BITS.patch │ ├── 070-macro-dir.patch │ └── 090-version_num.patch ├── cron ├── Makefile ├── files │ ├── S10cron │ ├── crontab │ └── run-parts └── patches │ ├── 100-Makefile.patch │ ├── 200-crond.patch │ ├── 300-pathnames.h.patch │ └── 400-add_syslog_option.patch ├── cryfs ├── Makefile └── patches │ ├── 050-low-power-cpu.patch │ ├── 100-disable-asm.patch │ └── 150-missing-hdr.patch ├── ctags ├── Makefile └── patches │ └── 010-fix.patch ├── cuetools └── Makefile ├── cups-filters ├── Makefile ├── files │ └── S82cups-browsed └── patches │ ├── 0002-qpdf-needs-at-least-c-17.patch │ ├── 0003-fix-CVE-2023-24805.patch │ ├── 0004-CVE-2024-47076.patch │ ├── 0005-CVE-2024-47176.patch │ ├── 0006-qpdf-12.patch │ └── 500-fix-paths.patch ├── cups-pdf ├── Makefile └── patches │ └── 900-entware-dir.patch ├── cvs ├── Makefile └── patches │ └── 500-getline.patch ├── daemonize ├── Makefile └── patches │ └── 010-default-path.patch ├── daemontools-encore ├── Makefile ├── files │ └── S03daemontools-encore └── patches │ ├── 010-disable_runtime_tests.patch │ └── 020-svscanboot.patch ├── deluge ├── Makefile ├── files │ ├── S80deluged │ ├── S81deluge-web │ └── deluge-web-reset_password └── patches │ └── 020-fix_geoip_path.patch ├── dfc ├── Makefile └── patches │ └── 010-prevent_unwanted_color_pollution.patch ├── dislocker ├── Makefile └── patches │ ├── 010-disable-usr-path.patch │ ├── 020-ssl-lib-detection.patch │ └── 030-support-mbedtls-3x.patch ├── duktape ├── Makefile └── patches │ └── 020-shared-library.patch ├── encfs ├── Makefile └── patches │ ├── 010-exclude_SYSTEM_directive.patch │ └── 500-output-file-is-a-directory.patch ├── endlessh ├── Makefile ├── files │ └── S99endlessh └── patches │ └── 010-fix-conf-path.patch ├── entr └── Makefile ├── entware-opt ├── Makefile └── files │ ├── .inputrc │ ├── .profile │ ├── group.1 │ ├── passwd.1 │ ├── profile │ ├── rc.func │ ├── rc.unslung │ └── shells.1 ├── entware-release └── Makefile ├── entware-upgrade └── Makefile ├── espeak-ng ├── Makefile └── patches │ ├── 010-klatt-garbage.patch │ ├── 020-libsonic-bigendian.patch │ ├── 030-bufsize.patch │ ├── 040-fix-cancel.patch │ ├── 050-privacy.patch │ ├── 060-x.patch │ ├── 070-CI.patch │ ├── 080-nocard.patch │ ├── 090-clang-target.patch │ ├── 100-fuzz-link.patch │ ├── 110-th_dict.patch │ ├── 120-compile-reproducibility.patch │ ├── 130-espeak-stdin.patch │ ├── 140-piper.patch │ └── 200-host_utility_for_phoneme_compilation.patch ├── exfat-fuse └── Makefile ├── exiv2 ├── Makefile └── patches │ └── 020-remove_redunant_compile_flags.patch ├── expect ├── Makefile └── patches │ ├── 010-enable-cross-compilation.patch │ ├── 020-allow-tcl-build-directory.patch │ └── 030-no_host_tclsh.patch ├── ext4magic ├── Makefile └── patches │ ├── 010-fix-paths.patch │ ├── 020-fix-new-e2fs.patch │ ├── 030-fix-missing-hdrs.patch │ └── 040-fix-stringop-overflow.patch ├── extundelete ├── Makefile └── patches │ ├── 010-fix_segmentation_fault.patch │ ├── 020-fix_ftbfs.patch │ └── 030-fix-configure.ac-to-work-with-recent-automake-autoconf.patch ├── fake-hwclock ├── Makefile ├── files │ └── S01fake-hwclock └── patches │ └── 010-data-path.patch ├── far2l ├── Makefile └── patches │ └── 010-fix-arm.patch ├── fatrace └── Makefile ├── ffmpegthumbnailer └── Makefile ├── fossil ├── Makefile └── patches │ ├── 010-cross_compile.patch │ └── 020-source_includes.patch ├── freediameter └── Makefile ├── fuse-convmvfs └── Makefile ├── fzy ├── Makefile └── patches │ └── 010-cross-compile_flags.patch ├── ghostscript ├── Makefile └── patches │ └── 020-paths.patch ├── gnuchess ├── Makefile └── patches │ └── 001-ini.patch ├── go ├── Makefile └── patches │ ├── 010-entware.patch │ ├── 020-group-passwd.patch │ └── 030-linuxdynld.patch ├── goaccess ├── Makefile └── patches │ ├── 010-bin2c.patch │ ├── 020-no_translation.patch │ └── 030-tmp_path.patch ├── grive2 ├── Makefile └── patches │ ├── 010-libdl.patch │ ├── 020-boost.patch │ └── 030_stdint.patch ├── groff ├── Makefile └── patches │ └── 010-no-generate.patch ├── gutenprint ├── Makefile └── patches │ └── 020-extract-strings.patch ├── highlight ├── Makefile └── patches │ ├── 010-fix-cross-autotools.patch │ ├── 020-fix-cross-cmake.patch │ ├── 030-fix-cross-meson.patch │ └── 040-fix-paths.patch ├── hlspxd ├── Makefile ├── files │ └── S92hlspxd ├── patches │ ├── 100-fix_comments_typos_MSVC_build.patch │ ├── 200-samsung-orsay-support.patch │ ├── 201-apache-httpd-compatibility.patch │ └── 202-relative-redirection-support.patch └── src │ ├── hlspxd.cpp │ ├── platform.cpp │ ├── platform.h │ ├── utils.cpp │ ├── utils.h │ ├── videoviewer.cpp │ └── videoviewer.h ├── hstr └── Makefile ├── httrack ├── Makefile └── patches │ └── 010-server_usage_example.patch ├── incron ├── Makefile ├── files │ └── S12incron └── patches │ ├── 010_prevent_zombies.patch │ ├── 030-incron-conf-paths.patch │ └── 040-default-paths.patch ├── inetutils ├── Makefile └── patches │ └── 010-PATH_PROCNET_DEV.patch ├── ioping └── Makefile ├── iotop ├── Makefile └── patches │ └── 010-pgpgin_pgpgout_def.patch ├── iprange └── Makefile ├── istgt ├── Makefile ├── files │ └── S13istgt └── patches │ ├── 010-disable-ssp.patch │ └── 020-disable-host-strip.patch ├── isync └── Makefile ├── jailkit ├── Makefile └── patches │ ├── 010-respect_CFLAGS.patch │ └── 020-shells_and_man.patch ├── jbigkit ├── Makefile └── patches │ ├── 010-dynamic-lib.patch │ ├── 020-LDFLAGS-for-tools.patch │ └── 020-gcc42.patch ├── jdupes └── Makefile ├── jhead ├── Makefile └── patches │ └── 010-flags.patch ├── jo └── Makefile ├── keyd ├── Makefile ├── files │ └── default.conf └── patches │ ├── 010-cross.patch │ └── 020-fix-for-old-kernels.patch ├── kronosnet ├── Config.in └── Makefile ├── lcms └── Makefile ├── libcryptopp ├── Makefile ├── files │ └── cryptest.sh └── patches │ ├── 010-disable_asm.patch │ ├── 100-Fix_potential_zeroizer_removal.patch │ ├── 110-integer.patch │ ├── 120-CVE-2016-9939.patch │ ├── 130-Additional_ASN.1_validations.patch │ ├── 140-zinflate-564.patch │ └── 200-fix-paths.patch ├── libjodycode └── Makefile ├── liblpeg ├── Makefile └── patches │ └── 010-add-cmake.patch ├── libmediainfo └── Makefile ├── libmpack-lua ├── Makefile └── patches │ └── 010-host-lua.patch ├── libmtp ├── Makefile └── patches │ └── 010-cross-compile.patch ├── libnfs └── Makefile ├── libpipeline └── Makefile ├── libqb └── Makefile ├── libstatgrab └── Makefile ├── libzen └── Makefile ├── limitcpu └── Makefile ├── loadwatch ├── Makefile └── patches │ ├── 010-Makefile.in.patch │ ├── 020-loadwatch.c.patch │ ├── 030-lw-ctl.c.patch │ └── 040-configure.in.diff ├── locales └── Makefile ├── loggedfs ├── Makefile └── patches │ └── 500-entware.patch ├── ltrace ├── Makefile └── patches │ └── 010-fix.patch ├── man-db ├── Makefile ├── files │ └── man_db.conf └── patches │ ├── 010-html_pager.patch │ └── 020-fix-paths.patch ├── man-pages └── Makefile ├── mathomatic └── Makefile ├── mediainfo └── Makefile ├── megacmd └── Makefile ├── mergerfs ├── Makefile └── patches │ └── 010-libfuse_cross-compile.patch ├── meson-python ├── Makefile └── patches │ ├── 001-unpin-build-dependencies.patch │ ├── 020-find-meson.patch │ └── 030-vendor.patch ├── microdc2 ├── Makefile ├── files │ └── microdc2.conf └── patches │ ├── 010-paths.patch │ ├── 020-no-po.patch │ └── 030-no_docs.patch ├── minissdpd ├── Makefile ├── files │ ├── S11minissdpd │ └── minissdpd.conf └── patches │ └── 010-paths.patch ├── mkvtoolnix ├── Makefile └── patches │ ├── 010-no_manpages.patch │ ├── 020-fix-ruby.patch │ └── 030-fmt_internal.patch ├── mlocate ├── Makefile └── patches │ └── 010-mlocate-0.26-include-order-fix.patch ├── movgrab ├── Makefile └── patches │ └── 010-fix.patch ├── mp3gain └── Makefile ├── mp707 ├── Makefile └── patches │ └── 010-RODOS_support.patch ├── mpdscribble ├── Makefile └── patches │ ├── 010-fix-libgcrypt.patch │ └── 020-missing-hdr.patch ├── mqtt-exec └── Makefile ├── msd ├── Makefile ├── files │ └── S29msd └── patches │ ├── 010-tmpfile.patch │ ├── 020-conf.patch │ └── 030-CMakeLists.patch ├── multitail ├── Makefile └── patches │ ├── 010-config-path.patch │ ├── 020-GLIBC-def.patch │ └── 030-ncurses.patch ├── ncdc ├── Makefile └── patches │ ├── 010-no-docs.patch │ └── 020-paths.patch ├── ndisc6 └── Makefile ├── neovim ├── Makefile └── patches │ ├── 010-fix-cross.patch │ └── 020-downgrade-deps.patch ├── nethack ├── Makefile └── patches │ ├── 010-Makefile.dat.patch │ ├── 020-Makefile.utl.patch │ ├── 030-Makefile.src.patch │ ├── 040-Makefile.top.patch │ ├── 050-nethack.sh.patch │ ├── 060-tparm-doubled-def.patch │ ├── 070-config.h.patch │ └── 080-target-defs.patch ├── nethogs ├── Makefile └── patches │ └── 010-no-tests.patch ├── nfusr ├── Makefile └── patches │ ├── 010-entware.patch │ ├── 020-makedev_warning.patch │ └── 030-mount.nfusr_ash_compat.patch ├── ngrok-c ├── Makefile ├── patches │ └── 010-fix_pointer_comparison.patch └── src │ └── Makefile ├── nmon └── Makefile ├── node-pnpm └── Makefile ├── nonroot ├── Makefile └── patches │ └── 010-cross-compile.patch ├── nss-mdns └── Makefile ├── ntopng ├── Makefile ├── files │ └── S72ntopng └── patches │ ├── 010-cross.patch │ ├── 015-fix-ndpi.patch │ ├── 020-fix-conf.patch │ ├── 030-fix-paths.patch │ ├── 040-fix-misc.patch │ ├── 050-fix-version.patch │ ├── 060-fix-lua.patch │ └── 070-fix-TZ.patch ├── nyancat └── Makefile ├── oscam ├── Makefile ├── files │ └── S59oscam └── patches │ ├── 001-opt_path.patch │ ├── 010-cross-compile.patch │ └── 020-log-dir.patch ├── p0f ├── Makefile └── patches │ ├── 010-change-DB-default-path.patch │ └── 020-compiler-and-linker-flags.patch ├── p7zip ├── Makefile └── patches │ └── 010-Enhanced-encryption-strength.patch ├── par2cmdline └── Makefile ├── patchelf └── Makefile ├── pcal └── Makefile ├── perl-dbd-pg └── Makefile ├── perl-image-exiftool └── Makefile ├── phodav └── Makefile ├── php8-pecl-apcu └── Makefile ├── php8-pecl-event └── Makefile ├── php8-pecl-gmagick ├── Makefile └── patches │ └── 010-GraphicsMagick-config_path.patch ├── php8-pecl-ssh2 └── Makefile ├── php8-pecl-trader └── Makefile ├── pimd ├── Makefile └── files │ └── S69pimd ├── pinentry └── Makefile ├── pingu ├── Makefile ├── files │ └── S11pingu └── patches │ └── 010-paths.patch ├── pixelserv-tls ├── Makefile ├── files │ └── S80pixelserv-tls └── patches │ ├── 010-fix-paths.patch │ └── 020-fix-openssl-3x.patch ├── poppler ├── Makefile └── patches │ └── 010-fix-pkgconfig.patch ├── portspoof └── Makefile ├── ps3netsrv ├── Makefile ├── files │ └── S76ps3netsrv └── patches │ └── 010-cross-compile.patch ├── ptokax ├── Makefile ├── files │ └── S95ptokax └── patches │ ├── 010-ntohl-ntohs-replacement.patch │ ├── 020-makefile.patch │ ├── 030-skein.patch │ └── 040-tinixml.patch ├── pureftpd ├── Makefile ├── files │ └── S65pureftpd └── patches │ └── 010-mysql_runtime_test.patch ├── pwnat ├── Makefile └── patches │ ├── 010-cross-compile.patch │ └── 020-fix.patch ├── python-characteristic └── Makefile ├── python-cups ├── Makefile └── patches │ └── 010-fix-paths.patch ├── python-regex └── Makefile ├── python-rencode ├── Makefile └── patches │ └── 600-fix-cython.patch ├── python-setproctitle └── Makefile ├── python-ujson └── Makefile ├── python3-uvloop └── Makefile ├── qbittorrent ├── Makefile ├── files │ └── S89qbittorrent └── patches │ └── 010-fix-libstdc++fs.patch ├── qpdf ├── Makefile └── patches │ └── 020-fix-pkgconfig.patch ├── qt5 ├── Makefile ├── patches │ ├── 010-fix-for-old-kernels.patch │ ├── 020-atomic.patch │ ├── 050-iconv.patch │ ├── 060-glib2.patch │ └── 070-certs-paths.patch └── src │ └── qtbase │ └── mkspecs │ └── devices │ └── linux-entware-g++ │ ├── arch.conf │ ├── qmake.conf │ └── qplatformdefs.h ├── radare2 └── Makefile ├── rar2fs └── Makefile ├── rcon ├── Makefile └── patches │ └── 010-remove_libbsd_dep.patch ├── rdfind └── Makefile ├── rhash └── Makefile ├── rtmpdump ├── Makefile └── patches │ └── 010-use_gnutls.patch ├── rtorrent-easy-install ├── Makefile └── files │ └── S85rtorrent ├── rutorrent ├── Makefile └── patches │ ├── 010-paths.patch │ └── 020-access-swap.patch ├── s3fs-fuse ├── Makefile └── patches │ └── 010-fix-missing-hdr.patch ├── scream-receiver └── Makefile ├── sd-idle ├── Makefile ├── files │ └── S16sdidle └── src │ ├── Makefile │ └── sd-idle-2.6.c ├── serf ├── Makefile └── patches │ └── 500-disable.auto-rpath.patch ├── sg3_utils └── Makefile ├── shadowsocks-libev ├── Makefile ├── files │ └── S22shadowsocks └── patches │ ├── 100-Upgrade-PCRE-to-PCRE2.patch │ └── 200-shadowsocks-mbedtls3.patch ├── shake ├── Makefile └── patches │ └── 010-no_docs.patch ├── shc ├── Makefile └── patches │ └── 500-gcc.patch ├── shellinabox ├── Makefile ├── files │ └── S88shellinaboxd └── patches │ ├── 010-add-opt-login.patch │ └── 020-shellinabox.patch ├── shntool ├── Makefile └── patches │ ├── 010-large-size.patch │ ├── 020-large-times.patch │ ├── 030-24bit-fix.patch │ └── 030-no-cdquality-check.patch ├── simple-mtpfs └── Makefile ├── simple-obfs ├── Makefile └── patches │ └── 010-fix-error-stringop.patch ├── sitecopy ├── Makefile └── patches │ ├── 001-remote-dynamic-rc.patch │ ├── 003-wrong-memory-397155.patch │ ├── 006-sftpdriver.c-fix-for-new-openssh.patch │ ├── 010-bts410703-preserve-storage-files-sigint.patch │ ├── 032_neon-0.31.patch │ └── 100-neon_0.31.patch ├── splix ├── Makefile └── patches │ └── 010-cross-compile.patch ├── sshguard ├── Makefile └── patches │ └── 010-no_docs.patch ├── superstartrek ├── Makefile └── patches │ ├── 010-paths.patch │ └── 020-cross-compile.patch ├── suricata └── Makefile ├── tarsnap ├── Makefile └── patches │ └── 010-fix-paths.patch ├── task-spooler ├── Makefile └── patches │ └── 010-paths.patch ├── telegram-cli ├── Makefile └── patches │ ├── 010-cross-compile.patch │ ├── 020-tl-parser.patch │ ├── 030-generate.patch │ ├── 040-lua.patch │ ├── 050-openssl_1.1_compat.patch │ ├── 060-no_cast_func_type.patch │ └── 070-fix-error-cast-function-type.patch ├── testdisk └── Makefile ├── tidy-html5 ├── Makefile └── files │ └── tidy.conf ├── totd ├── Makefile ├── files │ └── S57totd └── patches │ └── 010-config.patch ├── trafficserver ├── Makefile └── patches │ ├── 010-fix-paths.patch │ ├── 020-no-check-openssl.patch │ ├── 030-fix-cross.patch │ ├── 040-fix-for-old-kernels.patch │ ├── 050-no-openssl-engine.patch │ ├── 060-no-log-trace.patch │ └── 100-unpin-build-env.patch ├── transcode └── Makefile ├── transmission-cfp ├── Makefile ├── files │ ├── S88transmission-cfp │ └── settings.json └── patches │ ├── 010-int64_switch.patch │ ├── 020-fallocate64.patch │ └── 030-po.patch ├── tree-sitter ├── Makefile └── patches │ └── 010-fix-cross.patch ├── trojan ├── Makefile └── files │ └── S22trojan ├── tsmuxer └── Makefile ├── tsping └── Makefile ├── tty-solitaire └── Makefile ├── tunsafe ├── Makefile ├── files │ └── S30tunsafe └── patches │ ├── 010-compile-error-fix.patch │ ├── 020-arm-neon-detection.patch │ ├── 030-handle-different-paths-of-ip.patch │ ├── 040-disable-thread-rename.patch │ ├── 050-fix-x86-sse-detection.patch │ └── 060-add-mipseb-architecture.patch ├── unibilium ├── Makefile └── patches │ └── 010-fix-cross.patch ├── unionfs-fuse ├── Makefile └── patches │ └── 010-force_64bit_off_t.patch ├── urbackup-server ├── Makefile ├── files │ └── S60urbackup-server └── patches │ ├── 010-no_usr_include.patch │ ├── 020-do-not-adduser.patch │ ├── 030-disable_asm.patch │ └── 040-md5-bytes.patch ├── usbrelay ├── Makefile └── patches │ └── 010-lib_suffix.patch ├── utf8proc ├── Makefile └── patches │ └── 010-fix-cross.patch ├── vban ├── Makefile └── patches │ └── 010-fix-paths.patch ├── vblade ├── Makefile └── patches │ └── 010-compile-vars.patch ├── vifm ├── Makefile └── patches │ ├── 010-fix-paths.patch │ └── 020-no-vifm-help.patch ├── vitetris ├── Makefile └── patches │ ├── 020-disable-stripping.patch │ └── 030-ar-crosscompile.patch ├── vorbis-tools ├── Makefile └── patches │ └── 010-no_intl.patch ├── vsftpd-ext ├── Makefile ├── files │ └── S49vsftpd └── patches │ ├── 010-disable-PAM.patch │ ├── 020-config-path.patch │ ├── 030-cross-compile.patch │ ├── 040-disable-new-CLONE-flags.patch │ └── 050-disable-capabilities.patch ├── watchdog ├── Makefile └── patches │ └── 010-fix-paths.patch ├── wcd ├── Makefile └── patches │ └── 010-ncurses_flags.patch ├── wdfs ├── Makefile └── patches │ ├── 010-fuse-opt-header.patch │ ├── 020-500-error-user-agent.patch │ └── 500-use_opt_for_tmp_files.patch ├── wg-quick ├── Makefile └── patches │ └── 100-entware.patch ├── wireshark └── Makefile ├── xawtv ├── Makefile └── patches │ ├── 010-compiler-flags.patch │ ├── 020-no-fbtv.patch │ └── 030-sys_siglist.patch ├── xmlstarlet ├── Makefile └── patches │ ├── 010-no-docs.patch │ └── 020-fix-missing-hdr.patch ├── xpdf └── Makefile ├── xupnpd2 ├── Makefile ├── files │ └── S94xupnpd2 └── patches │ ├── 010-rules.patch │ ├── 030-cfg.patch │ ├── 040-xupnpd.lua_path.patch │ ├── 050-xupnpd.cfg_path.patch │ └── 060-xupnpd.uid_path.patch ├── yamdi ├── Makefile └── patches │ └── 010-linker-flags.patch ├── ympd ├── Makefile └── files │ └── S90ympd ├── zbar ├── Makefile └── patches │ └── 010-disable-NLS.patch ├── ziproxy ├── Makefile ├── files │ └── S25ziproxy └── patches │ ├── 001-xinetd.d-conf.patch │ └── 003-ziproxy.conf-paths-and-user.patch └── zork ├── Makefile ├── files └── uudecode.c └── patches ├── 010-cross-compile.patch └── 020-saves-path.patch /.github/PULL_REQUEST_TEMPLATE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Entware/rtndev/HEAD/.github/PULL_REQUEST_TEMPLATE.md -------------------------------------------------------------------------------- /25volt/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Entware/rtndev/HEAD/25volt/Makefile -------------------------------------------------------------------------------- /25volt/src/usb_ups_apc_smart.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Entware/rtndev/HEAD/25volt/src/usb_ups_apc_smart.c -------------------------------------------------------------------------------- /25volt/src/usb_ups_powercom_wow.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Entware/rtndev/HEAD/25volt/src/usb_ups_powercom_wow.c -------------------------------------------------------------------------------- /3proxy/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Entware/rtndev/HEAD/3proxy/Makefile -------------------------------------------------------------------------------- /3proxy/files/S23proxy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Entware/rtndev/HEAD/3proxy/files/S23proxy -------------------------------------------------------------------------------- /3proxy/patches/010-Makefile-vars.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Entware/rtndev/HEAD/3proxy/patches/010-Makefile-vars.patch -------------------------------------------------------------------------------- /3proxy/patches/020-config-file-paths.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Entware/rtndev/HEAD/3proxy/patches/020-config-file-paths.patch -------------------------------------------------------------------------------- /3proxy/patches/030-add-user-script-paths.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Entware/rtndev/HEAD/3proxy/patches/030-add-user-script-paths.patch -------------------------------------------------------------------------------- /7-zip/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Entware/rtndev/HEAD/7-zip/Makefile -------------------------------------------------------------------------------- /7-zip/patches/0002-Use-getcwd-3-POSIX-extension-to-avoid-PATH_MAX-macro.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Entware/rtndev/HEAD/7-zip/patches/0002-Use-getcwd-3-POSIX-extension-to-avoid-PATH_MAX-macro.patch -------------------------------------------------------------------------------- /7-zip/patches/0003-Disable-local-echo-display-when-in-input-passwords-C.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Entware/rtndev/HEAD/7-zip/patches/0003-Disable-local-echo-display-when-in-input-passwords-C.patch -------------------------------------------------------------------------------- /7-zip/patches/0004-Use-system-locale-to-select-codepage-for-legacy-zip-.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Entware/rtndev/HEAD/7-zip/patches/0004-Use-system-locale-to-select-codepage-for-legacy-zip-.patch -------------------------------------------------------------------------------- /7-zip/patches/100-no-softfloat-arm-optimization.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Entware/rtndev/HEAD/7-zip/patches/100-no-softfloat-arm-optimization.patch -------------------------------------------------------------------------------- /7-zip/patches/110-Remove_Werror_flag.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Entware/rtndev/HEAD/7-zip/patches/110-Remove_Werror_flag.patch -------------------------------------------------------------------------------- /7-zip/patches/110-x86_without_SSE.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Entware/rtndev/HEAD/7-zip/patches/110-x86_without_SSE.patch -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Entware/rtndev/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Entware/rtndev/HEAD/README.md -------------------------------------------------------------------------------- /accel-ppp/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Entware/rtndev/HEAD/accel-ppp/Makefile -------------------------------------------------------------------------------- /accel-ppp/files/S60accel-ppp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Entware/rtndev/HEAD/accel-ppp/files/S60accel-ppp -------------------------------------------------------------------------------- /accel-ppp/patches/020-config-paths.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Entware/rtndev/HEAD/accel-ppp/patches/020-config-paths.patch -------------------------------------------------------------------------------- /accel-ppp/patches/030-linkage.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Entware/rtndev/HEAD/accel-ppp/patches/030-linkage.patch -------------------------------------------------------------------------------- /accel-ppp/patches/040-ppp-no-modprobe.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Entware/rtndev/HEAD/accel-ppp/patches/040-ppp-no-modprobe.patch -------------------------------------------------------------------------------- /accel-ppp/patches/060-paths.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Entware/rtndev/HEAD/accel-ppp/patches/060-paths.patch -------------------------------------------------------------------------------- /afpfs-ng/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Entware/rtndev/HEAD/afpfs-ng/Makefile -------------------------------------------------------------------------------- /afpfs-ng/patches/010-shell-path.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Entware/rtndev/HEAD/afpfs-ng/patches/010-shell-path.patch -------------------------------------------------------------------------------- /afpfs-ng/patches/020-no_docs.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Entware/rtndev/HEAD/afpfs-ng/patches/020-no_docs.patch -------------------------------------------------------------------------------- /aha/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Entware/rtndev/HEAD/aha/Makefile -------------------------------------------------------------------------------- /aide/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Entware/rtndev/HEAD/aide/Makefile -------------------------------------------------------------------------------- /aide/patches/010-fix-for-old-kernels.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Entware/rtndev/HEAD/aide/patches/010-fix-for-old-kernels.patch -------------------------------------------------------------------------------- /airprint/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Entware/rtndev/HEAD/airprint/Makefile -------------------------------------------------------------------------------- /airprint/files/airprint-generate.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Entware/rtndev/HEAD/airprint/files/airprint-generate.py -------------------------------------------------------------------------------- /airprint/files/airprint.convs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Entware/rtndev/HEAD/airprint/files/airprint.convs -------------------------------------------------------------------------------- /airprint/files/airprint.types: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Entware/rtndev/HEAD/airprint/files/airprint.types -------------------------------------------------------------------------------- /airsane/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Entware/rtndev/HEAD/airsane/Makefile -------------------------------------------------------------------------------- /airsane/files/S43airsaned: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Entware/rtndev/HEAD/airsane/files/S43airsaned -------------------------------------------------------------------------------- /airsane/patches/020-paths.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Entware/rtndev/HEAD/airsane/patches/020-paths.patch -------------------------------------------------------------------------------- /alaya/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Entware/rtndev/HEAD/alaya/Makefile -------------------------------------------------------------------------------- /alaya/files/S80alaya: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Entware/rtndev/HEAD/alaya/files/S80alaya -------------------------------------------------------------------------------- /alaya/patches/030-conf-paths.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Entware/rtndev/HEAD/alaya/patches/030-conf-paths.patch -------------------------------------------------------------------------------- /alaya/patches/040-hardcoded-paths.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Entware/rtndev/HEAD/alaya/patches/040-hardcoded-paths.patch -------------------------------------------------------------------------------- /angband/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Entware/rtndev/HEAD/angband/Makefile -------------------------------------------------------------------------------- /angband/patches/010-saves-path.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Entware/rtndev/HEAD/angband/patches/010-saves-path.patch -------------------------------------------------------------------------------- /angband/patches/020-use_LDFLAGS_for_binary_only.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Entware/rtndev/HEAD/angband/patches/020-use_LDFLAGS_for_binary_only.patch -------------------------------------------------------------------------------- /archivemount/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Entware/rtndev/HEAD/archivemount/Makefile -------------------------------------------------------------------------------- /archivemount/patches/010-fuse-headers.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Entware/rtndev/HEAD/archivemount/patches/010-fuse-headers.patch -------------------------------------------------------------------------------- /arpon/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Entware/rtndev/HEAD/arpon/Makefile -------------------------------------------------------------------------------- /arpon/patches/010-exlclude_host_paths.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Entware/rtndev/HEAD/arpon/patches/010-exlclude_host_paths.patch -------------------------------------------------------------------------------- /arpon/patches/020-paths.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Entware/rtndev/HEAD/arpon/patches/020-paths.patch -------------------------------------------------------------------------------- /asciinema/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Entware/rtndev/HEAD/asciinema/Makefile -------------------------------------------------------------------------------- /aspell/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Entware/rtndev/HEAD/aspell/Makefile -------------------------------------------------------------------------------- /aspell/files/aspell.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Entware/rtndev/HEAD/aspell/files/aspell.conf -------------------------------------------------------------------------------- /asterisk-chan-quectel/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Entware/rtndev/HEAD/asterisk-chan-quectel/Makefile -------------------------------------------------------------------------------- /asterisk-chan-quectel/patches/010-cross.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Entware/rtndev/HEAD/asterisk-chan-quectel/patches/010-cross.patch -------------------------------------------------------------------------------- /asterisk-chan-quectel/patches/020-fix-paths.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Entware/rtndev/HEAD/asterisk-chan-quectel/patches/020-fix-paths.patch -------------------------------------------------------------------------------- /astra/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Entware/rtndev/HEAD/astra/Makefile -------------------------------------------------------------------------------- /astra/patches/010-nomarchc.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Entware/rtndev/HEAD/astra/patches/010-nomarchc.patch -------------------------------------------------------------------------------- /astra/patches/020-nold.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Entware/rtndev/HEAD/astra/patches/020-nold.patch -------------------------------------------------------------------------------- /astra/patches/030-nosse_cross.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Entware/rtndev/HEAD/astra/patches/030-nosse_cross.patch -------------------------------------------------------------------------------- /astra/patches/040-no_aio.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Entware/rtndev/HEAD/astra/patches/040-no_aio.patch -------------------------------------------------------------------------------- /autofs/Config.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Entware/rtndev/HEAD/autofs/Config.in -------------------------------------------------------------------------------- /autofs/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Entware/rtndev/HEAD/autofs/Makefile -------------------------------------------------------------------------------- /autofs/patches/010-fix-paths.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Entware/rtndev/HEAD/autofs/patches/010-fix-paths.patch -------------------------------------------------------------------------------- /automatic/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Entware/rtndev/HEAD/automatic/Makefile -------------------------------------------------------------------------------- /automatic/files/S91automatic: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Entware/rtndev/HEAD/automatic/files/S91automatic -------------------------------------------------------------------------------- /automatic/patches/010-config-dir.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Entware/rtndev/HEAD/automatic/patches/010-config-dir.patch -------------------------------------------------------------------------------- /automatic/patches/020-src-dir.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Entware/rtndev/HEAD/automatic/patches/020-src-dir.patch -------------------------------------------------------------------------------- /automatic/patches/030-CFLAGS.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Entware/rtndev/HEAD/automatic/patches/030-CFLAGS.patch -------------------------------------------------------------------------------- /automatic/patches/040-no_tests.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Entware/rtndev/HEAD/automatic/patches/040-no_tests.patch -------------------------------------------------------------------------------- /axel/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Entware/rtndev/HEAD/axel/Makefile -------------------------------------------------------------------------------- /bacula/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Entware/rtndev/HEAD/bacula/Makefile -------------------------------------------------------------------------------- /bacula/files/S80bacula-dir: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Entware/rtndev/HEAD/bacula/files/S80bacula-dir -------------------------------------------------------------------------------- /bacula/files/S80bacula-fd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Entware/rtndev/HEAD/bacula/files/S80bacula-fd -------------------------------------------------------------------------------- /bacula/files/S80bacula-sd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Entware/rtndev/HEAD/bacula/files/S80bacula-sd -------------------------------------------------------------------------------- /bacula/patches/500-startup.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Entware/rtndev/HEAD/bacula/patches/500-startup.patch -------------------------------------------------------------------------------- /bacula/patches/501-make_catalog.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Entware/rtndev/HEAD/bacula/patches/501-make_catalog.patch -------------------------------------------------------------------------------- /badvpn/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Entware/rtndev/HEAD/badvpn/Makefile -------------------------------------------------------------------------------- /bfgminer/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Entware/rtndev/HEAD/bfgminer/Makefile -------------------------------------------------------------------------------- /bindfs/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Entware/rtndev/HEAD/bindfs/Makefile -------------------------------------------------------------------------------- /bip/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Entware/rtndev/HEAD/bip/Makefile -------------------------------------------------------------------------------- /bip/files/S99bip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Entware/rtndev/HEAD/bip/files/S99bip -------------------------------------------------------------------------------- /bochs/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Entware/rtndev/HEAD/bochs/Makefile -------------------------------------------------------------------------------- /bochs/patches/010-fix_curses.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Entware/rtndev/HEAD/bochs/patches/010-fix_curses.patch -------------------------------------------------------------------------------- /bochs/patches/020-fetchdecode_opmap_0f3a_braces.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Entware/rtndev/HEAD/bochs/patches/020-fetchdecode_opmap_0f3a_braces.patch -------------------------------------------------------------------------------- /bochs/patches/030-fetchdecode_opmap_0f38_braces.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Entware/rtndev/HEAD/bochs/patches/030-fetchdecode_opmap_0f38_braces.patch -------------------------------------------------------------------------------- /brlaser/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Entware/rtndev/HEAD/brlaser/Makefile -------------------------------------------------------------------------------- /cadaver/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Entware/rtndev/HEAD/cadaver/Makefile -------------------------------------------------------------------------------- /castget/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Entware/rtndev/HEAD/castget/Makefile -------------------------------------------------------------------------------- /castget/patches/010-paths.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Entware/rtndev/HEAD/castget/patches/010-paths.patch -------------------------------------------------------------------------------- /castget/patches/020-config.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Entware/rtndev/HEAD/castget/patches/020-config.patch -------------------------------------------------------------------------------- /cavezofphear/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Entware/rtndev/HEAD/cavezofphear/Makefile -------------------------------------------------------------------------------- /cavezofphear/patches/010-unroll_657d107_new_arg_declaration.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Entware/rtndev/HEAD/cavezofphear/patches/010-unroll_657d107_new_arg_declaration.patch -------------------------------------------------------------------------------- /cdrkit/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Entware/rtndev/HEAD/cdrkit/Makefile -------------------------------------------------------------------------------- /cdrkit/patches/0003-Add-extern-to-char-outfile-declaration-to-fix-build-.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Entware/rtndev/HEAD/cdrkit/patches/0003-Add-extern-to-char-outfile-declaration-to-fix-build-.patch -------------------------------------------------------------------------------- /cdrkit/patches/0004-Add-missing-header-includes.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Entware/rtndev/HEAD/cdrkit/patches/0004-Add-missing-header-includes.patch -------------------------------------------------------------------------------- /cdrkit/patches/0005-CMakeLists.txt-add-cmake_minimum_required.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Entware/rtndev/HEAD/cdrkit/patches/0005-CMakeLists.txt-add-cmake_minimum_required.patch -------------------------------------------------------------------------------- /cdrkit/patches/500-missing-hdr.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Entware/rtndev/HEAD/cdrkit/patches/500-missing-hdr.patch -------------------------------------------------------------------------------- /cdrkit/patches/510-fix-paths.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Entware/rtndev/HEAD/cdrkit/patches/510-fix-paths.patch -------------------------------------------------------------------------------- /cgdb/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Entware/rtndev/HEAD/cgdb/Makefile -------------------------------------------------------------------------------- /cgdb/patches/010-Fix-handling-of-local-m4-macros.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Entware/rtndev/HEAD/cgdb/patches/010-Fix-handling-of-local-m4-macros.patch -------------------------------------------------------------------------------- /cgit/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Entware/rtndev/HEAD/cgit/Makefile -------------------------------------------------------------------------------- /cgit/patches/100-configure_for_crosscompiling.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Entware/rtndev/HEAD/cgit/patches/100-configure_for_crosscompiling.patch -------------------------------------------------------------------------------- /cgit/patches/500-fix_default_paths.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Entware/rtndev/HEAD/cgit/patches/500-fix_default_paths.patch -------------------------------------------------------------------------------- /cgit/patches/600-fix-paths.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Entware/rtndev/HEAD/cgit/patches/600-fix-paths.patch -------------------------------------------------------------------------------- /chromaprint/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Entware/rtndev/HEAD/chromaprint/Makefile -------------------------------------------------------------------------------- /chromaprint/patches/001-fix-ffmpeg-5x.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Entware/rtndev/HEAD/chromaprint/patches/001-fix-ffmpeg-5x.patch -------------------------------------------------------------------------------- /cmake/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Entware/rtndev/HEAD/cmake/Makefile -------------------------------------------------------------------------------- /corosync-qdevice/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Entware/rtndev/HEAD/corosync-qdevice/Makefile -------------------------------------------------------------------------------- /corosync-qdevice/patches/010-no-man.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Entware/rtndev/HEAD/corosync-qdevice/patches/010-no-man.patch -------------------------------------------------------------------------------- /corosync-qdevice/patches/020-fix-startup.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Entware/rtndev/HEAD/corosync-qdevice/patches/020-fix-startup.patch -------------------------------------------------------------------------------- /corosync-qdevice/patches/030-bash.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Entware/rtndev/HEAD/corosync-qdevice/patches/030-bash.patch -------------------------------------------------------------------------------- /corosync-qdevice/patches/040-fix-stat.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Entware/rtndev/HEAD/corosync-qdevice/patches/040-fix-stat.patch -------------------------------------------------------------------------------- /corosync/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Entware/rtndev/HEAD/corosync/Makefile -------------------------------------------------------------------------------- /corosync/files/corosync.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Entware/rtndev/HEAD/corosync/files/corosync.conf -------------------------------------------------------------------------------- /corosync/patches/010-no-man.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Entware/rtndev/HEAD/corosync/patches/010-no-man.patch -------------------------------------------------------------------------------- /corosync/patches/020-fix-pkgconfig.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Entware/rtndev/HEAD/corosync/patches/020-fix-pkgconfig.patch -------------------------------------------------------------------------------- /corosync/patches/030-fix-startup.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Entware/rtndev/HEAD/corosync/patches/030-fix-startup.patch -------------------------------------------------------------------------------- /corosync/patches/040-bash.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Entware/rtndev/HEAD/corosync/patches/040-bash.patch -------------------------------------------------------------------------------- /corosync/patches/050-log.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Entware/rtndev/HEAD/corosync/patches/050-log.patch -------------------------------------------------------------------------------- /cpio/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Entware/rtndev/HEAD/cpio/Makefile -------------------------------------------------------------------------------- /crawl/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Entware/rtndev/HEAD/crawl/Makefile -------------------------------------------------------------------------------- /crawl/patches/010-LDFLAGS.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Entware/rtndev/HEAD/crawl/patches/010-LDFLAGS.patch -------------------------------------------------------------------------------- /crawl/patches/020-tilegen-host-compile.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Entware/rtndev/HEAD/crawl/patches/020-tilegen-host-compile.patch -------------------------------------------------------------------------------- /crawl/patches/050-define-FILE-OFFSET-BITS.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Entware/rtndev/HEAD/crawl/patches/050-define-FILE-OFFSET-BITS.patch -------------------------------------------------------------------------------- /crawl/patches/070-macro-dir.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Entware/rtndev/HEAD/crawl/patches/070-macro-dir.patch -------------------------------------------------------------------------------- /crawl/patches/090-version_num.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Entware/rtndev/HEAD/crawl/patches/090-version_num.patch -------------------------------------------------------------------------------- /cron/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Entware/rtndev/HEAD/cron/Makefile -------------------------------------------------------------------------------- /cron/files/S10cron: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Entware/rtndev/HEAD/cron/files/S10cron -------------------------------------------------------------------------------- /cron/files/crontab: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Entware/rtndev/HEAD/cron/files/crontab -------------------------------------------------------------------------------- /cron/files/run-parts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Entware/rtndev/HEAD/cron/files/run-parts -------------------------------------------------------------------------------- /cron/patches/100-Makefile.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Entware/rtndev/HEAD/cron/patches/100-Makefile.patch -------------------------------------------------------------------------------- /cron/patches/200-crond.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Entware/rtndev/HEAD/cron/patches/200-crond.patch -------------------------------------------------------------------------------- /cron/patches/300-pathnames.h.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Entware/rtndev/HEAD/cron/patches/300-pathnames.h.patch -------------------------------------------------------------------------------- /cron/patches/400-add_syslog_option.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Entware/rtndev/HEAD/cron/patches/400-add_syslog_option.patch -------------------------------------------------------------------------------- /cryfs/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Entware/rtndev/HEAD/cryfs/Makefile -------------------------------------------------------------------------------- /cryfs/patches/050-low-power-cpu.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Entware/rtndev/HEAD/cryfs/patches/050-low-power-cpu.patch -------------------------------------------------------------------------------- /cryfs/patches/100-disable-asm.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Entware/rtndev/HEAD/cryfs/patches/100-disable-asm.patch -------------------------------------------------------------------------------- /cryfs/patches/150-missing-hdr.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Entware/rtndev/HEAD/cryfs/patches/150-missing-hdr.patch -------------------------------------------------------------------------------- /ctags/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Entware/rtndev/HEAD/ctags/Makefile -------------------------------------------------------------------------------- /ctags/patches/010-fix.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Entware/rtndev/HEAD/ctags/patches/010-fix.patch -------------------------------------------------------------------------------- /cuetools/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Entware/rtndev/HEAD/cuetools/Makefile -------------------------------------------------------------------------------- /cups-filters/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Entware/rtndev/HEAD/cups-filters/Makefile -------------------------------------------------------------------------------- /cups-filters/files/S82cups-browsed: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Entware/rtndev/HEAD/cups-filters/files/S82cups-browsed -------------------------------------------------------------------------------- /cups-filters/patches/0002-qpdf-needs-at-least-c-17.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Entware/rtndev/HEAD/cups-filters/patches/0002-qpdf-needs-at-least-c-17.patch -------------------------------------------------------------------------------- /cups-filters/patches/0003-fix-CVE-2023-24805.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Entware/rtndev/HEAD/cups-filters/patches/0003-fix-CVE-2023-24805.patch -------------------------------------------------------------------------------- /cups-filters/patches/0004-CVE-2024-47076.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Entware/rtndev/HEAD/cups-filters/patches/0004-CVE-2024-47076.patch -------------------------------------------------------------------------------- /cups-filters/patches/0005-CVE-2024-47176.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Entware/rtndev/HEAD/cups-filters/patches/0005-CVE-2024-47176.patch -------------------------------------------------------------------------------- /cups-filters/patches/0006-qpdf-12.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Entware/rtndev/HEAD/cups-filters/patches/0006-qpdf-12.patch -------------------------------------------------------------------------------- /cups-filters/patches/500-fix-paths.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Entware/rtndev/HEAD/cups-filters/patches/500-fix-paths.patch -------------------------------------------------------------------------------- /cups-pdf/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Entware/rtndev/HEAD/cups-pdf/Makefile -------------------------------------------------------------------------------- /cups-pdf/patches/900-entware-dir.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Entware/rtndev/HEAD/cups-pdf/patches/900-entware-dir.patch -------------------------------------------------------------------------------- /cvs/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Entware/rtndev/HEAD/cvs/Makefile -------------------------------------------------------------------------------- /cvs/patches/500-getline.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Entware/rtndev/HEAD/cvs/patches/500-getline.patch -------------------------------------------------------------------------------- /daemonize/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Entware/rtndev/HEAD/daemonize/Makefile -------------------------------------------------------------------------------- /daemonize/patches/010-default-path.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Entware/rtndev/HEAD/daemonize/patches/010-default-path.patch -------------------------------------------------------------------------------- /daemontools-encore/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Entware/rtndev/HEAD/daemontools-encore/Makefile -------------------------------------------------------------------------------- /daemontools-encore/files/S03daemontools-encore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Entware/rtndev/HEAD/daemontools-encore/files/S03daemontools-encore -------------------------------------------------------------------------------- /daemontools-encore/patches/010-disable_runtime_tests.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Entware/rtndev/HEAD/daemontools-encore/patches/010-disable_runtime_tests.patch -------------------------------------------------------------------------------- /daemontools-encore/patches/020-svscanboot.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Entware/rtndev/HEAD/daemontools-encore/patches/020-svscanboot.patch -------------------------------------------------------------------------------- /deluge/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Entware/rtndev/HEAD/deluge/Makefile -------------------------------------------------------------------------------- /deluge/files/S80deluged: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Entware/rtndev/HEAD/deluge/files/S80deluged -------------------------------------------------------------------------------- /deluge/files/S81deluge-web: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Entware/rtndev/HEAD/deluge/files/S81deluge-web -------------------------------------------------------------------------------- /deluge/files/deluge-web-reset_password: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Entware/rtndev/HEAD/deluge/files/deluge-web-reset_password -------------------------------------------------------------------------------- /deluge/patches/020-fix_geoip_path.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Entware/rtndev/HEAD/deluge/patches/020-fix_geoip_path.patch -------------------------------------------------------------------------------- /dfc/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Entware/rtndev/HEAD/dfc/Makefile -------------------------------------------------------------------------------- /dfc/patches/010-prevent_unwanted_color_pollution.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Entware/rtndev/HEAD/dfc/patches/010-prevent_unwanted_color_pollution.patch -------------------------------------------------------------------------------- /dislocker/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Entware/rtndev/HEAD/dislocker/Makefile -------------------------------------------------------------------------------- /dislocker/patches/010-disable-usr-path.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Entware/rtndev/HEAD/dislocker/patches/010-disable-usr-path.patch -------------------------------------------------------------------------------- /dislocker/patches/020-ssl-lib-detection.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Entware/rtndev/HEAD/dislocker/patches/020-ssl-lib-detection.patch -------------------------------------------------------------------------------- /dislocker/patches/030-support-mbedtls-3x.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Entware/rtndev/HEAD/dislocker/patches/030-support-mbedtls-3x.patch -------------------------------------------------------------------------------- /duktape/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Entware/rtndev/HEAD/duktape/Makefile -------------------------------------------------------------------------------- /duktape/patches/020-shared-library.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Entware/rtndev/HEAD/duktape/patches/020-shared-library.patch -------------------------------------------------------------------------------- /encfs/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Entware/rtndev/HEAD/encfs/Makefile -------------------------------------------------------------------------------- /encfs/patches/010-exclude_SYSTEM_directive.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Entware/rtndev/HEAD/encfs/patches/010-exclude_SYSTEM_directive.patch -------------------------------------------------------------------------------- /encfs/patches/500-output-file-is-a-directory.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Entware/rtndev/HEAD/encfs/patches/500-output-file-is-a-directory.patch -------------------------------------------------------------------------------- /endlessh/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Entware/rtndev/HEAD/endlessh/Makefile -------------------------------------------------------------------------------- /endlessh/files/S99endlessh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Entware/rtndev/HEAD/endlessh/files/S99endlessh -------------------------------------------------------------------------------- /endlessh/patches/010-fix-conf-path.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Entware/rtndev/HEAD/endlessh/patches/010-fix-conf-path.patch -------------------------------------------------------------------------------- /entr/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Entware/rtndev/HEAD/entr/Makefile -------------------------------------------------------------------------------- /entware-opt/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Entware/rtndev/HEAD/entware-opt/Makefile -------------------------------------------------------------------------------- /entware-opt/files/.inputrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Entware/rtndev/HEAD/entware-opt/files/.inputrc -------------------------------------------------------------------------------- /entware-opt/files/.profile: -------------------------------------------------------------------------------- 1 | #!/bin/sh 2 | 3 | . /opt/etc/profile 4 | -------------------------------------------------------------------------------- /entware-opt/files/group.1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Entware/rtndev/HEAD/entware-opt/files/group.1 -------------------------------------------------------------------------------- /entware-opt/files/passwd.1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Entware/rtndev/HEAD/entware-opt/files/passwd.1 -------------------------------------------------------------------------------- /entware-opt/files/profile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Entware/rtndev/HEAD/entware-opt/files/profile -------------------------------------------------------------------------------- /entware-opt/files/rc.func: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Entware/rtndev/HEAD/entware-opt/files/rc.func -------------------------------------------------------------------------------- /entware-opt/files/rc.unslung: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Entware/rtndev/HEAD/entware-opt/files/rc.unslung -------------------------------------------------------------------------------- /entware-opt/files/shells.1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Entware/rtndev/HEAD/entware-opt/files/shells.1 -------------------------------------------------------------------------------- /entware-release/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Entware/rtndev/HEAD/entware-release/Makefile -------------------------------------------------------------------------------- /entware-upgrade/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Entware/rtndev/HEAD/entware-upgrade/Makefile -------------------------------------------------------------------------------- /espeak-ng/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Entware/rtndev/HEAD/espeak-ng/Makefile -------------------------------------------------------------------------------- /espeak-ng/patches/010-klatt-garbage.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Entware/rtndev/HEAD/espeak-ng/patches/010-klatt-garbage.patch -------------------------------------------------------------------------------- /espeak-ng/patches/020-libsonic-bigendian.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Entware/rtndev/HEAD/espeak-ng/patches/020-libsonic-bigendian.patch -------------------------------------------------------------------------------- /espeak-ng/patches/030-bufsize.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Entware/rtndev/HEAD/espeak-ng/patches/030-bufsize.patch -------------------------------------------------------------------------------- /espeak-ng/patches/040-fix-cancel.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Entware/rtndev/HEAD/espeak-ng/patches/040-fix-cancel.patch -------------------------------------------------------------------------------- /espeak-ng/patches/050-privacy.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Entware/rtndev/HEAD/espeak-ng/patches/050-privacy.patch -------------------------------------------------------------------------------- /espeak-ng/patches/060-x.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Entware/rtndev/HEAD/espeak-ng/patches/060-x.patch -------------------------------------------------------------------------------- /espeak-ng/patches/070-CI.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Entware/rtndev/HEAD/espeak-ng/patches/070-CI.patch -------------------------------------------------------------------------------- /espeak-ng/patches/080-nocard.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Entware/rtndev/HEAD/espeak-ng/patches/080-nocard.patch -------------------------------------------------------------------------------- /espeak-ng/patches/090-clang-target.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Entware/rtndev/HEAD/espeak-ng/patches/090-clang-target.patch -------------------------------------------------------------------------------- /espeak-ng/patches/100-fuzz-link.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Entware/rtndev/HEAD/espeak-ng/patches/100-fuzz-link.patch -------------------------------------------------------------------------------- /espeak-ng/patches/110-th_dict.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Entware/rtndev/HEAD/espeak-ng/patches/110-th_dict.patch -------------------------------------------------------------------------------- /espeak-ng/patches/120-compile-reproducibility.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Entware/rtndev/HEAD/espeak-ng/patches/120-compile-reproducibility.patch -------------------------------------------------------------------------------- /espeak-ng/patches/130-espeak-stdin.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Entware/rtndev/HEAD/espeak-ng/patches/130-espeak-stdin.patch -------------------------------------------------------------------------------- /espeak-ng/patches/140-piper.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Entware/rtndev/HEAD/espeak-ng/patches/140-piper.patch -------------------------------------------------------------------------------- /espeak-ng/patches/200-host_utility_for_phoneme_compilation.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Entware/rtndev/HEAD/espeak-ng/patches/200-host_utility_for_phoneme_compilation.patch -------------------------------------------------------------------------------- /exfat-fuse/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Entware/rtndev/HEAD/exfat-fuse/Makefile -------------------------------------------------------------------------------- /exiv2/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Entware/rtndev/HEAD/exiv2/Makefile -------------------------------------------------------------------------------- /exiv2/patches/020-remove_redunant_compile_flags.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Entware/rtndev/HEAD/exiv2/patches/020-remove_redunant_compile_flags.patch -------------------------------------------------------------------------------- /expect/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Entware/rtndev/HEAD/expect/Makefile -------------------------------------------------------------------------------- /expect/patches/010-enable-cross-compilation.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Entware/rtndev/HEAD/expect/patches/010-enable-cross-compilation.patch -------------------------------------------------------------------------------- /expect/patches/020-allow-tcl-build-directory.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Entware/rtndev/HEAD/expect/patches/020-allow-tcl-build-directory.patch -------------------------------------------------------------------------------- /expect/patches/030-no_host_tclsh.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Entware/rtndev/HEAD/expect/patches/030-no_host_tclsh.patch -------------------------------------------------------------------------------- /ext4magic/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Entware/rtndev/HEAD/ext4magic/Makefile -------------------------------------------------------------------------------- /ext4magic/patches/010-fix-paths.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Entware/rtndev/HEAD/ext4magic/patches/010-fix-paths.patch -------------------------------------------------------------------------------- /ext4magic/patches/020-fix-new-e2fs.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Entware/rtndev/HEAD/ext4magic/patches/020-fix-new-e2fs.patch -------------------------------------------------------------------------------- /ext4magic/patches/030-fix-missing-hdrs.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Entware/rtndev/HEAD/ext4magic/patches/030-fix-missing-hdrs.patch -------------------------------------------------------------------------------- /ext4magic/patches/040-fix-stringop-overflow.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Entware/rtndev/HEAD/ext4magic/patches/040-fix-stringop-overflow.patch -------------------------------------------------------------------------------- /extundelete/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Entware/rtndev/HEAD/extundelete/Makefile -------------------------------------------------------------------------------- /extundelete/patches/010-fix_segmentation_fault.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Entware/rtndev/HEAD/extundelete/patches/010-fix_segmentation_fault.patch -------------------------------------------------------------------------------- /extundelete/patches/020-fix_ftbfs.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Entware/rtndev/HEAD/extundelete/patches/020-fix_ftbfs.patch -------------------------------------------------------------------------------- /extundelete/patches/030-fix-configure.ac-to-work-with-recent-automake-autoconf.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Entware/rtndev/HEAD/extundelete/patches/030-fix-configure.ac-to-work-with-recent-automake-autoconf.patch -------------------------------------------------------------------------------- /fake-hwclock/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Entware/rtndev/HEAD/fake-hwclock/Makefile -------------------------------------------------------------------------------- /fake-hwclock/files/S01fake-hwclock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Entware/rtndev/HEAD/fake-hwclock/files/S01fake-hwclock -------------------------------------------------------------------------------- /fake-hwclock/patches/010-data-path.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Entware/rtndev/HEAD/fake-hwclock/patches/010-data-path.patch -------------------------------------------------------------------------------- /far2l/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Entware/rtndev/HEAD/far2l/Makefile -------------------------------------------------------------------------------- /far2l/patches/010-fix-arm.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Entware/rtndev/HEAD/far2l/patches/010-fix-arm.patch -------------------------------------------------------------------------------- /fatrace/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Entware/rtndev/HEAD/fatrace/Makefile -------------------------------------------------------------------------------- /ffmpegthumbnailer/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Entware/rtndev/HEAD/ffmpegthumbnailer/Makefile -------------------------------------------------------------------------------- /fossil/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Entware/rtndev/HEAD/fossil/Makefile -------------------------------------------------------------------------------- /fossil/patches/010-cross_compile.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Entware/rtndev/HEAD/fossil/patches/010-cross_compile.patch -------------------------------------------------------------------------------- /fossil/patches/020-source_includes.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Entware/rtndev/HEAD/fossil/patches/020-source_includes.patch -------------------------------------------------------------------------------- /freediameter/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Entware/rtndev/HEAD/freediameter/Makefile -------------------------------------------------------------------------------- /fuse-convmvfs/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Entware/rtndev/HEAD/fuse-convmvfs/Makefile -------------------------------------------------------------------------------- /fzy/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Entware/rtndev/HEAD/fzy/Makefile -------------------------------------------------------------------------------- /fzy/patches/010-cross-compile_flags.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Entware/rtndev/HEAD/fzy/patches/010-cross-compile_flags.patch -------------------------------------------------------------------------------- /ghostscript/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Entware/rtndev/HEAD/ghostscript/Makefile -------------------------------------------------------------------------------- /ghostscript/patches/020-paths.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Entware/rtndev/HEAD/ghostscript/patches/020-paths.patch -------------------------------------------------------------------------------- /gnuchess/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Entware/rtndev/HEAD/gnuchess/Makefile -------------------------------------------------------------------------------- /gnuchess/patches/001-ini.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Entware/rtndev/HEAD/gnuchess/patches/001-ini.patch -------------------------------------------------------------------------------- /go/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Entware/rtndev/HEAD/go/Makefile -------------------------------------------------------------------------------- /go/patches/010-entware.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Entware/rtndev/HEAD/go/patches/010-entware.patch -------------------------------------------------------------------------------- /go/patches/020-group-passwd.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Entware/rtndev/HEAD/go/patches/020-group-passwd.patch -------------------------------------------------------------------------------- /go/patches/030-linuxdynld.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Entware/rtndev/HEAD/go/patches/030-linuxdynld.patch -------------------------------------------------------------------------------- /goaccess/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Entware/rtndev/HEAD/goaccess/Makefile -------------------------------------------------------------------------------- /goaccess/patches/010-bin2c.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Entware/rtndev/HEAD/goaccess/patches/010-bin2c.patch -------------------------------------------------------------------------------- /goaccess/patches/020-no_translation.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Entware/rtndev/HEAD/goaccess/patches/020-no_translation.patch -------------------------------------------------------------------------------- /goaccess/patches/030-tmp_path.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Entware/rtndev/HEAD/goaccess/patches/030-tmp_path.patch -------------------------------------------------------------------------------- /grive2/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Entware/rtndev/HEAD/grive2/Makefile -------------------------------------------------------------------------------- /grive2/patches/010-libdl.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Entware/rtndev/HEAD/grive2/patches/010-libdl.patch -------------------------------------------------------------------------------- /grive2/patches/020-boost.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Entware/rtndev/HEAD/grive2/patches/020-boost.patch -------------------------------------------------------------------------------- /grive2/patches/030_stdint.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Entware/rtndev/HEAD/grive2/patches/030_stdint.patch -------------------------------------------------------------------------------- /groff/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Entware/rtndev/HEAD/groff/Makefile -------------------------------------------------------------------------------- /groff/patches/010-no-generate.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Entware/rtndev/HEAD/groff/patches/010-no-generate.patch -------------------------------------------------------------------------------- /gutenprint/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Entware/rtndev/HEAD/gutenprint/Makefile -------------------------------------------------------------------------------- /gutenprint/patches/020-extract-strings.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Entware/rtndev/HEAD/gutenprint/patches/020-extract-strings.patch -------------------------------------------------------------------------------- /highlight/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Entware/rtndev/HEAD/highlight/Makefile -------------------------------------------------------------------------------- /highlight/patches/010-fix-cross-autotools.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Entware/rtndev/HEAD/highlight/patches/010-fix-cross-autotools.patch -------------------------------------------------------------------------------- /highlight/patches/020-fix-cross-cmake.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Entware/rtndev/HEAD/highlight/patches/020-fix-cross-cmake.patch -------------------------------------------------------------------------------- /highlight/patches/030-fix-cross-meson.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Entware/rtndev/HEAD/highlight/patches/030-fix-cross-meson.patch -------------------------------------------------------------------------------- /highlight/patches/040-fix-paths.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Entware/rtndev/HEAD/highlight/patches/040-fix-paths.patch -------------------------------------------------------------------------------- /hlspxd/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Entware/rtndev/HEAD/hlspxd/Makefile -------------------------------------------------------------------------------- /hlspxd/files/S92hlspxd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Entware/rtndev/HEAD/hlspxd/files/S92hlspxd -------------------------------------------------------------------------------- /hlspxd/patches/100-fix_comments_typos_MSVC_build.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Entware/rtndev/HEAD/hlspxd/patches/100-fix_comments_typos_MSVC_build.patch -------------------------------------------------------------------------------- /hlspxd/patches/200-samsung-orsay-support.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Entware/rtndev/HEAD/hlspxd/patches/200-samsung-orsay-support.patch -------------------------------------------------------------------------------- /hlspxd/patches/201-apache-httpd-compatibility.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Entware/rtndev/HEAD/hlspxd/patches/201-apache-httpd-compatibility.patch -------------------------------------------------------------------------------- /hlspxd/patches/202-relative-redirection-support.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Entware/rtndev/HEAD/hlspxd/patches/202-relative-redirection-support.patch -------------------------------------------------------------------------------- /hlspxd/src/hlspxd.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Entware/rtndev/HEAD/hlspxd/src/hlspxd.cpp -------------------------------------------------------------------------------- /hlspxd/src/platform.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Entware/rtndev/HEAD/hlspxd/src/platform.cpp -------------------------------------------------------------------------------- /hlspxd/src/platform.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Entware/rtndev/HEAD/hlspxd/src/platform.h -------------------------------------------------------------------------------- /hlspxd/src/utils.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Entware/rtndev/HEAD/hlspxd/src/utils.cpp -------------------------------------------------------------------------------- /hlspxd/src/utils.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Entware/rtndev/HEAD/hlspxd/src/utils.h -------------------------------------------------------------------------------- /hlspxd/src/videoviewer.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Entware/rtndev/HEAD/hlspxd/src/videoviewer.cpp -------------------------------------------------------------------------------- /hlspxd/src/videoviewer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Entware/rtndev/HEAD/hlspxd/src/videoviewer.h -------------------------------------------------------------------------------- /hstr/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Entware/rtndev/HEAD/hstr/Makefile -------------------------------------------------------------------------------- /httrack/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Entware/rtndev/HEAD/httrack/Makefile -------------------------------------------------------------------------------- /httrack/patches/010-server_usage_example.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Entware/rtndev/HEAD/httrack/patches/010-server_usage_example.patch -------------------------------------------------------------------------------- /incron/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Entware/rtndev/HEAD/incron/Makefile -------------------------------------------------------------------------------- /incron/files/S12incron: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Entware/rtndev/HEAD/incron/files/S12incron -------------------------------------------------------------------------------- /incron/patches/010_prevent_zombies.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Entware/rtndev/HEAD/incron/patches/010_prevent_zombies.patch -------------------------------------------------------------------------------- /incron/patches/030-incron-conf-paths.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Entware/rtndev/HEAD/incron/patches/030-incron-conf-paths.patch -------------------------------------------------------------------------------- /incron/patches/040-default-paths.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Entware/rtndev/HEAD/incron/patches/040-default-paths.patch -------------------------------------------------------------------------------- /inetutils/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Entware/rtndev/HEAD/inetutils/Makefile -------------------------------------------------------------------------------- /inetutils/patches/010-PATH_PROCNET_DEV.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Entware/rtndev/HEAD/inetutils/patches/010-PATH_PROCNET_DEV.patch -------------------------------------------------------------------------------- /ioping/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Entware/rtndev/HEAD/ioping/Makefile -------------------------------------------------------------------------------- /iotop/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Entware/rtndev/HEAD/iotop/Makefile -------------------------------------------------------------------------------- /iotop/patches/010-pgpgin_pgpgout_def.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Entware/rtndev/HEAD/iotop/patches/010-pgpgin_pgpgout_def.patch -------------------------------------------------------------------------------- /iprange/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Entware/rtndev/HEAD/iprange/Makefile -------------------------------------------------------------------------------- /istgt/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Entware/rtndev/HEAD/istgt/Makefile -------------------------------------------------------------------------------- /istgt/files/S13istgt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Entware/rtndev/HEAD/istgt/files/S13istgt -------------------------------------------------------------------------------- /istgt/patches/010-disable-ssp.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Entware/rtndev/HEAD/istgt/patches/010-disable-ssp.patch -------------------------------------------------------------------------------- /istgt/patches/020-disable-host-strip.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Entware/rtndev/HEAD/istgt/patches/020-disable-host-strip.patch -------------------------------------------------------------------------------- /isync/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Entware/rtndev/HEAD/isync/Makefile -------------------------------------------------------------------------------- /jailkit/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Entware/rtndev/HEAD/jailkit/Makefile -------------------------------------------------------------------------------- /jailkit/patches/010-respect_CFLAGS.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Entware/rtndev/HEAD/jailkit/patches/010-respect_CFLAGS.patch -------------------------------------------------------------------------------- /jailkit/patches/020-shells_and_man.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Entware/rtndev/HEAD/jailkit/patches/020-shells_and_man.patch -------------------------------------------------------------------------------- /jbigkit/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Entware/rtndev/HEAD/jbigkit/Makefile -------------------------------------------------------------------------------- /jbigkit/patches/010-dynamic-lib.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Entware/rtndev/HEAD/jbigkit/patches/010-dynamic-lib.patch -------------------------------------------------------------------------------- /jbigkit/patches/020-LDFLAGS-for-tools.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Entware/rtndev/HEAD/jbigkit/patches/020-LDFLAGS-for-tools.patch -------------------------------------------------------------------------------- /jbigkit/patches/020-gcc42.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Entware/rtndev/HEAD/jbigkit/patches/020-gcc42.patch -------------------------------------------------------------------------------- /jdupes/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Entware/rtndev/HEAD/jdupes/Makefile -------------------------------------------------------------------------------- /jhead/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Entware/rtndev/HEAD/jhead/Makefile -------------------------------------------------------------------------------- /jhead/patches/010-flags.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Entware/rtndev/HEAD/jhead/patches/010-flags.patch -------------------------------------------------------------------------------- /jo/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Entware/rtndev/HEAD/jo/Makefile -------------------------------------------------------------------------------- /keyd/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Entware/rtndev/HEAD/keyd/Makefile -------------------------------------------------------------------------------- /keyd/files/default.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Entware/rtndev/HEAD/keyd/files/default.conf -------------------------------------------------------------------------------- /keyd/patches/010-cross.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Entware/rtndev/HEAD/keyd/patches/010-cross.patch -------------------------------------------------------------------------------- /keyd/patches/020-fix-for-old-kernels.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Entware/rtndev/HEAD/keyd/patches/020-fix-for-old-kernels.patch -------------------------------------------------------------------------------- /kronosnet/Config.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Entware/rtndev/HEAD/kronosnet/Config.in -------------------------------------------------------------------------------- /kronosnet/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Entware/rtndev/HEAD/kronosnet/Makefile -------------------------------------------------------------------------------- /lcms/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Entware/rtndev/HEAD/lcms/Makefile -------------------------------------------------------------------------------- /libcryptopp/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Entware/rtndev/HEAD/libcryptopp/Makefile -------------------------------------------------------------------------------- /libcryptopp/files/cryptest.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Entware/rtndev/HEAD/libcryptopp/files/cryptest.sh -------------------------------------------------------------------------------- /libcryptopp/patches/010-disable_asm.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Entware/rtndev/HEAD/libcryptopp/patches/010-disable_asm.patch -------------------------------------------------------------------------------- /libcryptopp/patches/100-Fix_potential_zeroizer_removal.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Entware/rtndev/HEAD/libcryptopp/patches/100-Fix_potential_zeroizer_removal.patch -------------------------------------------------------------------------------- /libcryptopp/patches/110-integer.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Entware/rtndev/HEAD/libcryptopp/patches/110-integer.patch -------------------------------------------------------------------------------- /libcryptopp/patches/120-CVE-2016-9939.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Entware/rtndev/HEAD/libcryptopp/patches/120-CVE-2016-9939.patch -------------------------------------------------------------------------------- /libcryptopp/patches/130-Additional_ASN.1_validations.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Entware/rtndev/HEAD/libcryptopp/patches/130-Additional_ASN.1_validations.patch -------------------------------------------------------------------------------- /libcryptopp/patches/140-zinflate-564.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Entware/rtndev/HEAD/libcryptopp/patches/140-zinflate-564.patch -------------------------------------------------------------------------------- /libcryptopp/patches/200-fix-paths.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Entware/rtndev/HEAD/libcryptopp/patches/200-fix-paths.patch -------------------------------------------------------------------------------- /libjodycode/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Entware/rtndev/HEAD/libjodycode/Makefile -------------------------------------------------------------------------------- /liblpeg/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Entware/rtndev/HEAD/liblpeg/Makefile -------------------------------------------------------------------------------- /liblpeg/patches/010-add-cmake.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Entware/rtndev/HEAD/liblpeg/patches/010-add-cmake.patch -------------------------------------------------------------------------------- /libmediainfo/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Entware/rtndev/HEAD/libmediainfo/Makefile -------------------------------------------------------------------------------- /libmpack-lua/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Entware/rtndev/HEAD/libmpack-lua/Makefile -------------------------------------------------------------------------------- /libmpack-lua/patches/010-host-lua.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Entware/rtndev/HEAD/libmpack-lua/patches/010-host-lua.patch -------------------------------------------------------------------------------- /libmtp/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Entware/rtndev/HEAD/libmtp/Makefile -------------------------------------------------------------------------------- /libmtp/patches/010-cross-compile.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Entware/rtndev/HEAD/libmtp/patches/010-cross-compile.patch -------------------------------------------------------------------------------- /libnfs/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Entware/rtndev/HEAD/libnfs/Makefile -------------------------------------------------------------------------------- /libpipeline/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Entware/rtndev/HEAD/libpipeline/Makefile -------------------------------------------------------------------------------- /libqb/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Entware/rtndev/HEAD/libqb/Makefile -------------------------------------------------------------------------------- /libstatgrab/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Entware/rtndev/HEAD/libstatgrab/Makefile -------------------------------------------------------------------------------- /libzen/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Entware/rtndev/HEAD/libzen/Makefile -------------------------------------------------------------------------------- /limitcpu/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Entware/rtndev/HEAD/limitcpu/Makefile -------------------------------------------------------------------------------- /loadwatch/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Entware/rtndev/HEAD/loadwatch/Makefile -------------------------------------------------------------------------------- /loadwatch/patches/010-Makefile.in.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Entware/rtndev/HEAD/loadwatch/patches/010-Makefile.in.patch -------------------------------------------------------------------------------- /loadwatch/patches/020-loadwatch.c.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Entware/rtndev/HEAD/loadwatch/patches/020-loadwatch.c.patch -------------------------------------------------------------------------------- /loadwatch/patches/030-lw-ctl.c.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Entware/rtndev/HEAD/loadwatch/patches/030-lw-ctl.c.patch -------------------------------------------------------------------------------- /loadwatch/patches/040-configure.in.diff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Entware/rtndev/HEAD/loadwatch/patches/040-configure.in.diff -------------------------------------------------------------------------------- /locales/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Entware/rtndev/HEAD/locales/Makefile -------------------------------------------------------------------------------- /loggedfs/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Entware/rtndev/HEAD/loggedfs/Makefile -------------------------------------------------------------------------------- /loggedfs/patches/500-entware.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Entware/rtndev/HEAD/loggedfs/patches/500-entware.patch -------------------------------------------------------------------------------- /ltrace/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Entware/rtndev/HEAD/ltrace/Makefile -------------------------------------------------------------------------------- /ltrace/patches/010-fix.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Entware/rtndev/HEAD/ltrace/patches/010-fix.patch -------------------------------------------------------------------------------- /man-db/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Entware/rtndev/HEAD/man-db/Makefile -------------------------------------------------------------------------------- /man-db/files/man_db.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Entware/rtndev/HEAD/man-db/files/man_db.conf -------------------------------------------------------------------------------- /man-db/patches/010-html_pager.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Entware/rtndev/HEAD/man-db/patches/010-html_pager.patch -------------------------------------------------------------------------------- /man-db/patches/020-fix-paths.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Entware/rtndev/HEAD/man-db/patches/020-fix-paths.patch -------------------------------------------------------------------------------- /man-pages/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Entware/rtndev/HEAD/man-pages/Makefile -------------------------------------------------------------------------------- /mathomatic/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Entware/rtndev/HEAD/mathomatic/Makefile -------------------------------------------------------------------------------- /mediainfo/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Entware/rtndev/HEAD/mediainfo/Makefile -------------------------------------------------------------------------------- /megacmd/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Entware/rtndev/HEAD/megacmd/Makefile -------------------------------------------------------------------------------- /mergerfs/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Entware/rtndev/HEAD/mergerfs/Makefile -------------------------------------------------------------------------------- /mergerfs/patches/010-libfuse_cross-compile.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Entware/rtndev/HEAD/mergerfs/patches/010-libfuse_cross-compile.patch -------------------------------------------------------------------------------- /meson-python/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Entware/rtndev/HEAD/meson-python/Makefile -------------------------------------------------------------------------------- /meson-python/patches/001-unpin-build-dependencies.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Entware/rtndev/HEAD/meson-python/patches/001-unpin-build-dependencies.patch -------------------------------------------------------------------------------- /meson-python/patches/020-find-meson.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Entware/rtndev/HEAD/meson-python/patches/020-find-meson.patch -------------------------------------------------------------------------------- /meson-python/patches/030-vendor.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Entware/rtndev/HEAD/meson-python/patches/030-vendor.patch -------------------------------------------------------------------------------- /microdc2/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Entware/rtndev/HEAD/microdc2/Makefile -------------------------------------------------------------------------------- /microdc2/files/microdc2.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Entware/rtndev/HEAD/microdc2/files/microdc2.conf -------------------------------------------------------------------------------- /microdc2/patches/010-paths.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Entware/rtndev/HEAD/microdc2/patches/010-paths.patch -------------------------------------------------------------------------------- /microdc2/patches/020-no-po.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Entware/rtndev/HEAD/microdc2/patches/020-no-po.patch -------------------------------------------------------------------------------- /microdc2/patches/030-no_docs.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Entware/rtndev/HEAD/microdc2/patches/030-no_docs.patch -------------------------------------------------------------------------------- /minissdpd/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Entware/rtndev/HEAD/minissdpd/Makefile -------------------------------------------------------------------------------- /minissdpd/files/S11minissdpd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Entware/rtndev/HEAD/minissdpd/files/S11minissdpd -------------------------------------------------------------------------------- /minissdpd/files/minissdpd.conf: -------------------------------------------------------------------------------- 1 | INTERFACE=br0 2 | -------------------------------------------------------------------------------- /minissdpd/patches/010-paths.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Entware/rtndev/HEAD/minissdpd/patches/010-paths.patch -------------------------------------------------------------------------------- /mkvtoolnix/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Entware/rtndev/HEAD/mkvtoolnix/Makefile -------------------------------------------------------------------------------- /mkvtoolnix/patches/010-no_manpages.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Entware/rtndev/HEAD/mkvtoolnix/patches/010-no_manpages.patch -------------------------------------------------------------------------------- /mkvtoolnix/patches/020-fix-ruby.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Entware/rtndev/HEAD/mkvtoolnix/patches/020-fix-ruby.patch -------------------------------------------------------------------------------- /mkvtoolnix/patches/030-fmt_internal.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Entware/rtndev/HEAD/mkvtoolnix/patches/030-fmt_internal.patch -------------------------------------------------------------------------------- /mlocate/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Entware/rtndev/HEAD/mlocate/Makefile -------------------------------------------------------------------------------- /mlocate/patches/010-mlocate-0.26-include-order-fix.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Entware/rtndev/HEAD/mlocate/patches/010-mlocate-0.26-include-order-fix.patch -------------------------------------------------------------------------------- /movgrab/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Entware/rtndev/HEAD/movgrab/Makefile -------------------------------------------------------------------------------- /movgrab/patches/010-fix.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Entware/rtndev/HEAD/movgrab/patches/010-fix.patch -------------------------------------------------------------------------------- /mp3gain/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Entware/rtndev/HEAD/mp3gain/Makefile -------------------------------------------------------------------------------- /mp707/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Entware/rtndev/HEAD/mp707/Makefile -------------------------------------------------------------------------------- /mp707/patches/010-RODOS_support.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Entware/rtndev/HEAD/mp707/patches/010-RODOS_support.patch -------------------------------------------------------------------------------- /mpdscribble/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Entware/rtndev/HEAD/mpdscribble/Makefile -------------------------------------------------------------------------------- /mpdscribble/patches/010-fix-libgcrypt.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Entware/rtndev/HEAD/mpdscribble/patches/010-fix-libgcrypt.patch -------------------------------------------------------------------------------- /mpdscribble/patches/020-missing-hdr.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Entware/rtndev/HEAD/mpdscribble/patches/020-missing-hdr.patch -------------------------------------------------------------------------------- /mqtt-exec/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Entware/rtndev/HEAD/mqtt-exec/Makefile -------------------------------------------------------------------------------- /msd/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Entware/rtndev/HEAD/msd/Makefile -------------------------------------------------------------------------------- /msd/files/S29msd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Entware/rtndev/HEAD/msd/files/S29msd -------------------------------------------------------------------------------- /msd/patches/010-tmpfile.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Entware/rtndev/HEAD/msd/patches/010-tmpfile.patch -------------------------------------------------------------------------------- /msd/patches/020-conf.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Entware/rtndev/HEAD/msd/patches/020-conf.patch -------------------------------------------------------------------------------- /msd/patches/030-CMakeLists.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Entware/rtndev/HEAD/msd/patches/030-CMakeLists.patch -------------------------------------------------------------------------------- /multitail/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Entware/rtndev/HEAD/multitail/Makefile -------------------------------------------------------------------------------- /multitail/patches/010-config-path.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Entware/rtndev/HEAD/multitail/patches/010-config-path.patch -------------------------------------------------------------------------------- /multitail/patches/020-GLIBC-def.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Entware/rtndev/HEAD/multitail/patches/020-GLIBC-def.patch -------------------------------------------------------------------------------- /multitail/patches/030-ncurses.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Entware/rtndev/HEAD/multitail/patches/030-ncurses.patch -------------------------------------------------------------------------------- /ncdc/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Entware/rtndev/HEAD/ncdc/Makefile -------------------------------------------------------------------------------- /ncdc/patches/010-no-docs.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Entware/rtndev/HEAD/ncdc/patches/010-no-docs.patch -------------------------------------------------------------------------------- /ncdc/patches/020-paths.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Entware/rtndev/HEAD/ncdc/patches/020-paths.patch -------------------------------------------------------------------------------- /ndisc6/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Entware/rtndev/HEAD/ndisc6/Makefile -------------------------------------------------------------------------------- /neovim/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Entware/rtndev/HEAD/neovim/Makefile -------------------------------------------------------------------------------- /neovim/patches/010-fix-cross.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Entware/rtndev/HEAD/neovim/patches/010-fix-cross.patch -------------------------------------------------------------------------------- /neovim/patches/020-downgrade-deps.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Entware/rtndev/HEAD/neovim/patches/020-downgrade-deps.patch -------------------------------------------------------------------------------- /nethack/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Entware/rtndev/HEAD/nethack/Makefile -------------------------------------------------------------------------------- /nethack/patches/010-Makefile.dat.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Entware/rtndev/HEAD/nethack/patches/010-Makefile.dat.patch -------------------------------------------------------------------------------- /nethack/patches/020-Makefile.utl.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Entware/rtndev/HEAD/nethack/patches/020-Makefile.utl.patch -------------------------------------------------------------------------------- /nethack/patches/030-Makefile.src.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Entware/rtndev/HEAD/nethack/patches/030-Makefile.src.patch -------------------------------------------------------------------------------- /nethack/patches/040-Makefile.top.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Entware/rtndev/HEAD/nethack/patches/040-Makefile.top.patch -------------------------------------------------------------------------------- /nethack/patches/050-nethack.sh.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Entware/rtndev/HEAD/nethack/patches/050-nethack.sh.patch -------------------------------------------------------------------------------- /nethack/patches/060-tparm-doubled-def.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Entware/rtndev/HEAD/nethack/patches/060-tparm-doubled-def.patch -------------------------------------------------------------------------------- /nethack/patches/070-config.h.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Entware/rtndev/HEAD/nethack/patches/070-config.h.patch -------------------------------------------------------------------------------- /nethack/patches/080-target-defs.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Entware/rtndev/HEAD/nethack/patches/080-target-defs.patch -------------------------------------------------------------------------------- /nethogs/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Entware/rtndev/HEAD/nethogs/Makefile -------------------------------------------------------------------------------- /nethogs/patches/010-no-tests.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Entware/rtndev/HEAD/nethogs/patches/010-no-tests.patch -------------------------------------------------------------------------------- /nfusr/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Entware/rtndev/HEAD/nfusr/Makefile -------------------------------------------------------------------------------- /nfusr/patches/010-entware.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Entware/rtndev/HEAD/nfusr/patches/010-entware.patch -------------------------------------------------------------------------------- /nfusr/patches/020-makedev_warning.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Entware/rtndev/HEAD/nfusr/patches/020-makedev_warning.patch -------------------------------------------------------------------------------- /nfusr/patches/030-mount.nfusr_ash_compat.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Entware/rtndev/HEAD/nfusr/patches/030-mount.nfusr_ash_compat.patch -------------------------------------------------------------------------------- /ngrok-c/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Entware/rtndev/HEAD/ngrok-c/Makefile -------------------------------------------------------------------------------- /ngrok-c/patches/010-fix_pointer_comparison.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Entware/rtndev/HEAD/ngrok-c/patches/010-fix_pointer_comparison.patch -------------------------------------------------------------------------------- /ngrok-c/src/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Entware/rtndev/HEAD/ngrok-c/src/Makefile -------------------------------------------------------------------------------- /nmon/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Entware/rtndev/HEAD/nmon/Makefile -------------------------------------------------------------------------------- /node-pnpm/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Entware/rtndev/HEAD/node-pnpm/Makefile -------------------------------------------------------------------------------- /nonroot/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Entware/rtndev/HEAD/nonroot/Makefile -------------------------------------------------------------------------------- /nonroot/patches/010-cross-compile.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Entware/rtndev/HEAD/nonroot/patches/010-cross-compile.patch -------------------------------------------------------------------------------- /nss-mdns/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Entware/rtndev/HEAD/nss-mdns/Makefile -------------------------------------------------------------------------------- /ntopng/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Entware/rtndev/HEAD/ntopng/Makefile -------------------------------------------------------------------------------- /ntopng/files/S72ntopng: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Entware/rtndev/HEAD/ntopng/files/S72ntopng -------------------------------------------------------------------------------- /ntopng/patches/010-cross.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Entware/rtndev/HEAD/ntopng/patches/010-cross.patch -------------------------------------------------------------------------------- /ntopng/patches/015-fix-ndpi.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Entware/rtndev/HEAD/ntopng/patches/015-fix-ndpi.patch -------------------------------------------------------------------------------- /ntopng/patches/020-fix-conf.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Entware/rtndev/HEAD/ntopng/patches/020-fix-conf.patch -------------------------------------------------------------------------------- /ntopng/patches/030-fix-paths.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Entware/rtndev/HEAD/ntopng/patches/030-fix-paths.patch -------------------------------------------------------------------------------- /ntopng/patches/040-fix-misc.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Entware/rtndev/HEAD/ntopng/patches/040-fix-misc.patch -------------------------------------------------------------------------------- /ntopng/patches/050-fix-version.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Entware/rtndev/HEAD/ntopng/patches/050-fix-version.patch -------------------------------------------------------------------------------- /ntopng/patches/060-fix-lua.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Entware/rtndev/HEAD/ntopng/patches/060-fix-lua.patch -------------------------------------------------------------------------------- /ntopng/patches/070-fix-TZ.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Entware/rtndev/HEAD/ntopng/patches/070-fix-TZ.patch -------------------------------------------------------------------------------- /nyancat/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Entware/rtndev/HEAD/nyancat/Makefile -------------------------------------------------------------------------------- /oscam/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Entware/rtndev/HEAD/oscam/Makefile -------------------------------------------------------------------------------- /oscam/files/S59oscam: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Entware/rtndev/HEAD/oscam/files/S59oscam -------------------------------------------------------------------------------- /oscam/patches/001-opt_path.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Entware/rtndev/HEAD/oscam/patches/001-opt_path.patch -------------------------------------------------------------------------------- /oscam/patches/010-cross-compile.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Entware/rtndev/HEAD/oscam/patches/010-cross-compile.patch -------------------------------------------------------------------------------- /oscam/patches/020-log-dir.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Entware/rtndev/HEAD/oscam/patches/020-log-dir.patch -------------------------------------------------------------------------------- /p0f/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Entware/rtndev/HEAD/p0f/Makefile -------------------------------------------------------------------------------- /p0f/patches/010-change-DB-default-path.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Entware/rtndev/HEAD/p0f/patches/010-change-DB-default-path.patch -------------------------------------------------------------------------------- /p0f/patches/020-compiler-and-linker-flags.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Entware/rtndev/HEAD/p0f/patches/020-compiler-and-linker-flags.patch -------------------------------------------------------------------------------- /p7zip/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Entware/rtndev/HEAD/p7zip/Makefile -------------------------------------------------------------------------------- /p7zip/patches/010-Enhanced-encryption-strength.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Entware/rtndev/HEAD/p7zip/patches/010-Enhanced-encryption-strength.patch -------------------------------------------------------------------------------- /par2cmdline/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Entware/rtndev/HEAD/par2cmdline/Makefile -------------------------------------------------------------------------------- /patchelf/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Entware/rtndev/HEAD/patchelf/Makefile -------------------------------------------------------------------------------- /pcal/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Entware/rtndev/HEAD/pcal/Makefile -------------------------------------------------------------------------------- /perl-dbd-pg/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Entware/rtndev/HEAD/perl-dbd-pg/Makefile -------------------------------------------------------------------------------- /perl-image-exiftool/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Entware/rtndev/HEAD/perl-image-exiftool/Makefile -------------------------------------------------------------------------------- /phodav/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Entware/rtndev/HEAD/phodav/Makefile -------------------------------------------------------------------------------- /php8-pecl-apcu/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Entware/rtndev/HEAD/php8-pecl-apcu/Makefile -------------------------------------------------------------------------------- /php8-pecl-event/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Entware/rtndev/HEAD/php8-pecl-event/Makefile -------------------------------------------------------------------------------- /php8-pecl-gmagick/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Entware/rtndev/HEAD/php8-pecl-gmagick/Makefile -------------------------------------------------------------------------------- /php8-pecl-gmagick/patches/010-GraphicsMagick-config_path.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Entware/rtndev/HEAD/php8-pecl-gmagick/patches/010-GraphicsMagick-config_path.patch -------------------------------------------------------------------------------- /php8-pecl-ssh2/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Entware/rtndev/HEAD/php8-pecl-ssh2/Makefile -------------------------------------------------------------------------------- /php8-pecl-trader/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Entware/rtndev/HEAD/php8-pecl-trader/Makefile -------------------------------------------------------------------------------- /pimd/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Entware/rtndev/HEAD/pimd/Makefile -------------------------------------------------------------------------------- /pimd/files/S69pimd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Entware/rtndev/HEAD/pimd/files/S69pimd -------------------------------------------------------------------------------- /pinentry/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Entware/rtndev/HEAD/pinentry/Makefile -------------------------------------------------------------------------------- /pingu/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Entware/rtndev/HEAD/pingu/Makefile -------------------------------------------------------------------------------- /pingu/files/S11pingu: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Entware/rtndev/HEAD/pingu/files/S11pingu -------------------------------------------------------------------------------- /pingu/patches/010-paths.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Entware/rtndev/HEAD/pingu/patches/010-paths.patch -------------------------------------------------------------------------------- /pixelserv-tls/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Entware/rtndev/HEAD/pixelserv-tls/Makefile -------------------------------------------------------------------------------- /pixelserv-tls/files/S80pixelserv-tls: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Entware/rtndev/HEAD/pixelserv-tls/files/S80pixelserv-tls -------------------------------------------------------------------------------- /pixelserv-tls/patches/010-fix-paths.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Entware/rtndev/HEAD/pixelserv-tls/patches/010-fix-paths.patch -------------------------------------------------------------------------------- /pixelserv-tls/patches/020-fix-openssl-3x.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Entware/rtndev/HEAD/pixelserv-tls/patches/020-fix-openssl-3x.patch -------------------------------------------------------------------------------- /poppler/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Entware/rtndev/HEAD/poppler/Makefile -------------------------------------------------------------------------------- /poppler/patches/010-fix-pkgconfig.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Entware/rtndev/HEAD/poppler/patches/010-fix-pkgconfig.patch -------------------------------------------------------------------------------- /portspoof/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Entware/rtndev/HEAD/portspoof/Makefile -------------------------------------------------------------------------------- /ps3netsrv/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Entware/rtndev/HEAD/ps3netsrv/Makefile -------------------------------------------------------------------------------- /ps3netsrv/files/S76ps3netsrv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Entware/rtndev/HEAD/ps3netsrv/files/S76ps3netsrv -------------------------------------------------------------------------------- /ps3netsrv/patches/010-cross-compile.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Entware/rtndev/HEAD/ps3netsrv/patches/010-cross-compile.patch -------------------------------------------------------------------------------- /ptokax/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Entware/rtndev/HEAD/ptokax/Makefile -------------------------------------------------------------------------------- /ptokax/files/S95ptokax: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Entware/rtndev/HEAD/ptokax/files/S95ptokax -------------------------------------------------------------------------------- /ptokax/patches/010-ntohl-ntohs-replacement.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Entware/rtndev/HEAD/ptokax/patches/010-ntohl-ntohs-replacement.patch -------------------------------------------------------------------------------- /ptokax/patches/020-makefile.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Entware/rtndev/HEAD/ptokax/patches/020-makefile.patch -------------------------------------------------------------------------------- /ptokax/patches/030-skein.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Entware/rtndev/HEAD/ptokax/patches/030-skein.patch -------------------------------------------------------------------------------- /ptokax/patches/040-tinixml.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Entware/rtndev/HEAD/ptokax/patches/040-tinixml.patch -------------------------------------------------------------------------------- /pureftpd/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Entware/rtndev/HEAD/pureftpd/Makefile -------------------------------------------------------------------------------- /pureftpd/files/S65pureftpd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Entware/rtndev/HEAD/pureftpd/files/S65pureftpd -------------------------------------------------------------------------------- /pureftpd/patches/010-mysql_runtime_test.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Entware/rtndev/HEAD/pureftpd/patches/010-mysql_runtime_test.patch -------------------------------------------------------------------------------- /pwnat/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Entware/rtndev/HEAD/pwnat/Makefile -------------------------------------------------------------------------------- /pwnat/patches/010-cross-compile.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Entware/rtndev/HEAD/pwnat/patches/010-cross-compile.patch -------------------------------------------------------------------------------- /pwnat/patches/020-fix.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Entware/rtndev/HEAD/pwnat/patches/020-fix.patch -------------------------------------------------------------------------------- /python-characteristic/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Entware/rtndev/HEAD/python-characteristic/Makefile -------------------------------------------------------------------------------- /python-cups/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Entware/rtndev/HEAD/python-cups/Makefile -------------------------------------------------------------------------------- /python-cups/patches/010-fix-paths.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Entware/rtndev/HEAD/python-cups/patches/010-fix-paths.patch -------------------------------------------------------------------------------- /python-regex/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Entware/rtndev/HEAD/python-regex/Makefile -------------------------------------------------------------------------------- /python-rencode/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Entware/rtndev/HEAD/python-rencode/Makefile -------------------------------------------------------------------------------- /python-rencode/patches/600-fix-cython.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Entware/rtndev/HEAD/python-rencode/patches/600-fix-cython.patch -------------------------------------------------------------------------------- /python-setproctitle/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Entware/rtndev/HEAD/python-setproctitle/Makefile -------------------------------------------------------------------------------- /python-ujson/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Entware/rtndev/HEAD/python-ujson/Makefile -------------------------------------------------------------------------------- /python3-uvloop/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Entware/rtndev/HEAD/python3-uvloop/Makefile -------------------------------------------------------------------------------- /qbittorrent/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Entware/rtndev/HEAD/qbittorrent/Makefile -------------------------------------------------------------------------------- /qbittorrent/files/S89qbittorrent: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Entware/rtndev/HEAD/qbittorrent/files/S89qbittorrent -------------------------------------------------------------------------------- /qbittorrent/patches/010-fix-libstdc++fs.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Entware/rtndev/HEAD/qbittorrent/patches/010-fix-libstdc++fs.patch -------------------------------------------------------------------------------- /qpdf/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Entware/rtndev/HEAD/qpdf/Makefile -------------------------------------------------------------------------------- /qpdf/patches/020-fix-pkgconfig.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Entware/rtndev/HEAD/qpdf/patches/020-fix-pkgconfig.patch -------------------------------------------------------------------------------- /qt5/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Entware/rtndev/HEAD/qt5/Makefile -------------------------------------------------------------------------------- /qt5/patches/010-fix-for-old-kernels.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Entware/rtndev/HEAD/qt5/patches/010-fix-for-old-kernels.patch -------------------------------------------------------------------------------- /qt5/patches/020-atomic.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Entware/rtndev/HEAD/qt5/patches/020-atomic.patch -------------------------------------------------------------------------------- /qt5/patches/050-iconv.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Entware/rtndev/HEAD/qt5/patches/050-iconv.patch -------------------------------------------------------------------------------- /qt5/patches/060-glib2.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Entware/rtndev/HEAD/qt5/patches/060-glib2.patch -------------------------------------------------------------------------------- /qt5/patches/070-certs-paths.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Entware/rtndev/HEAD/qt5/patches/070-certs-paths.patch -------------------------------------------------------------------------------- /qt5/src/qtbase/mkspecs/devices/linux-entware-g++/arch.conf: -------------------------------------------------------------------------------- 1 | !host_build { 2 | LIBS += -latomic 3 | } -------------------------------------------------------------------------------- /qt5/src/qtbase/mkspecs/devices/linux-entware-g++/qmake.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Entware/rtndev/HEAD/qt5/src/qtbase/mkspecs/devices/linux-entware-g++/qmake.conf -------------------------------------------------------------------------------- /qt5/src/qtbase/mkspecs/devices/linux-entware-g++/qplatformdefs.h: -------------------------------------------------------------------------------- 1 | #include "../../linux-g++/qplatformdefs.h" 2 | -------------------------------------------------------------------------------- /radare2/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Entware/rtndev/HEAD/radare2/Makefile -------------------------------------------------------------------------------- /rar2fs/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Entware/rtndev/HEAD/rar2fs/Makefile -------------------------------------------------------------------------------- /rcon/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Entware/rtndev/HEAD/rcon/Makefile -------------------------------------------------------------------------------- /rcon/patches/010-remove_libbsd_dep.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Entware/rtndev/HEAD/rcon/patches/010-remove_libbsd_dep.patch -------------------------------------------------------------------------------- /rdfind/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Entware/rtndev/HEAD/rdfind/Makefile -------------------------------------------------------------------------------- /rhash/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Entware/rtndev/HEAD/rhash/Makefile -------------------------------------------------------------------------------- /rtmpdump/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Entware/rtndev/HEAD/rtmpdump/Makefile -------------------------------------------------------------------------------- /rtmpdump/patches/010-use_gnutls.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Entware/rtndev/HEAD/rtmpdump/patches/010-use_gnutls.patch -------------------------------------------------------------------------------- /rtorrent-easy-install/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Entware/rtndev/HEAD/rtorrent-easy-install/Makefile -------------------------------------------------------------------------------- /rtorrent-easy-install/files/S85rtorrent: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Entware/rtndev/HEAD/rtorrent-easy-install/files/S85rtorrent -------------------------------------------------------------------------------- /rutorrent/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Entware/rtndev/HEAD/rutorrent/Makefile -------------------------------------------------------------------------------- /rutorrent/patches/010-paths.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Entware/rtndev/HEAD/rutorrent/patches/010-paths.patch -------------------------------------------------------------------------------- /rutorrent/patches/020-access-swap.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Entware/rtndev/HEAD/rutorrent/patches/020-access-swap.patch -------------------------------------------------------------------------------- /s3fs-fuse/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Entware/rtndev/HEAD/s3fs-fuse/Makefile -------------------------------------------------------------------------------- /s3fs-fuse/patches/010-fix-missing-hdr.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Entware/rtndev/HEAD/s3fs-fuse/patches/010-fix-missing-hdr.patch -------------------------------------------------------------------------------- /scream-receiver/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Entware/rtndev/HEAD/scream-receiver/Makefile -------------------------------------------------------------------------------- /sd-idle/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Entware/rtndev/HEAD/sd-idle/Makefile -------------------------------------------------------------------------------- /sd-idle/files/S16sdidle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Entware/rtndev/HEAD/sd-idle/files/S16sdidle -------------------------------------------------------------------------------- /sd-idle/src/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Entware/rtndev/HEAD/sd-idle/src/Makefile -------------------------------------------------------------------------------- /sd-idle/src/sd-idle-2.6.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Entware/rtndev/HEAD/sd-idle/src/sd-idle-2.6.c -------------------------------------------------------------------------------- /serf/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Entware/rtndev/HEAD/serf/Makefile -------------------------------------------------------------------------------- /serf/patches/500-disable.auto-rpath.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Entware/rtndev/HEAD/serf/patches/500-disable.auto-rpath.patch -------------------------------------------------------------------------------- /sg3_utils/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Entware/rtndev/HEAD/sg3_utils/Makefile -------------------------------------------------------------------------------- /shadowsocks-libev/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Entware/rtndev/HEAD/shadowsocks-libev/Makefile -------------------------------------------------------------------------------- /shadowsocks-libev/files/S22shadowsocks: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Entware/rtndev/HEAD/shadowsocks-libev/files/S22shadowsocks -------------------------------------------------------------------------------- /shadowsocks-libev/patches/100-Upgrade-PCRE-to-PCRE2.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Entware/rtndev/HEAD/shadowsocks-libev/patches/100-Upgrade-PCRE-to-PCRE2.patch -------------------------------------------------------------------------------- /shadowsocks-libev/patches/200-shadowsocks-mbedtls3.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Entware/rtndev/HEAD/shadowsocks-libev/patches/200-shadowsocks-mbedtls3.patch -------------------------------------------------------------------------------- /shake/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Entware/rtndev/HEAD/shake/Makefile -------------------------------------------------------------------------------- /shake/patches/010-no_docs.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Entware/rtndev/HEAD/shake/patches/010-no_docs.patch -------------------------------------------------------------------------------- /shc/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Entware/rtndev/HEAD/shc/Makefile -------------------------------------------------------------------------------- /shc/patches/500-gcc.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Entware/rtndev/HEAD/shc/patches/500-gcc.patch -------------------------------------------------------------------------------- /shellinabox/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Entware/rtndev/HEAD/shellinabox/Makefile -------------------------------------------------------------------------------- /shellinabox/files/S88shellinaboxd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Entware/rtndev/HEAD/shellinabox/files/S88shellinaboxd -------------------------------------------------------------------------------- /shellinabox/patches/010-add-opt-login.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Entware/rtndev/HEAD/shellinabox/patches/010-add-opt-login.patch -------------------------------------------------------------------------------- /shellinabox/patches/020-shellinabox.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Entware/rtndev/HEAD/shellinabox/patches/020-shellinabox.patch -------------------------------------------------------------------------------- /shntool/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Entware/rtndev/HEAD/shntool/Makefile -------------------------------------------------------------------------------- /shntool/patches/010-large-size.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Entware/rtndev/HEAD/shntool/patches/010-large-size.patch -------------------------------------------------------------------------------- /shntool/patches/020-large-times.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Entware/rtndev/HEAD/shntool/patches/020-large-times.patch -------------------------------------------------------------------------------- /shntool/patches/030-24bit-fix.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Entware/rtndev/HEAD/shntool/patches/030-24bit-fix.patch -------------------------------------------------------------------------------- /shntool/patches/030-no-cdquality-check.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Entware/rtndev/HEAD/shntool/patches/030-no-cdquality-check.patch -------------------------------------------------------------------------------- /simple-mtpfs/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Entware/rtndev/HEAD/simple-mtpfs/Makefile -------------------------------------------------------------------------------- /simple-obfs/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Entware/rtndev/HEAD/simple-obfs/Makefile -------------------------------------------------------------------------------- /simple-obfs/patches/010-fix-error-stringop.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Entware/rtndev/HEAD/simple-obfs/patches/010-fix-error-stringop.patch -------------------------------------------------------------------------------- /sitecopy/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Entware/rtndev/HEAD/sitecopy/Makefile -------------------------------------------------------------------------------- /sitecopy/patches/001-remote-dynamic-rc.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Entware/rtndev/HEAD/sitecopy/patches/001-remote-dynamic-rc.patch -------------------------------------------------------------------------------- /sitecopy/patches/003-wrong-memory-397155.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Entware/rtndev/HEAD/sitecopy/patches/003-wrong-memory-397155.patch -------------------------------------------------------------------------------- /sitecopy/patches/006-sftpdriver.c-fix-for-new-openssh.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Entware/rtndev/HEAD/sitecopy/patches/006-sftpdriver.c-fix-for-new-openssh.patch -------------------------------------------------------------------------------- /sitecopy/patches/010-bts410703-preserve-storage-files-sigint.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Entware/rtndev/HEAD/sitecopy/patches/010-bts410703-preserve-storage-files-sigint.patch -------------------------------------------------------------------------------- /sitecopy/patches/032_neon-0.31.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Entware/rtndev/HEAD/sitecopy/patches/032_neon-0.31.patch -------------------------------------------------------------------------------- /sitecopy/patches/100-neon_0.31.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Entware/rtndev/HEAD/sitecopy/patches/100-neon_0.31.patch -------------------------------------------------------------------------------- /splix/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Entware/rtndev/HEAD/splix/Makefile -------------------------------------------------------------------------------- /splix/patches/010-cross-compile.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Entware/rtndev/HEAD/splix/patches/010-cross-compile.patch -------------------------------------------------------------------------------- /sshguard/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Entware/rtndev/HEAD/sshguard/Makefile -------------------------------------------------------------------------------- /sshguard/patches/010-no_docs.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Entware/rtndev/HEAD/sshguard/patches/010-no_docs.patch -------------------------------------------------------------------------------- /superstartrek/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Entware/rtndev/HEAD/superstartrek/Makefile -------------------------------------------------------------------------------- /superstartrek/patches/010-paths.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Entware/rtndev/HEAD/superstartrek/patches/010-paths.patch -------------------------------------------------------------------------------- /superstartrek/patches/020-cross-compile.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Entware/rtndev/HEAD/superstartrek/patches/020-cross-compile.patch -------------------------------------------------------------------------------- /suricata/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Entware/rtndev/HEAD/suricata/Makefile -------------------------------------------------------------------------------- /tarsnap/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Entware/rtndev/HEAD/tarsnap/Makefile -------------------------------------------------------------------------------- /tarsnap/patches/010-fix-paths.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Entware/rtndev/HEAD/tarsnap/patches/010-fix-paths.patch -------------------------------------------------------------------------------- /task-spooler/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Entware/rtndev/HEAD/task-spooler/Makefile -------------------------------------------------------------------------------- /task-spooler/patches/010-paths.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Entware/rtndev/HEAD/task-spooler/patches/010-paths.patch -------------------------------------------------------------------------------- /telegram-cli/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Entware/rtndev/HEAD/telegram-cli/Makefile -------------------------------------------------------------------------------- /telegram-cli/patches/010-cross-compile.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Entware/rtndev/HEAD/telegram-cli/patches/010-cross-compile.patch -------------------------------------------------------------------------------- /telegram-cli/patches/020-tl-parser.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Entware/rtndev/HEAD/telegram-cli/patches/020-tl-parser.patch -------------------------------------------------------------------------------- /telegram-cli/patches/030-generate.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Entware/rtndev/HEAD/telegram-cli/patches/030-generate.patch -------------------------------------------------------------------------------- /telegram-cli/patches/040-lua.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Entware/rtndev/HEAD/telegram-cli/patches/040-lua.patch -------------------------------------------------------------------------------- /telegram-cli/patches/050-openssl_1.1_compat.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Entware/rtndev/HEAD/telegram-cli/patches/050-openssl_1.1_compat.patch -------------------------------------------------------------------------------- /telegram-cli/patches/060-no_cast_func_type.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Entware/rtndev/HEAD/telegram-cli/patches/060-no_cast_func_type.patch -------------------------------------------------------------------------------- /telegram-cli/patches/070-fix-error-cast-function-type.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Entware/rtndev/HEAD/telegram-cli/patches/070-fix-error-cast-function-type.patch -------------------------------------------------------------------------------- /testdisk/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Entware/rtndev/HEAD/testdisk/Makefile -------------------------------------------------------------------------------- /tidy-html5/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Entware/rtndev/HEAD/tidy-html5/Makefile -------------------------------------------------------------------------------- /tidy-html5/files/tidy.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Entware/rtndev/HEAD/tidy-html5/files/tidy.conf -------------------------------------------------------------------------------- /totd/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Entware/rtndev/HEAD/totd/Makefile -------------------------------------------------------------------------------- /totd/files/S57totd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Entware/rtndev/HEAD/totd/files/S57totd -------------------------------------------------------------------------------- /totd/patches/010-config.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Entware/rtndev/HEAD/totd/patches/010-config.patch -------------------------------------------------------------------------------- /trafficserver/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Entware/rtndev/HEAD/trafficserver/Makefile -------------------------------------------------------------------------------- /trafficserver/patches/010-fix-paths.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Entware/rtndev/HEAD/trafficserver/patches/010-fix-paths.patch -------------------------------------------------------------------------------- /trafficserver/patches/020-no-check-openssl.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Entware/rtndev/HEAD/trafficserver/patches/020-no-check-openssl.patch -------------------------------------------------------------------------------- /trafficserver/patches/030-fix-cross.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Entware/rtndev/HEAD/trafficserver/patches/030-fix-cross.patch -------------------------------------------------------------------------------- /trafficserver/patches/040-fix-for-old-kernels.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Entware/rtndev/HEAD/trafficserver/patches/040-fix-for-old-kernels.patch -------------------------------------------------------------------------------- /trafficserver/patches/050-no-openssl-engine.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Entware/rtndev/HEAD/trafficserver/patches/050-no-openssl-engine.patch -------------------------------------------------------------------------------- /trafficserver/patches/060-no-log-trace.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Entware/rtndev/HEAD/trafficserver/patches/060-no-log-trace.patch -------------------------------------------------------------------------------- /trafficserver/patches/100-unpin-build-env.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Entware/rtndev/HEAD/trafficserver/patches/100-unpin-build-env.patch -------------------------------------------------------------------------------- /transcode/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Entware/rtndev/HEAD/transcode/Makefile -------------------------------------------------------------------------------- /transmission-cfp/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Entware/rtndev/HEAD/transmission-cfp/Makefile -------------------------------------------------------------------------------- /transmission-cfp/files/S88transmission-cfp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Entware/rtndev/HEAD/transmission-cfp/files/S88transmission-cfp -------------------------------------------------------------------------------- /transmission-cfp/files/settings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Entware/rtndev/HEAD/transmission-cfp/files/settings.json -------------------------------------------------------------------------------- /transmission-cfp/patches/010-int64_switch.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Entware/rtndev/HEAD/transmission-cfp/patches/010-int64_switch.patch -------------------------------------------------------------------------------- /transmission-cfp/patches/020-fallocate64.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Entware/rtndev/HEAD/transmission-cfp/patches/020-fallocate64.patch -------------------------------------------------------------------------------- /transmission-cfp/patches/030-po.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Entware/rtndev/HEAD/transmission-cfp/patches/030-po.patch -------------------------------------------------------------------------------- /tree-sitter/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Entware/rtndev/HEAD/tree-sitter/Makefile -------------------------------------------------------------------------------- /tree-sitter/patches/010-fix-cross.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Entware/rtndev/HEAD/tree-sitter/patches/010-fix-cross.patch -------------------------------------------------------------------------------- /trojan/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Entware/rtndev/HEAD/trojan/Makefile -------------------------------------------------------------------------------- /trojan/files/S22trojan: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Entware/rtndev/HEAD/trojan/files/S22trojan -------------------------------------------------------------------------------- /tsmuxer/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Entware/rtndev/HEAD/tsmuxer/Makefile -------------------------------------------------------------------------------- /tsping/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Entware/rtndev/HEAD/tsping/Makefile -------------------------------------------------------------------------------- /tty-solitaire/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Entware/rtndev/HEAD/tty-solitaire/Makefile -------------------------------------------------------------------------------- /tunsafe/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Entware/rtndev/HEAD/tunsafe/Makefile -------------------------------------------------------------------------------- /tunsafe/files/S30tunsafe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Entware/rtndev/HEAD/tunsafe/files/S30tunsafe -------------------------------------------------------------------------------- /tunsafe/patches/010-compile-error-fix.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Entware/rtndev/HEAD/tunsafe/patches/010-compile-error-fix.patch -------------------------------------------------------------------------------- /tunsafe/patches/020-arm-neon-detection.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Entware/rtndev/HEAD/tunsafe/patches/020-arm-neon-detection.patch -------------------------------------------------------------------------------- /tunsafe/patches/030-handle-different-paths-of-ip.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Entware/rtndev/HEAD/tunsafe/patches/030-handle-different-paths-of-ip.patch -------------------------------------------------------------------------------- /tunsafe/patches/040-disable-thread-rename.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Entware/rtndev/HEAD/tunsafe/patches/040-disable-thread-rename.patch -------------------------------------------------------------------------------- /tunsafe/patches/050-fix-x86-sse-detection.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Entware/rtndev/HEAD/tunsafe/patches/050-fix-x86-sse-detection.patch -------------------------------------------------------------------------------- /tunsafe/patches/060-add-mipseb-architecture.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Entware/rtndev/HEAD/tunsafe/patches/060-add-mipseb-architecture.patch -------------------------------------------------------------------------------- /unibilium/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Entware/rtndev/HEAD/unibilium/Makefile -------------------------------------------------------------------------------- /unibilium/patches/010-fix-cross.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Entware/rtndev/HEAD/unibilium/patches/010-fix-cross.patch -------------------------------------------------------------------------------- /unionfs-fuse/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Entware/rtndev/HEAD/unionfs-fuse/Makefile -------------------------------------------------------------------------------- /unionfs-fuse/patches/010-force_64bit_off_t.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Entware/rtndev/HEAD/unionfs-fuse/patches/010-force_64bit_off_t.patch -------------------------------------------------------------------------------- /urbackup-server/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Entware/rtndev/HEAD/urbackup-server/Makefile -------------------------------------------------------------------------------- /urbackup-server/files/S60urbackup-server: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Entware/rtndev/HEAD/urbackup-server/files/S60urbackup-server -------------------------------------------------------------------------------- /urbackup-server/patches/010-no_usr_include.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Entware/rtndev/HEAD/urbackup-server/patches/010-no_usr_include.patch -------------------------------------------------------------------------------- /urbackup-server/patches/020-do-not-adduser.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Entware/rtndev/HEAD/urbackup-server/patches/020-do-not-adduser.patch -------------------------------------------------------------------------------- /urbackup-server/patches/030-disable_asm.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Entware/rtndev/HEAD/urbackup-server/patches/030-disable_asm.patch -------------------------------------------------------------------------------- /urbackup-server/patches/040-md5-bytes.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Entware/rtndev/HEAD/urbackup-server/patches/040-md5-bytes.patch -------------------------------------------------------------------------------- /usbrelay/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Entware/rtndev/HEAD/usbrelay/Makefile -------------------------------------------------------------------------------- /usbrelay/patches/010-lib_suffix.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Entware/rtndev/HEAD/usbrelay/patches/010-lib_suffix.patch -------------------------------------------------------------------------------- /utf8proc/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Entware/rtndev/HEAD/utf8proc/Makefile -------------------------------------------------------------------------------- /utf8proc/patches/010-fix-cross.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Entware/rtndev/HEAD/utf8proc/patches/010-fix-cross.patch -------------------------------------------------------------------------------- /vban/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Entware/rtndev/HEAD/vban/Makefile -------------------------------------------------------------------------------- /vban/patches/010-fix-paths.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Entware/rtndev/HEAD/vban/patches/010-fix-paths.patch -------------------------------------------------------------------------------- /vblade/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Entware/rtndev/HEAD/vblade/Makefile -------------------------------------------------------------------------------- /vblade/patches/010-compile-vars.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Entware/rtndev/HEAD/vblade/patches/010-compile-vars.patch -------------------------------------------------------------------------------- /vifm/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Entware/rtndev/HEAD/vifm/Makefile -------------------------------------------------------------------------------- /vifm/patches/010-fix-paths.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Entware/rtndev/HEAD/vifm/patches/010-fix-paths.patch -------------------------------------------------------------------------------- /vifm/patches/020-no-vifm-help.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Entware/rtndev/HEAD/vifm/patches/020-no-vifm-help.patch -------------------------------------------------------------------------------- /vitetris/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Entware/rtndev/HEAD/vitetris/Makefile -------------------------------------------------------------------------------- /vitetris/patches/020-disable-stripping.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Entware/rtndev/HEAD/vitetris/patches/020-disable-stripping.patch -------------------------------------------------------------------------------- /vitetris/patches/030-ar-crosscompile.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Entware/rtndev/HEAD/vitetris/patches/030-ar-crosscompile.patch -------------------------------------------------------------------------------- /vorbis-tools/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Entware/rtndev/HEAD/vorbis-tools/Makefile -------------------------------------------------------------------------------- /vorbis-tools/patches/010-no_intl.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Entware/rtndev/HEAD/vorbis-tools/patches/010-no_intl.patch -------------------------------------------------------------------------------- /vsftpd-ext/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Entware/rtndev/HEAD/vsftpd-ext/Makefile -------------------------------------------------------------------------------- /vsftpd-ext/files/S49vsftpd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Entware/rtndev/HEAD/vsftpd-ext/files/S49vsftpd -------------------------------------------------------------------------------- /vsftpd-ext/patches/010-disable-PAM.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Entware/rtndev/HEAD/vsftpd-ext/patches/010-disable-PAM.patch -------------------------------------------------------------------------------- /vsftpd-ext/patches/020-config-path.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Entware/rtndev/HEAD/vsftpd-ext/patches/020-config-path.patch -------------------------------------------------------------------------------- /vsftpd-ext/patches/030-cross-compile.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Entware/rtndev/HEAD/vsftpd-ext/patches/030-cross-compile.patch -------------------------------------------------------------------------------- /vsftpd-ext/patches/040-disable-new-CLONE-flags.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Entware/rtndev/HEAD/vsftpd-ext/patches/040-disable-new-CLONE-flags.patch -------------------------------------------------------------------------------- /vsftpd-ext/patches/050-disable-capabilities.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Entware/rtndev/HEAD/vsftpd-ext/patches/050-disable-capabilities.patch -------------------------------------------------------------------------------- /watchdog/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Entware/rtndev/HEAD/watchdog/Makefile -------------------------------------------------------------------------------- /watchdog/patches/010-fix-paths.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Entware/rtndev/HEAD/watchdog/patches/010-fix-paths.patch -------------------------------------------------------------------------------- /wcd/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Entware/rtndev/HEAD/wcd/Makefile -------------------------------------------------------------------------------- /wcd/patches/010-ncurses_flags.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Entware/rtndev/HEAD/wcd/patches/010-ncurses_flags.patch -------------------------------------------------------------------------------- /wdfs/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Entware/rtndev/HEAD/wdfs/Makefile -------------------------------------------------------------------------------- /wdfs/patches/010-fuse-opt-header.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Entware/rtndev/HEAD/wdfs/patches/010-fuse-opt-header.patch -------------------------------------------------------------------------------- /wdfs/patches/020-500-error-user-agent.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Entware/rtndev/HEAD/wdfs/patches/020-500-error-user-agent.patch -------------------------------------------------------------------------------- /wdfs/patches/500-use_opt_for_tmp_files.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Entware/rtndev/HEAD/wdfs/patches/500-use_opt_for_tmp_files.patch -------------------------------------------------------------------------------- /wg-quick/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Entware/rtndev/HEAD/wg-quick/Makefile -------------------------------------------------------------------------------- /wg-quick/patches/100-entware.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Entware/rtndev/HEAD/wg-quick/patches/100-entware.patch -------------------------------------------------------------------------------- /wireshark/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Entware/rtndev/HEAD/wireshark/Makefile -------------------------------------------------------------------------------- /xawtv/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Entware/rtndev/HEAD/xawtv/Makefile -------------------------------------------------------------------------------- /xawtv/patches/010-compiler-flags.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Entware/rtndev/HEAD/xawtv/patches/010-compiler-flags.patch -------------------------------------------------------------------------------- /xawtv/patches/020-no-fbtv.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Entware/rtndev/HEAD/xawtv/patches/020-no-fbtv.patch -------------------------------------------------------------------------------- /xawtv/patches/030-sys_siglist.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Entware/rtndev/HEAD/xawtv/patches/030-sys_siglist.patch -------------------------------------------------------------------------------- /xmlstarlet/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Entware/rtndev/HEAD/xmlstarlet/Makefile -------------------------------------------------------------------------------- /xmlstarlet/patches/010-no-docs.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Entware/rtndev/HEAD/xmlstarlet/patches/010-no-docs.patch -------------------------------------------------------------------------------- /xmlstarlet/patches/020-fix-missing-hdr.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Entware/rtndev/HEAD/xmlstarlet/patches/020-fix-missing-hdr.patch -------------------------------------------------------------------------------- /xpdf/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Entware/rtndev/HEAD/xpdf/Makefile -------------------------------------------------------------------------------- /xupnpd2/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Entware/rtndev/HEAD/xupnpd2/Makefile -------------------------------------------------------------------------------- /xupnpd2/files/S94xupnpd2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Entware/rtndev/HEAD/xupnpd2/files/S94xupnpd2 -------------------------------------------------------------------------------- /xupnpd2/patches/010-rules.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Entware/rtndev/HEAD/xupnpd2/patches/010-rules.patch -------------------------------------------------------------------------------- /xupnpd2/patches/030-cfg.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Entware/rtndev/HEAD/xupnpd2/patches/030-cfg.patch -------------------------------------------------------------------------------- /xupnpd2/patches/040-xupnpd.lua_path.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Entware/rtndev/HEAD/xupnpd2/patches/040-xupnpd.lua_path.patch -------------------------------------------------------------------------------- /xupnpd2/patches/050-xupnpd.cfg_path.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Entware/rtndev/HEAD/xupnpd2/patches/050-xupnpd.cfg_path.patch -------------------------------------------------------------------------------- /xupnpd2/patches/060-xupnpd.uid_path.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Entware/rtndev/HEAD/xupnpd2/patches/060-xupnpd.uid_path.patch -------------------------------------------------------------------------------- /yamdi/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Entware/rtndev/HEAD/yamdi/Makefile -------------------------------------------------------------------------------- /yamdi/patches/010-linker-flags.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Entware/rtndev/HEAD/yamdi/patches/010-linker-flags.patch -------------------------------------------------------------------------------- /ympd/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Entware/rtndev/HEAD/ympd/Makefile -------------------------------------------------------------------------------- /ympd/files/S90ympd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Entware/rtndev/HEAD/ympd/files/S90ympd -------------------------------------------------------------------------------- /zbar/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Entware/rtndev/HEAD/zbar/Makefile -------------------------------------------------------------------------------- /zbar/patches/010-disable-NLS.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Entware/rtndev/HEAD/zbar/patches/010-disable-NLS.patch -------------------------------------------------------------------------------- /ziproxy/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Entware/rtndev/HEAD/ziproxy/Makefile -------------------------------------------------------------------------------- /ziproxy/files/S25ziproxy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Entware/rtndev/HEAD/ziproxy/files/S25ziproxy -------------------------------------------------------------------------------- /ziproxy/patches/001-xinetd.d-conf.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Entware/rtndev/HEAD/ziproxy/patches/001-xinetd.d-conf.patch -------------------------------------------------------------------------------- /ziproxy/patches/003-ziproxy.conf-paths-and-user.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Entware/rtndev/HEAD/ziproxy/patches/003-ziproxy.conf-paths-and-user.patch -------------------------------------------------------------------------------- /zork/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Entware/rtndev/HEAD/zork/Makefile -------------------------------------------------------------------------------- /zork/files/uudecode.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Entware/rtndev/HEAD/zork/files/uudecode.c -------------------------------------------------------------------------------- /zork/patches/010-cross-compile.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Entware/rtndev/HEAD/zork/patches/010-cross-compile.patch -------------------------------------------------------------------------------- /zork/patches/020-saves-path.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Entware/rtndev/HEAD/zork/patches/020-saves-path.patch --------------------------------------------------------------------------------