/linux-4.1.27/drivers/s390/char/ |
D | hmcdrv_cache.c | 61 static ssize_t hmcdrv_cache_get(const struct hmcdrv_ftp_cmdspec *ftp) in hmcdrv_cache_get() argument 66 if ((ftp->id != hmcdrv_cache_file.id) || in hmcdrv_cache_get() 67 strcmp(hmcdrv_cache_file.fname, ftp->fname)) in hmcdrv_cache_get() 70 if (ftp->ofs >= hmcdrv_cache_file.fsize) /* EOF ? */ in hmcdrv_cache_get() 80 len = hmcdrv_cache_file.fsize - ftp->ofs; in hmcdrv_cache_get() 82 if (len > ftp->len) in hmcdrv_cache_get() 83 len = ftp->len; in hmcdrv_cache_get() 88 pos = ftp->ofs - hmcdrv_cache_file.ofs; in hmcdrv_cache_get() 93 memcpy(ftp->buf, in hmcdrv_cache_get() 113 static ssize_t hmcdrv_cache_do(const struct hmcdrv_ftp_cmdspec *ftp, in hmcdrv_cache_do() argument [all …]
|
D | hmcdrv_ftp.c | 33 ssize_t (*transfer)(const struct hmcdrv_ftp_cmdspec *ftp, 38 static int hmcdrv_ftp_parse(char *cmd, struct hmcdrv_ftp_cmdspec *ftp); 111 static int hmcdrv_ftp_parse(char *cmd, struct hmcdrv_ftp_cmdspec *ftp) in hmcdrv_ftp_parse() argument 116 ftp->id = HMCDRV_FTP_NOOP; in hmcdrv_ftp_parse() 117 ftp->fname = NULL; in hmcdrv_ftp_parse() 133 ftp->id = hmcdrv_ftp_cmd_getid(start, cmd - start); in hmcdrv_ftp_parse() 138 ftp->fname = start; in hmcdrv_ftp_parse() 148 if (!ftp->fname || (ftp->id == HMCDRV_FTP_NOOP)) in hmcdrv_ftp_parse() 160 ssize_t hmcdrv_ftp_do(const struct hmcdrv_ftp_cmdspec *ftp) in hmcdrv_ftp_do() argument 168 ftp->id, ftp->fname, (long long) ftp->ofs, ftp->len); in hmcdrv_ftp_do() [all …]
|
D | sclp_ftp.c | 57 diag->mdd.ftp.pcx != SCLP_DIAG_FTP_XPCX || in sclp_ftp_rxcb() 71 sclp_ftp_ldflg = diag->mdd.ftp.ldflg; in sclp_ftp_rxcb() 72 sclp_ftp_fsize = diag->mdd.ftp.fsize; in sclp_ftp_rxcb() 73 sclp_ftp_length = diag->mdd.ftp.length; in sclp_ftp_rxcb() 84 static int sclp_ftp_et7(const struct hmcdrv_ftp_cmdspec *ftp) in sclp_ftp_et7() argument 105 sccb->evbuf.mdd.ftp.pcx = SCLP_DIAG_FTP_XPCX; in sclp_ftp_et7() 106 sccb->evbuf.mdd.ftp.srcflg = 0; in sclp_ftp_et7() 107 sccb->evbuf.mdd.ftp.pgsize = 0; in sclp_ftp_et7() 108 sccb->evbuf.mdd.ftp.asce = _ASCE_REAL_SPACE; in sclp_ftp_et7() 109 sccb->evbuf.mdd.ftp.ldflg = SCLP_DIAG_FTP_LDFAIL; in sclp_ftp_et7() [all …]
|
D | diag_ftp.c | 139 ssize_t diag_ftp_cmd(const struct hmcdrv_ftp_cmdspec *ftp, size_t *fsize) in diag_ftp_cmd() argument 147 ftp->fname, ftp->len); in diag_ftp_cmd() 158 len = strlcpy(ldfpl->fident, ftp->fname, sizeof(ldfpl->fident)); in diag_ftp_cmd() 166 ldfpl->offset = ftp->ofs; in diag_ftp_cmd() 167 ldfpl->buflen = ftp->len; in diag_ftp_cmd() 168 ldfpl->bufaddr = virt_to_phys(ftp->buf); in diag_ftp_cmd() 170 len = diag_ftp_2c4(ldfpl, ftp->id); in diag_ftp_cmd()
|
D | hmcdrv_cache.h | 16 typedef ssize_t (*hmcdrv_cache_ftpfunc)(const struct hmcdrv_ftp_cmdspec *ftp, 19 ssize_t hmcdrv_cache_cmd(const struct hmcdrv_ftp_cmdspec *ftp,
|
D | diag_ftp.h | 19 ssize_t diag_ftp_cmd(const struct hmcdrv_ftp_cmdspec *ftp, size_t *fsize);
|
D | sclp_ftp.h | 19 ssize_t sclp_ftp_cmd(const struct hmcdrv_ftp_cmdspec *ftp, size_t *fsize);
|
D | hmcdrv_ftp.h | 59 ssize_t hmcdrv_ftp_do(const struct hmcdrv_ftp_cmdspec *ftp);
|
D | sclp_diag.h | 74 struct sclp_diag_ftp ftp; member
|
/linux-4.1.27/net/netfilter/ |
D | nf_conntrack_ftp.c | 562 struct nf_ct_ftp_master *ftp = nfct_help_data(ct); in nf_ct_ftp_from_nlattr() local 568 ftp->flags[IP_CT_DIR_ORIGINAL] |= NF_CT_FTP_SEQ_PICKUP; in nf_ct_ftp_from_nlattr() 569 ftp->flags[IP_CT_DIR_REPLY] |= NF_CT_FTP_SEQ_PICKUP; in nf_ct_ftp_from_nlattr() 573 static struct nf_conntrack_helper ftp[MAX_PORTS][2] __read_mostly; variable 586 if (ftp[i][j].me == NULL) in nf_conntrack_ftp_fini() 591 ftp[i][j].tuple.src.l3num, ports[i]); in nf_conntrack_ftp_fini() 592 nf_conntrack_helper_unregister(&ftp[i][j]); in nf_conntrack_ftp_fini() 613 ftp[i][0].tuple.src.l3num = PF_INET; in nf_conntrack_ftp_init() 614 ftp[i][1].tuple.src.l3num = PF_INET6; in nf_conntrack_ftp_init() 616 ftp[i][j].data_len = sizeof(struct nf_ct_ftp_master); in nf_conntrack_ftp_init() [all …]
|
/linux-4.1.27/Documentation/ |
D | Changes | 288 o <ftp://ftp.gnu.org/gnu/gcc/> 292 o <ftp://ftp.gnu.org/gnu/make/> 296 o <ftp://ftp.kernel.org/pub/linux/devel/binutils/> 303 o <ftp://ftp.kernel.org/pub/linux/utils/util-linux/> 307 o <ftp://ftp.kernel.org/pub/linux/utils/kernel/ksymoops/v2.4/> 311 o <ftp://ftp.kernel.org/pub/linux/kernel/people/rusty/modules/> 331 o <ftp://oss.sgi.com/projects/xfs/> 335 o <ftp://ftp.kernel.org/pub/linux/utils/kernel/pcmcia/> 370 o <ftp://ftp.samba.org/pub/ppp/> 374 o <ftp://ftp.isdn4linux.de/pub/isdn4linux/utils/>
|
D | applying-patches.txt | 220 ftp://ftp.kernel.org/pub/linux/kernel/v2.6/ 223 ftp://ftp.kernel.org/pub/linux/kernel/v2.6/testing/ 226 ftp://ftp.kernel.org/pub/linux/kernel/v2.6/snapshots/ 229 ftp://ftp.kernel.org/pub/linux/kernel/people/akpm/patches/2.6/ 231 In place of ftp.kernel.org you can use ftp.cc.kernel.org, where cc is a 286 ftp://ftp.kernel.org/pub/linux/kernel/v2.6/incr/
|
D | kernel-docs.txt | 221 ftp://ftp.llp.fu-berlin.de/pub/linux/LINUX-LAB/whitepapers/pcip.ps.gz 231 ftp://ftp.llp.fu-berlin.de/pub/linux/LINUX-LAB/whitepapers/drivers.ps.gz 261 ftp://ftp.uk.linux.org/pub/linux/sct/fs/jfs/journal-design.ps.gz 485 URL: http://pcmcia-cs.sourceforge.net/ftp/doc/PCMCIA-PROG.html
|
D | svga.txt | 193 ftp://ftp.phys.keio.ac.jp/pub/XFree86/800x600/XF86Configs/XF86Config.IBM_TP560).
|
D | SubmittingDrivers | 130 ftp.??.kernel.org:/pub/linux/kernel/...
|
D | crc32.txt | 131 ftp://download.intel.com/technology/comms/perfnet/download/slicing-by-8.pdf
|
D | java.txt | 14 ftp://sunsite.unc.edu/pub/Linux/docs/HOWTO/Java-HOWTO
|
D | devices.txt | 14 ftp://ftp.kernel.org/pub/linux/docs/device-list/. This version may be 2614 See ftp://ftp.lustre.org/pub/obd for code and information.
|
D | kernel-parameters.txt | 2898 ports= [IP_VS_FTP] IPVS ftp helper module
|
/linux-4.1.27/Documentation/serial/ |
D | README.cycladesZ | 7 ftp://ftp.cyclades.com/pub/cyclades/cyclades-z/linux/
|
D | n_gsm.txt | 6 http://www.3gpp.org/ftp/Specs/archive/07_series/07.10/0710-720.zip
|
D | rocket.txt | 185 FTP: ftp.comtrol.com
|
D | moxa-smartio | 136 The driver file may be obtained from ftp, CD-ROM or floppy disk. The
|
/linux-4.1.27/net/ipx/ |
D | Kconfig | 12 <ftp://platan.vc.cvut.cz/pub/linux/ncpfs/>) or from 23 <ftp://ibiblio.org/pub/Linux/system/network/daemons/> or 24 mars_nwe from <ftp://www.compu-art.de/mars_nwe/>. For more 57 can be found on <ftp://ftp.gwdg.de/pub/linux/misc/ncpfs/>.
|
/linux-4.1.27/scripts/ksymoops/ |
D | README | 4 ftp://ftp.<country>.kernel.org/pub/linux/utils/kernel/ksymoops together
|
/linux-4.1.27/Documentation/filesystems/ |
D | ncpfs.txt | 6 ftp.gwdg.de/pub/linux/misc/ncpfs, but sunsite and its many mirrors 12 mars_nwe can be found on ftp.gwdg.de/pub/linux/misc/ncpfs.
|
D | isofs.txt | 45 ftp://ftp.ecma.ch/ecma-st/Ecma-119.pdf
|
D | ext2.txt | 372 Journaling (ext3) ftp://ftp.uk.linux.org/pub/linux/sct/fs/jfs/ 379 DOS client (*) ftp://metalab.unc.edu/pub/Linux/system/filesystems/ext2/ 380 OS/2 (+) ftp://metalab.unc.edu/pub/Linux/system/filesystems/ext2/
|
D | ext4.txt | 28 ftp://ftp.kernel.org/pub/linux/kernel/people/tytso/e2fsprogs/
|
D | coda.txt | 8 ftp://ftp.coda.cs.cmu.edu
|
/linux-4.1.27/fs/sysv/ |
D | Kconfig | 15 available via FTP (user: ftp) from 16 <ftp://ftp.openlinux.org/pub/people/hch/linux-abi/>).
|
/linux-4.1.27/Documentation/ABI/testing/ |
D | debugfs-ec | 13 ftp://ftp.suse.com/pub/people/trenn/sources/ec/
|
/linux-4.1.27/Documentation/networking/ |
D | smc9.txt | 36 ftp://fenris.campus.vt.edu/smc9/smc9-12.tar.gz 37 ftp://sfbox.vt.edu/filebox/F/fenris/smc9/smc9-12.tar.gz
|
D | pktgen.txt | 312 ftp://robur.slu.se/pub/Linux/net-development/pktgen-testing/ 313 ftp://robur.slu.se/pub/Linux/net-development/pktgen-testing/examples/ 316 ftp://robur.slu.se/pub/Linux/net-development/pktgen-testing/pktgen_paper.pdf
|
D | framerelay.txt | 35 the net-tools distribution. They can be found at ftp.invlogic.com, in
|
D | igbvf.txt | 65 http://ftp.kernel.org/pub/software/network/ethtool/
|
D | ipddp.txt | 48 ftp.u.washington.edu/pub/user-supported/asun/) this patch is optional
|
D | z8530drv.txt | 7 1. ftp://ftp.ccac.rwth-aachen.de/pub/jr/z8530drv-utils_3.0-3.tar.gz 9 2. ftp://ftp.pspt.fi/pub/ham/linux/ax25/z8530drv-utils_3.0-3.tar.gz
|
D | igb.txt | 66 http://ftp.kernel.org/pub/software/network/ethtool/
|
D | eql.txt | 54 ftp://slaughter.ncm.com/pub/Linux/LOAD_BALANCING/eql-1.1.tar.gz. 363 Once a link was established, I timed a binary ftp transfer of
|
D | ray_cs.txt | 131 linux. If you want to watch ftp xfers, or do similar things, you
|
D | decnet.txt | 143 at the ftp archive. 159 which can be obtained from the above ftp sites as well as the
|
D | iphase.txt | 158 Anonymous FTP: ftp.iphase.com
|
D | arcnet.txt | 92 http://www.perftech.com/ or ftp to ftp.perftech.com. 95 FTPing to ftp.novell.com. 294 ftp.microsoft.com also has a freeware "Lan Manager for OS/2" client
|
D | vortex.txt | 306 ftp://ftp.3com.com/pub/nic/3c90x/3c90xx2.exe
|
D | e100.txt | 133 http://ftp.kernel.org/pub/software/network/ethtool/
|
D | 6pack.txt | 48 At the moment, the 6pack stuff can obtained via anonymous ftp from
|
D | e1000e.txt | 277 http://ftp.kernel.org/pub/software/network/ethtool/
|
D | cxgb.txt | 317 If you are just running user-space applications such as ftp, telnet,
|
D | ixgbe.txt | 275 http://ftp.kernel.org/pub/software/network/ethtool/
|
D | ixgb.txt | 316 http://ftp.kernel.org/pub/software/network/ethtool/
|
D | e1000.txt | 438 http://ftp.kernel.org/pub/software/network/ethtool/
|
/linux-4.1.27/fs/autofs4/ |
D | Kconfig | 10 <ftp://ftp.kernel.org/pub/linux/daemons/autofs/v4/>; you also
|
/linux-4.1.27/Documentation/isdn/ |
D | README.avmb1 | 11 t4-files can be found at ftp://ftp.avm.de/cardware/b1/linux/firmware 172 Check out the FAQ (ftp.isdn4linux.de) or subscribe to the 179 ftp://ftp.avm.de/cardware/b1/linux/
|
D | README.pcbit | 15 ftp://ftp.di.fc.ul.pt/pub/systems/Linux/isdn
|
D | README.x25 | 144 ftp://ftp.hes.iki.fi/pub/ham/linux/ax25/x25utils-* 173 ftp://ftp.hamburg.pop.de/pub/LOCAL/linux/i4l-eft/ which contains some
|
D | README.sc | 101 ftp://sunsite.unc.edu/pub/Linux/kernel/v2.0/ 104 ftp://sunsite.unc.edu/pub/Linux/kernel/modules-2.0.0.tar.gz 107 ftp://ftp.franken.de/pub/isdn4linux/v2.0/isdn4k-utils-2.0.tar.gz 110 ftp://ftp.spellcast.com/pub/drivers/isdn4linux/isdn4k-bin-2.0.tar.gz
|
D | README | 14 ftp.isdn4linux.de 41 ftp://ftp.isdn4linux.de/pub/isdn4linux/FAQ/
|
/linux-4.1.27/Documentation/cpu-freq/ |
D | index.txt | 45 * ftp://ftp.linux.org.uk/pub/linux/cpufreq/
|
/linux-4.1.27/net/decnet/ |
D | Kconfig | 38 from <ftp://ftp.tux.org/pub/net/ip-routing/>). The "Network packet
|
/linux-4.1.27/Documentation/arm/SA1100/ |
D | Assabet | 54 ftp://ftp.netwinder.org/users/n/nico/ 55 ftp://ftp.arm.linux.org.uk/pub/linux/arm/people/nico/ 56 ftp://ftp.handhelds.org/pub/linux/arm/sa-1100-patches/
|
D | Brutus | 55 ftp.netwinder.org/users/n/nico.
|
/linux-4.1.27/arch/ia64/ |
D | Makefile | 41 ftp://ftp.hpl.hp.com/pub/linux-ia64/gas-030124.tar.gz)
|
/linux-4.1.27/scripts/package/ |
D | builddeb | 244 The sources may be found at most Linux ftp sites, including: 245 ftp://ftp.kernel.org/pub/linux/kernel
|
/linux-4.1.27/drivers/net/slip/ |
D | Kconfig | 21 <ftp://ibiblio.org/pub/Linux/system/network/serial/>) which 54 <ftp://ibiblio.org/pub/Linux/system/network/serial/>) which
|
/linux-4.1.27/Documentation/scsi/ |
D | osd.txt | 12 See: http://www.t10.org/ftp/t10/drafts/osd2/ for the latest draft for OSD 2 193 http://www.t10.org/ftp/t10/drafts/osd/osd-r10.pdf 197 http://www.t10.org/ftp/t10/drafts/osd2/osd2r03.pdf
|
D | ncr53c8xx.txt | 114 SCSI standard documentations are available at SYMBIOS ftp server: 116 ftp://ftp.symbios.com/ 120 ftp://tsx-11.mit.edu/pub/linux/ALPHA/scsi/scsiinfo-X.Y.tar.gz 121 ftp://tsx-11.mit.edu/pub/linux/ALPHA/scsi/scsidev-X.Y.tar.gz 134 ftp://ftp.tux.org/pub/people/gerard-roudier 136 ftp://ftp.symbios.com/mirror/ftp.tux.org/pub/tux/roudier/drivers 245 at respective vendor web/ftp sites. 1151 ftp://ftp.tux.org/pub/people/gerard-roudier/README
|
D | tmscsim.txt | 102 ftp://student.physik.uni-dortmund.de/pub/linux/kernel/bootdisk.gz 414 ftp://ftp.suse.com/pub/people/garloff/linux/dc390/
|
D | libsas.txt | 338 ftp://mama.indstate.edu/linux/tree/
|
D | st.txt | 296 (look for a package mt-st* from the Linux ftp sites; the GNU mt does
|
D | sym53c8xx_2.txt | 211 at respective vendor web/ftp sites.
|
/linux-4.1.27/Documentation/filesystems/cifs/ |
D | cifs.txt | 25 https://ftp.samba.org/pub/linux-cifs/cifs-utils/
|
/linux-4.1.27/Documentation/power/ |
D | apm-acpi.txt | 31 apmd: http://ftp.debian.org/pool/main/a/apmd/
|
/linux-4.1.27/Documentation/zh_CN/ |
D | SubmittingDrivers | 136 ftp.??.kernel.org:/pub/linux/kernel/...
|
D | HOWTO | 322 ftp.firstfloor.org:/pub/ak/x86_64/quilt/
|
/linux-4.1.27/Documentation/early-userspace/ |
D | README | 89 ftp://ftp.kernel.org/pub/linux/libs/klibc/
|
/linux-4.1.27/Documentation/arm/ |
D | README | 4 Please check <ftp://ftp.arm.linux.org.uk/pub/armlinux> for
|
/linux-4.1.27/Documentation/acpi/ |
D | initrd_table_override.txt | 91 ftp://kernel.org/pub/linux/kernel/people/lenb/acpi/utils/pmtools/acpidump
|
/linux-4.1.27/Documentation/filesystems/nfs/ |
D | nfs-rdma.txt | 116 ftp://ftp.kernel.org/pub/linux/kernel/v2.6/
|
/linux-4.1.27/Documentation/sound/alsa/ |
D | HD-Audio.txt | 667 - ftp://ftp.suse.com/pub/people/tiwai/snapshot/ 771 Also, the old stand-alone package is found in the ftp directory: 773 - ftp://ftp.suse.com/pub/people/tiwai/misc/ 841 - ftp://ftp.suse.com/pub/people/tiwai/misc/
|
D | SB-Live-mixer.txt | 310 ftp://opensource.creative.com/pub/doc
|
D | Audigy-mixer.txt | 299 ftp://opensource.creative.com/pub/doc
|
/linux-4.1.27/drivers/video/console/ |
D | Kconfig | 21 <ftp://ibiblio.org/pub/Linux/utils/console/>.
|
/linux-4.1.27/Documentation/vm/ |
D | active_mm.txt | 76 Anyway, I put a pre-patch-2.3.13-1 on ftp.kernel.org just a moment ago,
|
D | page_migration | 21 ftp://oss.sgi.com/www/projects/libnuma/download/). numactl provides libnuma
|
/linux-4.1.27/fs/fat/ |
D | Kconfig | 44 <ftp://ibiblio.org/pub/Linux/system/filesystems/dosfs/>. If you
|
/linux-4.1.27/Documentation/fb/ |
D | framebuffer.txt | 327 ftp://ftp.uni-erlangen.de/pub/Linux/LOCAL/680x0/
|
/linux-4.1.27/ |
D | .mailmap | 17 Al Viro <viro@ftp.linux.org.uk>
|
D | README | 358 ftp://ftp.<country>.kernel.org/pub/linux/utils/kernel/ksymoops/ .
|
D | CREDITS | 3583 D: Maintainer of tsx-11.mit.edu ftp archive 3726 E: volkerdi@ftp.cdrom.com 3871 W: ftp://ftp.uk.linux.org/pub/linux/people/willy/
|
D | MAINTAINERS | 4210 W: ftp://ftp.openlinux.org/pub/people/hch/vxfs 7390 W: ftp://ftp.redhat.com/pub/redhat/gnupro/AM33/ 7849 W: ftp://ftp.kernel.org/pub/linux/kernel/people/rml/preempt-kernel
|
/linux-4.1.27/Documentation/cris/ |
D | README | 78 At the end you see some user-mode programs booting like telnet and ftp daemons.
|
/linux-4.1.27/arch/m68k/q40/ |
D | README | 6 available from this place or http://ftp.uni-erlangen.de/pub/unix/Linux/680x0/q40/
|
/linux-4.1.27/Documentation/video4linux/bttv/ |
D | Sound-FAQ | 83 from ftp://telepresence.dmem.strath.ac.uk/pub/bt848/winutil, but it
|
/linux-4.1.27/Documentation/ioctl/ |
D | ioctl-number.txt | 86 <ftp://ftp.de.kernel.org/pub/linux/daemons/ntp/PPS/>
|
/linux-4.1.27/drivers/net/wan/ |
D | Kconfig | 82 It is available at <ftp://ftp.lanmedia.com/> (broken link).
|
/linux-4.1.27/drivers/atm/ |
D | Kconfig | 319 <ftp://ftp.iphase.com/pub/atm/pci/>).
|
/linux-4.1.27/drivers/block/paride/ |
D | Kconfig | 89 <ftp://ftp.berlios.de/pub/cdrecord/>. Versions 1.6.1a3 and
|
/linux-4.1.27/net/ipv4/ |
D | Kconfig | 75 and <ftp://post.tepkom.ru/pub/vol2/Linux/docs/advanced-routing.tex>. 77 <ftp://ftp.tux.org/pub/net/ip-routing/>.
|
/linux-4.1.27/drivers/md/ |
D | Kconfig | 118 ftp://ftp.kernel.org/pub/linux/utils/raid/mdadm/
|
/linux-4.1.27/Documentation/blockdev/ |
D | paride.txt | 317 from ftp://ftp.fokus.gmd.de/pub/unix/cdrecord/ . To record CD-R media
|
D | floppy.txt | 223 ftp://metalab.unc.edu/pub/Linux/utils/disk-management/
|
/linux-4.1.27/drivers/block/ |
D | Kconfig | 230 <ftp://ftp.kernel.org/pub/linux/utils/util-linux/>.
|
/linux-4.1.27/firmware/ |
D | WHENCE | 251 Found in hex form in ftp://ftp.multitech.com/wireless/wireless_linux.zip
|
/linux-4.1.27/net/netfilter/ipvs/ |
D | Kconfig | 269 clients in ftp connections directly, so FTP protocol helper is
|
/linux-4.1.27/Documentation/sound/oss/ |
D | README.OSS | 372 of such a tool available from ftp://ftp.demon.co.uk/pub/unix/linux/utils. The 555 can use the public domain MIDIA patchset available from several ftp 1147 and install the DOS/Windows driver from ftp://ftp.ensoniq.com/pub.
|
/linux-4.1.27/Documentation/virtual/uml/ |
D | UserModeLinux-HOWTO.txt | 232 ftp://ftp.ca.kernel.org/pub/kernel/v2.4/linux-2.4.0-prerelease.tar.bz2 233 <ftp://ftp.ca.kernel.org/pub/kernel/v2.4/linux-2.4.0-prerelease.tar.bz2> 339 You can install them by using ftp or something to copy them into the 4567 Rik van Riel gave me some ftp space on ftp.nl.linux.org so I can make
|
/linux-4.1.27/arch/mips/ |
D | Kconfig | 2766 <ftp://ftp.hp.com/pub/alphaserver/archive/triadd/> 2768 <http://www.computer-refuge.org/classiccmp/ftp.digital.com/pub/DEC/TriAdd/>
|
/linux-4.1.27/Documentation/cdrom/ |
D | ide-cd | 143 The hpcdtoppm package (ftp.gwdg.de:/pub/linux/hpcdtoppm/) may be
|
/linux-4.1.27/Documentation/laptops/ |
D | thinkpad-acpi.txt | 916 ftp://ftp.suse.com/pub/people/trenn/sources/ec
|
/linux-4.1.27/Documentation/RCU/ |
D | RTFP.txt | 1276 \url{ftp://ftp.cs.toronto.edu/csrg-technical-reports/515/}
|
/linux-4.1.27/drivers/video/fbdev/ |
D | Kconfig | 1266 (available at <ftp://platan.vc.cvut.cz/pub/linux/matrox-latest/>) to 1317 <ftp://platan.vc.cvut.cz/pub/linux/matrox-latest/>) to switch it to
|
/linux-4.1.27/drivers/watchdog/ |
D | Kconfig | 23 <ftp://ibiblio.org/pub/Linux/system/daemons/watchdog/>. This daemon can
|
/linux-4.1.27/Documentation/s390/ |
D | Debugging390.txt | 1494 of another VM guest so he can ftp the logfile back to his own machine. I'll do
|
/linux-4.1.27/drivers/staging/speakup/ |
D | spkguide.txt | 712 dec_pc.tgz file is in the ~ftp/pub/linux/speakup directory.
|