├── .dockerignore ├── .github ├── ISSUE_TEMPLATE │ └── problem-report.md └── workflows │ ├── cross.yml │ ├── main.yml │ └── ow-libc.yml ├── .gitignore ├── 8018x.config ├── BUILD.md ├── Dockerfile ├── Documentation ├── Readme.md ├── historic │ ├── BUGS │ ├── BUGS.html │ ├── CGAsnow │ ├── CHANGELOG │ ├── CHANGELOG_cmds │ ├── CHANGELOG_ktcp │ ├── Changes_console │ ├── INSTALLATION │ ├── INSTALLATION.html │ ├── MAINTAINERS │ ├── NEW_NOTES_console │ ├── NOTES_console │ ├── NT-Compiling-HOWTO │ ├── README_console │ ├── RELNOTES │ ├── TODO │ ├── cs_write.txt │ ├── faq │ │ ├── FAQ-Deutsch.html │ │ ├── FAQ-English.html │ │ ├── FAQ-Espanol.html │ │ ├── FAQ-Francais.html │ │ ├── FAQ-Nihongo.html │ │ ├── FAQ-Portuguese.html │ │ ├── FAQ-Russian.html │ │ ├── Makefile │ │ └── index.html │ └── jody-text.odt ├── html │ ├── Makefile │ ├── technical │ │ ├── ELKS_commands_and_utilities.html │ │ ├── Makefile │ │ ├── Makefile-structure.html │ │ ├── exe_format.html │ │ ├── kernel_mode_device_drivers.html │ │ ├── keymaps.html │ │ ├── process.html │ │ ├── process_man.html │ │ └── vt52.html │ └── user │ │ ├── ELKS_OPM.html │ │ ├── cron.html │ │ ├── getting_started_with_elks.html │ │ ├── internet_links_for_elks.html │ │ ├── kilo.html │ │ ├── qemu.html │ │ ├── screen.html │ │ ├── setup_slip.html │ │ ├── shell.html │ │ ├── writing_apps_in_C.html │ │ └── writing_apps_in_assembler.html ├── img │ ├── ELKS-Logo.png │ ├── ELKS-Logo.svg │ ├── Makefile │ ├── executable.png │ ├── kilo-help-page.png │ └── kilo.png ├── index.html └── text │ ├── 8086.txt │ ├── Configure.help.txt │ ├── Makefile │ ├── add_app_to_elks.txt │ ├── applications.txt │ ├── binformat.txt │ ├── boot.txt │ ├── cgatext.txt │ ├── fat_fs.txt │ ├── fs.txt │ ├── kernel-makefiles.txt │ ├── keymap.es.txt │ ├── memlayout.txt │ ├── minix_fs.txt │ ├── modules.txt │ ├── networking.txt │ ├── networking_guide.txt │ ├── package-manager.txt │ ├── parameter-passing.txt │ ├── porting-guide.txt │ ├── ramdisk.txt │ ├── rom_changes.txt │ ├── rom_configuration.txt │ ├── rom_info_01.txt │ ├── serial_coms.txt │ ├── source.txt │ └── swan.txt ├── LICENSE ├── Make.defs ├── Makefile ├── README.md ├── Screenshots ├── Book_8088.png ├── ELKS_0.4.0.png ├── ELKS_0.5.0.png ├── ELKS_0.7.0.png ├── ELKS_Doom.png ├── ELKS_Matrix.jpg ├── ELKS_Networking.png ├── ELKS_telnet_BBS.jpg ├── Nano-X_on_ELKS.png ├── Olivetti_M24_8086_CPU.png ├── PC-9801UV21_V30_CPU.png └── Zenith_Data_Systems_286_external_monitor_elks_0.8dev.jpg ├── blink16.config ├── bootblocks ├── .gitignore ├── Makefile ├── boot_err.h ├── boot_minix.c ├── boot_probe.S ├── boot_sect.S ├── boot_sect_fat.h ├── mbr.S └── minix.h ├── coding-style.txt ├── config.in ├── config ├── Configure ├── Configure.help ├── Makefile ├── Menuconfig ├── README.Menuconfig └── lxdialog │ ├── .gitignore │ ├── BIG.FAT.WARNING │ ├── Makefile │ ├── checklist.c │ ├── colors.h │ ├── dialog.h │ ├── inputbox.c │ ├── lxdialog.c │ ├── menubox.c │ ├── msgbox.c │ ├── textbox.c │ ├── util.c │ └── yesno.c ├── copyc86.sh ├── dosbox.sh ├── elks ├── .gitignore ├── LICENSE ├── Makefile ├── Makefile-rules ├── arch │ ├── Makefile │ └── i86 │ │ ├── .gitignore │ │ ├── Makefile │ │ ├── asm-offsets.awk │ │ ├── boot │ │ ├── .gitignore │ │ ├── Makefile │ │ ├── cputype.S │ │ ├── crt0.S │ │ └── setup.S │ │ ├── defconfig │ │ ├── drivers │ │ ├── Makefile │ │ ├── block │ │ │ ├── Makefile │ │ │ ├── ata-cf.c │ │ │ ├── ata.c │ │ │ ├── bios.c │ │ │ ├── bioshd.c │ │ │ ├── bioshd.h │ │ │ ├── blk.h │ │ │ ├── config.in │ │ │ ├── directfd.c │ │ │ ├── directhd.c │ │ │ ├── dma.c │ │ │ ├── genhd.c │ │ │ ├── idequery.c │ │ │ ├── init.c │ │ │ ├── ll_rw_blk.c │ │ │ ├── rd.c │ │ │ ├── romflash.c │ │ │ ├── spi-8018x.S │ │ │ ├── spi-hw-necv25.S │ │ │ ├── spi-necv25.S │ │ │ ├── spi.h │ │ │ ├── ssd-sd.c │ │ │ ├── ssd-test.c │ │ │ ├── ssd-xms.c │ │ │ ├── ssd.c │ │ │ ├── ssd.h │ │ │ └── ssd_asm.S │ │ ├── char │ │ │ ├── KeyMaps │ │ │ │ ├── .gitignore │ │ │ │ ├── Makefile │ │ │ │ ├── keys-be.h │ │ │ │ ├── keys-de.h │ │ │ │ ├── keys-dv.h │ │ │ │ ├── keys-es.h │ │ │ │ ├── keys-fr.h │ │ │ │ ├── keys-it.h │ │ │ │ ├── keys-se.h │ │ │ │ ├── keys-uk.h │ │ │ │ ├── keys-us.h │ │ │ │ └── mkcfg │ │ │ ├── Makefile │ │ │ ├── bell-8254.c │ │ │ ├── bell-swan.c │ │ │ ├── cgatext.c │ │ │ ├── config.in │ │ │ ├── conio-8018x.c │ │ │ ├── conio-bios.S │ │ │ ├── conio-necv25.c │ │ │ ├── conio-pc98-asm.S │ │ │ ├── conio-pc98-asm.h │ │ │ ├── conio-pc98.c │ │ │ ├── conio-solo86.c │ │ │ ├── conio-swan.c │ │ │ ├── conio.h │ │ │ ├── console-bios-asm.S │ │ │ ├── console-bios.c │ │ │ ├── console-bios.h │ │ │ ├── console-direct-pc98.c │ │ │ ├── console-direct-swan.c │ │ │ ├── console-direct.c │ │ │ ├── console-font-4x8-swan.S │ │ │ ├── console-font-8x8-swan.S │ │ │ ├── console-headless.c │ │ │ ├── console-serial-8018x.c │ │ │ ├── console-serial-necv25.c │ │ │ ├── console.c │ │ │ ├── console.h │ │ │ ├── crtc-6845.c │ │ │ ├── crtc-6845.h │ │ │ ├── eth.c │ │ │ ├── init.c │ │ │ ├── kbd-poll-pc98.c │ │ │ ├── kbd-poll.c │ │ │ ├── kbd-scancode.c │ │ │ ├── lp.c │ │ │ ├── mem.c │ │ │ ├── ntty.c │ │ │ ├── pty.c │ │ │ ├── serfast.S │ │ │ ├── serial-8250.c │ │ │ ├── serial-pc98.c │ │ │ ├── serial-swan.c │ │ │ ├── serial-template.c │ │ │ ├── tcpdev.c │ │ │ └── unused │ │ │ │ ├── meta.c │ │ │ │ └── udd.h │ │ └── net │ │ │ ├── .gitignore │ │ │ ├── Makefile │ │ │ ├── config.in │ │ │ ├── el3-asm.S │ │ │ ├── el3.c │ │ │ ├── eth-msgs.h │ │ │ ├── ne2k-asm.S │ │ │ ├── ne2k.c │ │ │ ├── ne2k.h │ │ │ └── wd.c │ │ ├── kernel │ │ ├── Makefile │ │ ├── asm-offsets.c │ │ ├── divzero.c │ │ ├── irq-8018x.c │ │ ├── irq-8259.c │ │ ├── irq-necv25.c │ │ ├── irq-solo86.c │ │ ├── irq-swan.c │ │ ├── irq.c │ │ ├── irqtab.S │ │ ├── mkentry.sh │ │ ├── nmi.c │ │ ├── process.c │ │ ├── reset-ibm.c │ │ ├── reset-pc98.c │ │ ├── reset-stubs.c │ │ ├── reset-swan.c │ │ ├── signal.c │ │ ├── softirq.c │ │ ├── strace.c │ │ ├── strace.h │ │ ├── syscall.dat │ │ ├── system-swan.c │ │ ├── system.c │ │ ├── timer-8018x.c │ │ ├── timer-8254.c │ │ ├── timer-necv25.c │ │ ├── timer-swan.c │ │ └── timer.c │ │ ├── lib │ │ ├── .gitignore │ │ ├── Makefile │ │ ├── a20-ibm.inc │ │ ├── a20-pc98.inc │ │ ├── bios13-ibm.S │ │ ├── bios15-ibm.S │ │ ├── bios1B-pc98.S │ │ ├── bios1F-pc98.S │ │ ├── bitops.c │ │ ├── divmod.S │ │ ├── fmemory.S │ │ ├── loadall.S │ │ ├── peekpoke.S │ │ ├── prectimer.c │ │ ├── printreg.S │ │ ├── string.S │ │ ├── unreal.S │ │ └── unused │ │ │ ├── atomic.S │ │ │ ├── bootsect.S │ │ │ ├── border.s │ │ │ ├── divmodsi3.s │ │ │ ├── farlist.S │ │ │ ├── farlist.h │ │ │ ├── img.h │ │ │ ├── imgconv.1 │ │ │ ├── imgconv.c │ │ │ ├── imgdump.c │ │ │ ├── inport.s │ │ │ ├── inportb.s │ │ │ ├── irqflag.s │ │ │ ├── ldivmod.s │ │ │ ├── makelist.c │ │ │ ├── memcmp.s │ │ │ ├── memdumpk.c │ │ │ ├── mknbi-elks │ │ │ ├── netbootsect.S │ │ │ ├── outport.s │ │ │ ├── outportb.s │ │ │ ├── seglist.h │ │ │ └── setjmp.s │ │ ├── mm │ │ ├── Makefile │ │ ├── malloc.c │ │ ├── memcpyfs.S │ │ ├── user.c │ │ └── xms.c │ │ └── tools │ │ ├── Makefile │ │ ├── a.out.h │ │ ├── build.c │ │ └── mkbootloader.c ├── config.in ├── elks-medium.ld ├── elks-raw.ld ├── elks-small.ld ├── elks-tiny.ld ├── fs │ ├── Makefile │ ├── block_dev.c │ ├── buffer.c │ ├── config.in │ ├── devices.c │ ├── exec.c │ ├── exodecr.c │ ├── fcntl.c │ ├── file_table.c │ ├── inode.c │ ├── ioctl.c │ ├── minix │ │ ├── Makefile │ │ ├── bitmap.c │ │ ├── dir.c │ │ ├── file.c │ │ ├── inode.c │ │ ├── namei.c │ │ ├── symlink.c │ │ └── truncate.c │ ├── msdos │ │ ├── Makefile │ │ ├── dir.c │ │ ├── fat.c │ │ ├── file.c │ │ ├── inode.c │ │ ├── misc.c │ │ └── namei.c │ ├── namei.c │ ├── open.c │ ├── pipe.c │ ├── read_write.c │ ├── readdir.c │ ├── romfs │ │ ├── .gitignore │ │ ├── Makefile │ │ └── romfs.c │ ├── select.c │ ├── stat.c │ └── super.c ├── include │ ├── Makefile │ ├── arch │ │ ├── 8018x.h │ │ ├── Makefile │ │ ├── bitops.h │ │ ├── border.h │ │ ├── cdefs.h │ │ ├── cgatext.h │ │ ├── divmod.h │ │ ├── dma.h │ │ ├── fdreg.h │ │ ├── hdreg.h │ │ ├── io.h │ │ ├── irq.h │ │ ├── necv25.h │ │ ├── necv25.inc │ │ ├── param.h │ │ ├── ports.h │ │ ├── posixtyp.h │ │ ├── segment.h │ │ ├── serial-8250.h │ │ ├── serial-pc98.h │ │ ├── stat.h │ │ ├── statfs.h │ │ ├── string.h │ │ ├── swan.h │ │ ├── system.h │ │ └── types.h │ └── linuxmt │ │ ├── Makefile │ │ ├── ata.h │ │ ├── biosparm.h │ │ ├── boot.h │ │ ├── chqueue.h │ │ ├── config.h │ │ ├── ctype.h │ │ ├── debug.h │ │ ├── devnum.h │ │ ├── dirent.h │ │ ├── errno.h │ │ ├── fcntl.h │ │ ├── fd.h │ │ ├── fixedpt.h │ │ ├── fs.h │ │ ├── genhd.h │ │ ├── heap.h │ │ ├── in.h │ │ ├── init.h │ │ ├── ioctl.h │ │ ├── kd.h │ │ ├── kdev_t.h │ │ ├── kernel.h │ │ ├── limits.h │ │ ├── list.h │ │ ├── lp.h │ │ ├── major.h │ │ ├── mem.h │ │ ├── memory.h │ │ ├── minix.h │ │ ├── minix_fs.h │ │ ├── minix_fs_sb.h │ │ ├── mm.h │ │ ├── msdos_fs.h │ │ ├── msdos_fs_i.h │ │ ├── msdos_fs_sb.h │ │ ├── net.h │ │ ├── netstat.h │ │ ├── ntty.h │ │ ├── os2.h │ │ ├── pipe_fs_i.h │ │ ├── posixtyp.h │ │ ├── prectimer.h │ │ ├── rd.h │ │ ├── romfs_fs.h │ │ ├── sched.h │ │ ├── signal.h │ │ ├── socket.h │ │ ├── stat.h │ │ ├── string.h │ │ ├── sysctl.h │ │ ├── tcpdev.h │ │ ├── termios.h │ │ ├── time.h │ │ ├── timer.h │ │ ├── trace.h │ │ ├── types.h │ │ ├── un.h │ │ ├── unused │ │ ├── atomic.h │ │ ├── cond.h │ │ └── lock.h │ │ ├── utime.h │ │ ├── utsname.h │ │ └── wait.h ├── init │ ├── Makefile │ └── main.c ├── kernel │ ├── Makefile │ ├── exit.c │ ├── fork.c │ ├── printk.c │ ├── sched.c │ ├── signal.c │ ├── sleepwake.c │ ├── sys.c │ ├── sys2.c │ ├── syscall.c │ ├── sysctl.c │ ├── time.c │ ├── unused │ │ ├── lock.c │ │ └── wait.c │ └── version.c ├── lib │ ├── Makefile │ ├── chqueue.c │ ├── heap.c │ ├── list.c │ └── string.c ├── net │ ├── Makefile │ ├── config.in │ ├── ipv4 │ │ ├── Makefile │ │ ├── af_inet.c │ │ └── af_inet.h │ ├── nano │ │ ├── Makefile │ │ ├── af_nano.c │ │ └── af_nano.h │ ├── protocols.c │ ├── socket.c │ └── unix │ │ ├── Makefile │ │ ├── af_unix.c │ │ └── af_unix.h ├── r-elks.spec ├── scripts │ ├── .gitignore │ ├── elksspec │ ├── findproc │ ├── indent.sh │ ├── index │ ├── mkMake │ ├── pathdown.sh │ ├── reindent │ ├── renvar │ ├── setdir │ └── vars └── tools │ ├── .gitignore │ ├── Makefile │ ├── bin │ └── .directory │ ├── elf2elks │ ├── Makefile │ ├── elf2elks.c │ └── lib │ │ ├── elftoolchain-0.7.1.tar.bz2 │ │ ├── elftoolchain.patch │ │ └── elftoolchain2.patch │ ├── elks-compress │ ├── .gitignore │ ├── Makefile │ ├── elks-compress.c │ └── exomizer │ │ ├── changelog.txt │ │ ├── exo20info.txt │ │ ├── exo31info.txt │ │ ├── exobasic10b2.txt │ │ ├── rawdecrs │ │ ├── 6809 │ │ │ ├── README_exo3.txt │ │ │ ├── exo2_final.asm │ │ │ └── exo2_puls.txt │ │ ├── 8080 │ │ │ ├── P43 │ │ │ │ └── deexo.asm │ │ │ ├── P43E │ │ │ │ └── deexo.asm │ │ │ ├── P47T4 │ │ │ │ └── deexo.asm │ │ │ └── README.txt │ │ ├── 8086 │ │ │ ├── P47 │ │ │ │ └── deexo.asm.txt │ │ │ └── README.txt │ │ ├── Makefile │ │ ├── elksmain.c │ │ ├── exodecr-elks.c │ │ ├── exodecr-v2.c │ │ ├── exodecr.c │ │ ├── exodecr.h │ │ ├── exodecrunch.c │ │ ├── exodecrunch.h │ │ ├── main.c │ │ ├── main2.c │ │ ├── test1.bin │ │ ├── test2.bin │ │ ├── test3.bin │ │ ├── test4.bin │ │ ├── thumb2 │ │ │ ├── README.txt │ │ │ ├── speed.S │ │ │ └── universal.S │ │ └── z80 │ │ │ ├── deexoopt.asm │ │ │ ├── deexoopt_b0.asm │ │ │ ├── deexoopt_b1.asm │ │ │ ├── deexoopt_b2.asm │ │ │ ├── deexoopt_b3.asm │ │ │ ├── deexoopt_b4.asm │ │ │ ├── deexoopt_f0.asm │ │ │ ├── deexoopt_f1.asm │ │ │ ├── deexoopt_f2.asm │ │ │ ├── deexoopt_f3.asm │ │ │ ├── deexoopt_f4.asm │ │ │ ├── lgpl-2.1.txt │ │ │ └── readme.txt │ │ └── src │ │ ├── 6502emu.c │ │ ├── 6502emu.h │ │ ├── Makefile │ │ ├── Makefile.test │ │ ├── Makefile.testP16 │ │ ├── areatrace.c │ │ ├── areatrace.h │ │ ├── asm.tab.c │ │ ├── asm.tab.h │ │ ├── asm.y │ │ ├── asm.yy │ │ ├── b2buf.c │ │ ├── bas_main.c │ │ ├── bprg.c │ │ ├── bprg.h │ │ ├── bprg_actions.h │ │ ├── bprg_link_patch.c │ │ ├── bprg_renumber.c │ │ ├── bprg_trampoline.c │ │ ├── buf.c │ │ ├── buf.h │ │ ├── buf_io.c │ │ ├── buf_io.h │ │ ├── callback.h │ │ ├── chunkpool.c │ │ ├── chunkpool.h │ │ ├── common.h │ │ ├── desfx.c │ │ ├── desfx.h │ │ ├── exo_helper.c │ │ ├── exo_helper.h │ │ ├── exo_main.c │ │ ├── exo_raw.c │ │ ├── exo_util.c │ │ ├── exo_util.h │ │ ├── exodec.c │ │ ├── exodec.h │ │ ├── expr.c │ │ ├── expr.h │ │ ├── flags.h │ │ ├── getflag.c │ │ ├── getflag.h │ │ ├── int.h │ │ ├── lex.yy.c │ │ ├── log.c │ │ ├── log.h │ │ ├── map.c │ │ ├── map.h │ │ ├── match.c │ │ ├── match.h │ │ ├── named_buffer.c │ │ ├── named_buffer.h │ │ ├── optimal.c │ │ ├── optimal.h │ │ ├── output.c │ │ ├── output.h │ │ ├── parse.c │ │ ├── parse.h │ │ ├── pc.c │ │ ├── pc.h │ │ ├── perf.c │ │ ├── perf.h │ │ ├── progress.c │ │ ├── progress.h │ │ ├── radix.c │ │ ├── radix.h │ │ ├── search.c │ │ ├── search.h │ │ ├── sfxdecr.s │ │ ├── table.c │ │ ├── table.h │ │ ├── vec.c │ │ └── vec.h │ ├── elkscmds │ ├── Makefile │ └── debug │ ├── fixomf │ ├── Makefile │ ├── _pathgr2.h │ ├── banner.h │ ├── bool.h │ ├── clibext.h │ ├── fcenable.c │ ├── fcenable.h │ ├── makepath.c │ ├── mem.c │ ├── pathmac.h │ ├── poppck.h │ ├── pushpck1.h │ ├── records.c │ ├── split2.c │ ├── variety.h │ ├── walloca.h │ ├── watcom.h │ ├── widechar.h │ └── wio.h │ ├── mfs │ ├── AUTHORS │ ├── LICENSE │ ├── Makefile │ ├── README │ ├── TODO │ ├── bitops.h │ ├── dir.c │ ├── genfs.c │ ├── getoptx.c │ ├── iname.c │ ├── inode.c │ ├── main.c │ ├── minix_fs.h │ ├── mkfs.c │ ├── protos.h │ ├── reader.c │ ├── super.c │ ├── utils.c │ └── writer.c │ ├── mfsck │ ├── Makefile │ ├── bitops.h │ ├── mfsck.c │ ├── mfsck.h │ └── mkfsck.8 │ ├── mkromfs │ ├── Makefile │ ├── list.c │ ├── list.h │ └── mkromfs.c │ ├── mtools │ ├── Makefile │ └── mtools-4.0.23 │ │ ├── .gitignore │ │ ├── COPYING │ │ ├── INSTALL │ │ ├── Makefile.Be │ │ ├── Makefile.in │ │ ├── NEWS │ │ ├── README │ │ ├── README.BEBOX │ │ ├── Release.notes │ │ ├── aclocal.m4 │ │ ├── buffer.c │ │ ├── buffer.h │ │ ├── buildMingw.sh │ │ ├── byte_dword.h │ │ ├── charsetConv.c │ │ ├── cleanconfig │ │ ├── codepage.h │ │ ├── codepages.c │ │ ├── config.c │ │ ├── config.guess │ │ ├── config.h.Be │ │ ├── config.h.in │ │ ├── config.sub │ │ ├── configure │ │ ├── configure-stamp │ │ ├── configure.in │ │ ├── copyfile.c │ │ ├── debian │ │ ├── changelog │ │ ├── compat │ │ ├── control │ │ ├── floppyd.files │ │ ├── floppyd.manpages │ │ ├── mcheck.1 │ │ ├── mtools.conf │ │ ├── mtools.files │ │ ├── mtools.manpages │ │ └── rules │ │ ├── devices.c │ │ ├── devices.h │ │ ├── dirCache.c │ │ ├── dirCache.h │ │ ├── dirCacheP.h │ │ ├── directory.c │ │ ├── direntry.c │ │ ├── expand.c │ │ ├── fat.c │ │ ├── fat_free.c │ │ ├── fat_size_calculation.tex │ │ ├── file.c │ │ ├── file.h │ │ ├── file_name.c │ │ ├── file_name.h │ │ ├── file_read.c │ │ ├── filter.c │ │ ├── floppyd.1 │ │ ├── floppyd.c │ │ ├── floppyd_installtest.1 │ │ ├── floppyd_installtest.c │ │ ├── floppyd_io.c │ │ ├── floppyd_io.h │ │ ├── force_io.c │ │ ├── fs.h │ │ ├── fsP.h │ │ ├── hash.c │ │ ├── htable.h │ │ ├── init.c │ │ ├── install-sh │ │ ├── llong.c │ │ ├── llong.h │ │ ├── lockdev.c │ │ ├── lockdev.h │ │ ├── lz.1 │ │ ├── mainloop.c │ │ ├── mainloop.h │ │ ├── man-warning-end.texi │ │ ├── man-warning.texi │ │ ├── match.c │ │ ├── mattrib.1 │ │ ├── mattrib.c │ │ ├── mbadblocks.1 │ │ ├── mbadblocks.c │ │ ├── mcat.1 │ │ ├── mcat.c │ │ ├── mcd.1 │ │ ├── mcd.c │ │ ├── mclasserase.1 │ │ ├── mclasserase.c │ │ ├── mcomp.1 │ │ ├── mcopy.1 │ │ ├── mcopy.c │ │ ├── mdel.1 │ │ ├── mdel.c │ │ ├── mdeltree.1 │ │ ├── mdir.1 │ │ ├── mdir.c │ │ ├── mdoctorfat.c │ │ ├── mdu.1 │ │ ├── mdu.c │ │ ├── mformat.1 │ │ ├── mformat.c │ │ ├── minfo.1 │ │ ├── minfo.c │ │ ├── misc.c │ │ ├── missFuncs.c │ │ ├── mk_direntry.c │ │ ├── mkdosboot │ │ ├── mkinstalldirs │ │ ├── mkmanifest.1 │ │ ├── mkmanifest.c │ │ ├── mkmanpages │ │ ├── mlabel.1 │ │ ├── mlabel.c │ │ ├── mmd.1 │ │ ├── mmd.c │ │ ├── mmount.1 │ │ ├── mmount.c │ │ ├── mmove.1 │ │ ├── mmove.c │ │ ├── mpartition.1 │ │ ├── mpartition.c │ │ ├── mrd.1 │ │ ├── mren.1 │ │ ├── msdos.h │ │ ├── mshortname.1 │ │ ├── mshortname.c │ │ ├── mshowfat.1 │ │ ├── mshowfat.c │ │ ├── mtools.1 │ │ ├── mtools.5 │ │ ├── mtools.c │ │ ├── mtools.conf │ │ ├── mtools.h │ │ ├── mtools.spec │ │ ├── mtools.texi │ │ ├── mtools.tmpl.1 │ │ ├── mtools.tmpl.5 │ │ ├── mtoolsDirentry.h │ │ ├── mtoolsPaths.h │ │ ├── mtoolstest.1 │ │ ├── mtype.1 │ │ ├── mxtar.1 │ │ ├── mzip.1 │ │ ├── mzip.c │ │ ├── nameclash.h │ │ ├── old_dos.c │ │ ├── partition.h │ │ ├── patchlevel.c │ │ ├── plain_io.c │ │ ├── plain_io.h │ │ ├── precmd.c │ │ ├── privileges.c │ │ ├── privtest.c │ │ ├── read_dword.h │ │ ├── scripts │ │ ├── add-disk │ │ ├── amuFormat.sh │ │ ├── download │ │ ├── format.dat │ │ ├── mcheck │ │ ├── mcomp │ │ ├── mxtar │ │ ├── tgz │ │ └── uz │ │ ├── scsi.c │ │ ├── scsi.h │ │ ├── signal.c │ │ ├── stream.c │ │ ├── stream.h │ │ ├── streamcache.c │ │ ├── strip-pp.sed │ │ ├── strtonum.c │ │ ├── subdir.c │ │ ├── sysconfdir.texi │ │ ├── sysincludes.h │ │ ├── texinfo.tex │ │ ├── tgz.1 │ │ ├── tty.c │ │ ├── unixdir.c │ │ ├── uz.1 │ │ ├── version.texi │ │ ├── vfat.c │ │ ├── vfat.h │ │ ├── xdf_io.c │ │ └── xdf_io.h │ ├── objtools │ ├── Makefile │ ├── ecc │ ├── ewcc │ ├── ewlink │ ├── objdump86.c │ ├── omf2elf.c │ ├── omfdump.c │ ├── os2dump.c │ └── os2toelks.c │ └── setboot │ ├── .gitignore │ ├── Makefile │ └── setboot.c ├── elkscmd ├── Applications ├── LICENSE ├── Make.install ├── Makefile ├── Makefile-rules ├── README ├── WARRANTY ├── advent │ ├── .gitignore │ ├── Makefile │ ├── advent.c │ ├── advent.db │ ├── advent.h │ ├── adventdb.c │ ├── advgen.c │ ├── database.c │ ├── english.c │ ├── environ.doc │ ├── global.c │ ├── history.doc │ ├── itverb.c │ ├── lib.c │ ├── saveadv.c │ ├── turn.c │ └── verb.c ├── ash │ ├── .gitignore │ ├── COPYING │ ├── Makefile │ ├── README.elks │ ├── TOUR │ ├── bltin │ │ ├── .gitignore │ │ ├── LICENSE │ │ ├── binary_op │ │ ├── bltin.h │ │ ├── catf.c │ │ ├── echo.c │ │ ├── error.c │ │ ├── expr.c │ │ ├── line.c │ │ ├── makefile.not │ │ ├── mkexpr │ │ ├── nlecho.c │ │ ├── regexp.c │ │ ├── stalloc.c │ │ ├── umask.c │ │ └── unary_op │ ├── builtins.table │ ├── cd.c │ ├── debug.h │ ├── dirent.c │ ├── dmalloc.c │ ├── error.c │ ├── error.h │ ├── eval.c │ ├── eval.h │ ├── exec.c │ ├── exec.h │ ├── expand.c │ ├── expand.h │ ├── funcs │ │ ├── cmv │ │ ├── dirs │ │ ├── kill │ │ ├── login │ │ ├── newgrp │ │ ├── popd │ │ ├── pushd │ │ └── suspend │ ├── init.h │ ├── input.c │ ├── input.h │ ├── jobs.c │ ├── jobs.h │ ├── machdep.h │ ├── mail.c │ ├── mail.h │ ├── main.c │ ├── main.h │ ├── memalloc.c │ ├── memalloc.h │ ├── miscbltin.c │ ├── mkbuiltins │ ├── mkinit.c │ ├── mknodes.c │ ├── mksignames.c │ ├── mksyntax.c │ ├── mktokens │ ├── mystring.c │ ├── mystring.h │ ├── nodes.c.pat │ ├── nodetypes │ ├── options.c │ ├── options.h │ ├── output.c │ ├── output.h │ ├── parser.c │ ├── parser.h │ ├── redir.c │ ├── redir.h │ ├── shell.h │ ├── show.c │ ├── signames.c │ ├── signames.h │ ├── test │ │ └── malloc.c │ ├── trap.c │ ├── trap.h │ ├── var.c │ └── var.h ├── basic │ ├── .gitignore │ ├── LICENSE │ ├── Makefile │ ├── Makefile.owc │ ├── README.md │ ├── TODO │ ├── asm-ibmpc.S │ ├── asm-pc98.S │ ├── basic.c │ ├── basic.h │ ├── eliza.bas │ ├── host-8018x.c │ ├── host-ibmpc.c │ ├── host-pc98.c │ ├── host-stubs.c │ ├── host.c │ ├── host.h │ ├── snake98.bas │ ├── snakecga.bas │ ├── test.bas │ └── test98.bas ├── bc │ ├── .gitignore │ ├── COPYING │ ├── Makefile │ ├── bc.c │ ├── bc.y │ ├── bcdefs.h │ ├── config.h │ ├── const.h │ ├── execute.c │ ├── fix_math.h │ ├── global.c │ ├── global.h │ ├── libmath.b │ ├── load.c │ ├── main.c │ ├── number.c │ ├── number.h │ ├── proto.h │ ├── sbc.y │ ├── scan.c │ ├── scan.l │ ├── storage.c │ ├── util.c │ ├── version.h │ └── y.tab.h ├── busyelks │ ├── .gitignore │ ├── README │ ├── busyelks.fs │ ├── cmd.h │ ├── cmd │ │ ├── banner.c │ │ ├── basename.c │ │ ├── cal.c │ │ ├── cat.c │ │ ├── chgrp.c │ │ ├── chmod.c │ │ ├── chown.c │ │ ├── cksum.c │ │ ├── clock.c │ │ ├── cmp.c │ │ ├── cp.c │ │ ├── cut.c │ │ ├── date.c │ │ ├── dd.c │ │ ├── diff.c │ │ ├── dirname.c │ │ ├── du.c │ │ ├── echo.c │ │ ├── ed.c │ │ ├── fdisk.c │ │ ├── find.c │ │ ├── fsck.c │ │ ├── getty.c │ │ ├── grep.c │ │ ├── head.c │ │ ├── kill.c │ │ ├── l.c │ │ ├── ln.c │ │ ├── login.c │ │ ├── logname.c │ │ ├── ls.c │ │ ├── man.c │ │ ├── meminfo.c │ │ ├── mesg.c │ │ ├── min_init.c │ │ ├── mkdir.c │ │ ├── mkfifo.c │ │ ├── mkfs.c │ │ ├── mknod.c │ │ ├── more.c │ │ ├── mount.c │ │ ├── mv.c │ │ ├── partype.c │ │ ├── passwd.c │ │ ├── printenv.c │ │ ├── ps.c │ │ ├── pwd.c │ │ ├── ramdisk.c │ │ ├── reboot.c │ │ ├── rm.c │ │ ├── rmdir.c │ │ ├── sed.c │ │ ├── setenv.c │ │ ├── sh.c │ │ ├── sort.c │ │ ├── stty.c │ │ ├── swapon.c │ │ ├── tail.c │ │ ├── tar.c │ │ ├── tee.c │ │ ├── test.c │ │ ├── tinygrep.c │ │ ├── touch.c │ │ ├── tr.c │ │ ├── umount.c │ │ ├── uname.c │ │ ├── uniq.c │ │ ├── wc.c │ │ ├── which.c │ │ ├── who.c │ │ ├── whoami.c │ │ ├── write.c │ │ ├── xargs.c │ │ └── yes.c │ ├── config.mk │ ├── defs.h │ ├── fdisk.h │ ├── lib.h │ ├── lib │ │ ├── bsearch.c │ │ ├── buildname.c │ │ ├── chunks.c │ │ ├── copyfile.c │ │ ├── fsbitops.c │ │ ├── getpass.c │ │ ├── isadir.c │ │ ├── match.c │ │ ├── modestring.c │ │ ├── namesort.c │ │ ├── sashlib.c │ │ ├── timestring.c │ │ ├── utc_mktime.c │ │ └── wildcards.c │ ├── main.c │ ├── makefile │ └── sash.h ├── config.in ├── cron │ ├── .gitignore │ ├── COPYRIGHT │ ├── Makefile │ ├── README │ ├── VERSION │ ├── config.h │ ├── cron.c │ ├── cron.h │ ├── crontab.c │ ├── lib.c │ ├── readcrontab.c │ └── runjob.c ├── debug │ ├── .gitignore │ ├── Makefile │ ├── debug │ │ ├── instrument.h │ │ └── syms.h │ ├── dis.c │ ├── disasm.c │ ├── disasm.h │ ├── nm86.c │ ├── opcodes.s │ ├── prologues │ └── testsym.c ├── disk_utils │ ├── .gitignore │ ├── COPYING │ ├── Makefile │ ├── df.c │ ├── fdisk.c │ ├── fsck.c │ ├── mkfat.c │ ├── mkfs.c │ ├── partype.c │ └── ramdisk.c ├── elvis │ ├── .gitignore │ ├── Elvis.lnk │ ├── Elvis.mak │ ├── Elvis.prj │ ├── KNOWN.BUGS │ ├── Makefile │ ├── Makefile.org │ ├── PORT_NOTES │ ├── README │ ├── alias.c │ ├── atari.c │ ├── blk.c │ ├── cmd1.c │ ├── cmd2.c │ ├── config.h │ ├── ctags.c │ ├── curses.c │ ├── curses.h │ ├── cut.c │ ├── date.c │ ├── doc │ │ ├── cflags.doc │ │ ├── ctags.man │ │ ├── cutbufs.doc │ │ ├── differ.doc │ │ ├── elvis.man │ │ ├── environ.doc │ │ ├── ex.doc │ │ ├── index.doc │ │ ├── internal.doc │ │ ├── intro.doc │ │ ├── options.doc │ │ ├── ref.man │ │ ├── refont.man │ │ ├── regexp.doc │ │ ├── termcap.doc │ │ ├── versions.doc │ │ ├── virec.man │ │ └── visual.doc │ ├── ex.c │ ├── ex.h │ ├── input.c │ ├── main.c │ ├── misc.c │ ├── modify.c │ ├── move1.c │ ├── move2.c │ ├── move3.c │ ├── move4.c │ ├── move5.c │ ├── opts.c │ ├── osk.c │ ├── osk.h │ ├── pc.c │ ├── profile.sh │ ├── recycle.c │ ├── redraw.c │ ├── redraw.h │ ├── ref.c │ ├── refont.c │ ├── regexp.c │ ├── regexp.h │ ├── regsub.c │ ├── shell.c │ ├── sysdos.c │ ├── system.c │ ├── system.h │ ├── tags │ ├── test.c │ ├── tinytcap.c │ ├── tinytcap.h │ ├── tio.c │ ├── tio.h │ ├── tmp.c │ ├── tmp.h │ ├── vars.c │ ├── vcmd.c │ ├── vi.c │ ├── vi.h │ ├── virec.c │ └── wildcard.c ├── file_utils │ ├── .gitignore │ ├── COPYING │ ├── COPYING.sash │ ├── Makefile │ ├── README │ ├── WARRANTY │ ├── cat.c │ ├── chgrp.c │ ├── chmod.c │ ├── chown.c │ ├── cmp.c │ ├── cp.c │ ├── dd.c │ ├── futils.h │ ├── grep.c │ ├── l.c │ ├── ln.c │ ├── ls.c │ ├── md5sum.c │ ├── mkdir.c │ ├── mkfifo.c │ ├── mknod.c │ ├── more.c │ ├── mv.c │ ├── rm.c │ ├── rmdir.c │ ├── split.c │ ├── sync.c │ └── touch.c ├── fsck_dos │ ├── .gitignore │ ├── LICENSE │ ├── Makefile │ ├── Makefile.owc │ ├── boot.c │ ├── check.c │ ├── dir.c │ ├── dosfs.h │ ├── ext.h │ ├── fat.c │ ├── main.c │ └── mem.c ├── gui │ ├── .gitignore │ ├── LICENSE │ ├── Makefile │ ├── Makefile.c86 │ ├── Makefile.owc │ ├── app.c │ ├── app.h │ ├── cursor.c │ ├── drawbmp.c │ ├── drawscanline.c │ ├── event.c │ ├── event.h │ ├── graphics.c │ ├── graphics.h │ ├── gui.c │ ├── gui.h │ ├── images │ │ ├── brush.bmp │ │ ├── circle.bmp │ │ ├── cls.bmp │ │ ├── fill.bmp │ │ ├── paint.bmp │ │ ├── quit.bmp │ │ ├── rectangle.bmp │ │ └── save.bmp │ ├── input.c │ ├── input.h │ ├── mouse.c │ ├── mouse.h │ ├── render.c │ ├── render.h │ ├── vga-c86.s │ ├── vga-ia16.S │ └── vgalib.h ├── inet │ ├── Makefile │ ├── ftp │ │ ├── .gitignore │ │ ├── Makefile │ │ ├── ftp.c │ │ └── ftpd.c │ ├── httpd │ │ ├── .gitignore │ │ ├── Makefile │ │ ├── httpd.c │ │ └── sample_index.html │ ├── nettools │ │ ├── .gitignore │ │ ├── Makefile │ │ ├── arp.c │ │ ├── netstat.c │ │ ├── nslookup.c │ │ └── resolv.cfg │ ├── telnet │ │ ├── .gitignore │ │ ├── Makefile │ │ └── telnet.c │ ├── telnetd │ │ ├── .gitignore │ │ ├── Makefile │ │ ├── telnet.c │ │ ├── telnet.h │ │ └── telnetd.c │ ├── tinyirc │ │ ├── .gitignore │ │ ├── COPYING │ │ ├── DCC.doc │ │ ├── Makefile │ │ ├── announce │ │ ├── ctcp.doc │ │ ├── magic │ │ ├── server-numerics │ │ ├── tinyirc.c │ │ └── tinyircd.c │ └── urlget │ │ ├── .gitignore │ │ ├── Makefile │ │ ├── net.c │ │ └── urlget.c ├── ktcp │ ├── .gitignore │ ├── Makefile │ ├── arp.c │ ├── arp.h │ ├── config.h │ ├── deveth.c │ ├── deveth.h │ ├── hexdump.c │ ├── icmp.c │ ├── icmp.h │ ├── ip.c │ ├── ip.h │ ├── ktcp.c │ ├── netconf.c │ ├── netconf.h │ ├── slip.c │ ├── slip.h │ ├── tcp.c │ ├── tcp.h │ ├── tcp_cb.c │ ├── tcp_cb.h │ ├── tcp_output.c │ ├── tcp_output.h │ ├── tcpdev.c │ ├── tcpdev.h │ ├── timer.c │ ├── timer.h │ ├── vjhc.c │ └── vjhc.h ├── levee │ ├── .gitignore │ ├── Makefile │ ├── beep.c │ ├── blockio.c │ ├── display.c │ ├── doscall.c │ ├── editcor.c │ ├── exec.c │ ├── extern.h │ ├── find.c │ ├── flexcall.c │ ├── gemcall.c │ ├── globals.c │ ├── grep.h │ ├── insert.c │ ├── levee.h │ ├── lv.doc │ ├── main.c │ ├── misc.c │ ├── modify.c │ ├── move.c │ ├── proto.h │ ├── readme.os2 │ ├── rmxcall.c │ ├── tc │ ├── termcap.i │ ├── ucsd.c │ ├── undo.c │ ├── unixcall.c │ └── wildargs.c ├── lib │ ├── Makefile │ └── tiny_vfprintf.c ├── man-minix │ ├── man1 │ │ ├── miniterm.1 │ │ ├── screen.1 │ │ └── tget.1 │ ├── man2 │ │ ├── intro.2 │ │ └── statvfs.2 │ ├── man4 │ │ ├── console.4 │ │ ├── controller.4 │ │ ├── dev.4 │ │ ├── fd.4 │ │ ├── ip.4 │ │ └── tty.4 │ ├── man5 │ │ ├── TZ.5 │ │ ├── boot.cfg.5 │ │ ├── configfile.5 │ │ ├── fstab.5 │ │ ├── http_status.5 │ │ ├── httpd.conf.5 │ │ ├── keymap.5 │ │ ├── resolv.conf.5 │ │ ├── resolver.5 │ │ ├── statvfs.5 │ │ ├── system.conf.5 │ │ ├── termcap.5 │ │ └── utmp.5 │ └── man8 │ │ └── boot.8 ├── man │ ├── man1 │ │ ├── ash.1 │ │ ├── basename.1 │ │ ├── cal.1 │ │ ├── chgrp.1 │ │ ├── chmod.1 │ │ ├── chown.1 │ │ ├── clear.1 │ │ ├── cmp.1 │ │ ├── compress.1 │ │ ├── cp.1 │ │ ├── crontab.1 │ │ ├── dd.1 │ │ ├── df.1 │ │ ├── diff.1 │ │ ├── ecalc.1 │ │ ├── echo.1 │ │ ├── edit.1 │ │ ├── env.1 │ │ ├── fm.1 │ │ ├── ftp.1 │ │ ├── kill.1 │ │ ├── lp.1 │ │ ├── ls.1 │ │ ├── mail.1 │ │ ├── man.1 │ │ ├── meminfo.1 │ │ ├── nslookup.1 │ │ ├── od.1 │ │ ├── passwd.1 │ │ ├── ps.1 │ │ ├── pwd.1 │ │ ├── remsync.1 │ │ ├── sash.1 │ │ ├── sleep.1 │ │ ├── split.1 │ │ ├── stty.1 │ │ ├── synctree.1 │ │ ├── tail.1 │ │ ├── tee.1 │ │ ├── telnet.1 │ │ ├── test.1 │ │ ├── tr.1 │ │ ├── true.1 │ │ ├── tty.1 │ │ ├── ttyclock.1 │ │ ├── uname.1 │ │ ├── urlget.1 │ │ ├── uudecode.1 │ │ ├── uuencode.1 │ │ ├── vi.1 │ │ ├── wc.1 │ │ ├── who.1 │ │ ├── xargs.1 │ │ └── yes.1 │ ├── man1x │ │ ├── elvis.1x │ │ └── mined.1x │ ├── man2 │ │ ├── accept.2 │ │ ├── access.2 │ │ ├── alarm.2 │ │ ├── bind.2 │ │ ├── brk.2 │ │ ├── chdir.2 │ │ ├── chmod.2 │ │ ├── chown.2 │ │ ├── close.2 │ │ ├── connect.2 │ │ ├── creat.2 │ │ ├── dup.2 │ │ ├── execve.2 │ │ ├── exit.2 │ │ ├── fcntl.2 │ │ ├── fmemalloc.2 │ │ ├── fork.2 │ │ ├── getgid.2 │ │ ├── getpeernam.2 │ │ ├── getpid.2 │ │ ├── getsocknam.2 │ │ ├── getsockopt.2 │ │ ├── gettimeofd.2 │ │ ├── getuid.2 │ │ ├── ioctl.2 │ │ ├── kill.2 │ │ ├── link.2 │ │ ├── listen.2 │ │ ├── lseek.2 │ │ ├── mkdir.2 │ │ ├── mknod.2 │ │ ├── mount.2 │ │ ├── open.2 │ │ ├── pipe.2 │ │ ├── read.2 │ │ ├── readlink.2 │ │ ├── reboot.2 │ │ ├── rename.2 │ │ ├── rmdir.2 │ │ ├── select.2 │ │ ├── setsid.2 │ │ ├── setsockopt.2 │ │ ├── setuid.2 │ │ ├── shutdown.2 │ │ ├── socket.2 │ │ ├── socketpair.2 │ │ ├── symlink.2 │ │ ├── sync.2 │ │ ├── time.2 │ │ ├── umask.2 │ │ ├── uname.2 │ │ ├── unlink.2 │ │ ├── utime.2 │ │ ├── wait.2 │ │ └── write.2 │ ├── man3 │ │ └── fmemalloc.3 │ ├── man4 │ │ ├── 3c.4 │ │ ├── lp.4 │ │ ├── ne.4 │ │ └── wd.4 │ ├── man5 │ │ ├── bootopts.5 │ │ ├── crontab.5 │ │ ├── dir.5 │ │ ├── hosts.5 │ │ └── passwd.5 │ ├── man7 │ │ ├── ascii.7 │ │ ├── environ.7 │ │ ├── hier.7 │ │ └── man.7 │ └── man8 │ │ ├── clock.8 │ │ ├── config.8 │ │ ├── cron.8 │ │ ├── fdisk.8 │ │ ├── fsck-dos.8 │ │ ├── fsck.8 │ │ ├── ftpd.8 │ │ ├── getty.8 │ │ ├── httpd.8 │ │ ├── ifconfig.8 │ │ ├── inet.8 │ │ ├── init.8 │ │ ├── loadramdis.8 │ │ ├── login.8 │ │ ├── makeboot.8 │ │ ├── mkfs.8 │ │ ├── mount.8 │ │ ├── netconf.8 │ │ ├── part.8 │ │ ├── partition.8 │ │ ├── pwdauth.8 │ │ ├── readclock.8 │ │ ├── serial-ip.8 │ │ ├── service.8 │ │ ├── setup.8 │ │ ├── shutdown.8 │ │ ├── slip.8 │ │ ├── sync.8 │ │ ├── sys.8 │ │ ├── tcpd.8 │ │ ├── umount.8 │ │ ├── unix.8 │ │ └── usage.8 ├── minix1 │ ├── .gitignore │ ├── COPYING │ ├── Makefile │ ├── banner.c │ ├── cksum.c │ ├── cut.c │ ├── decomp16.c │ ├── du.c │ ├── fgrep.c │ ├── grep.c │ ├── proto.c │ ├── sum.c │ ├── uniq.c │ └── wc.c ├── minix2 │ ├── .gitignore │ ├── COPYING │ ├── COPYRIGHT │ ├── Makefile │ ├── eject.c │ ├── env.c │ ├── install.c │ ├── lp.c │ ├── lpd.c │ ├── man.c │ ├── mt.c │ ├── pwdauth.c │ ├── remsync.c │ ├── synctree.c │ └── tget.c ├── minix3 │ ├── .gitignore │ ├── LICENSE │ ├── Makefile │ ├── README │ ├── cal.c │ ├── defs.h │ ├── diff.c │ ├── file.c │ ├── find.c │ ├── head.c │ ├── mail.c │ ├── sed.c │ ├── sort.c │ ├── tail.c │ └── tee.c ├── misc_utils │ ├── .gitignore │ ├── COPYING │ ├── COPYING.sash │ ├── LZW.INFO │ ├── Makefile │ ├── README.compress │ ├── compress.c │ ├── ecalc.c │ ├── ed.c │ ├── hd.c │ ├── kilo.c │ ├── lpfilter.c │ ├── mined.h │ ├── mined1.c │ ├── mined2.c │ ├── miniterm.c │ ├── mutils.h │ ├── od.c │ ├── sleep.c │ ├── tar-sash.c │ ├── tar.c │ ├── time.c │ ├── tty.c │ ├── uudecode.c │ └── uuencode.c ├── nano-X │ ├── .directory │ ├── FIXME │ ├── LICENSE │ ├── Makefile │ ├── bin │ │ ├── .directory │ │ └── .gitignore │ ├── demos │ │ ├── .directory │ │ ├── Makefile │ │ ├── demo-vga.c │ │ ├── info.c │ │ ├── nxclock.c │ │ ├── nxcolors.h │ │ ├── nxdemo.c │ │ ├── nxmine.c │ │ ├── nxterm.c │ │ ├── nxtest.c │ │ ├── nxtetris.c │ │ ├── nxtetris.h │ │ ├── nxworld.c │ │ └── nxworld.map │ ├── device.h │ ├── doc │ │ ├── BUGS │ │ ├── CREDITS │ │ ├── ChangeLog │ │ ├── INSTALL │ │ ├── README │ │ ├── README.bogl │ │ ├── README.mini-x │ │ ├── README.nanox │ │ ├── Readme-ELKS │ │ ├── TODO │ │ ├── TUTORIAL.mini-x │ │ ├── landmine.doc │ │ └── world.doc │ ├── drivers │ │ ├── X6x13.c │ │ ├── elksutilasm.s │ │ ├── fb.h │ │ ├── genfont.c │ │ ├── genfont.h │ │ ├── kbd_bios.c │ │ ├── kbd_tty.c │ │ ├── mempl4.c │ │ ├── mou_pc98.c │ │ ├── mou_ser.c │ │ ├── ramfont.c │ │ ├── ramfont.h │ │ ├── romfont.c │ │ ├── romfont.h │ │ ├── scr_bios.c │ │ ├── scr_cga.c │ │ ├── scr_herc.c │ │ ├── scr_pc98.c │ │ ├── unused │ │ │ ├── asm.h │ │ │ ├── asmbios.s │ │ │ ├── asmmsc.h │ │ │ ├── asmplan4.org │ │ │ ├── asmplan4.s │ │ │ ├── elkplan4.c │ │ │ ├── elkplan4.ok │ │ │ ├── elksutil.c │ │ │ ├── fb.c │ │ │ ├── fblin1.c │ │ │ ├── fblin16.c │ │ │ ├── fblin2.c │ │ │ ├── fblin32.c │ │ │ ├── fblin4.c │ │ │ ├── fblin8.c │ │ │ ├── fbnull.c │ │ │ ├── fbvt.c │ │ │ ├── mempl4.org │ │ │ ├── mou_dos.c │ │ │ ├── mou_gpm.c │ │ │ ├── mou_null.c │ │ │ ├── mou_ser-new.c │ │ │ ├── mou_ser_qemu.c │ │ │ ├── mou_tp.c │ │ │ ├── mou_tp.h │ │ │ ├── scr_fb.c │ │ │ └── scr_svga.c │ │ ├── vgainit.c │ │ ├── vgaplan4.c │ │ ├── vgaplan4.h │ │ ├── vgaplan4_cga.c │ │ └── vgaplan4_pc98.c │ ├── engine │ │ ├── devclip1.c │ │ ├── devclip2.c │ │ ├── devdraw.c │ │ ├── devkbd.c │ │ ├── devmouse.c │ │ ├── devpal1.c │ │ ├── devpal2.c │ │ ├── devpal4.c │ │ ├── devpal8.c │ │ ├── devrgn.c │ │ ├── list.c │ │ └── list.h │ ├── nano-X.h │ └── nanox │ │ ├── client.c │ │ ├── serv.h │ │ ├── srvevent.c │ │ ├── srvfunc.c │ │ ├── srvmain.c │ │ ├── srvnet.c │ │ ├── srvutil.c │ │ └── stubs.c ├── nano │ ├── .gitignore │ ├── Make.defs │ ├── Makefile │ ├── nano-2.0.6 │ │ ├── ABOUT-NLS │ │ ├── AUTHORS │ │ ├── BUGS │ │ ├── COPYING │ │ ├── ChangeLog │ │ ├── INSTALL │ │ ├── Makefile │ │ ├── Makefile.am │ │ ├── Makefile.in │ │ ├── NEWS │ │ ├── README │ │ ├── README.CVS │ │ ├── THANKS │ │ ├── TODO │ │ ├── UPGRADE │ │ ├── aclocal.m4 │ │ ├── config.guess │ │ ├── config.h │ │ ├── config.h.in │ │ ├── config.log │ │ ├── config.rpath │ │ ├── config.status │ │ ├── config.sub │ │ ├── configure │ │ ├── configure.ac │ │ ├── configure.sh │ │ ├── depcomp │ │ ├── doc │ │ │ ├── Makefile │ │ │ ├── Makefile.am │ │ │ ├── Makefile.in │ │ │ ├── faq.html │ │ │ ├── man │ │ │ │ ├── Makefile │ │ │ │ ├── Makefile.am │ │ │ │ ├── Makefile.in │ │ │ │ ├── fr │ │ │ │ │ ├── Makefile │ │ │ │ │ ├── Makefile.am │ │ │ │ │ ├── Makefile.in │ │ │ │ │ ├── nano.1 │ │ │ │ │ ├── nano.1.html │ │ │ │ │ ├── nanorc.5 │ │ │ │ │ ├── nanorc.5.html │ │ │ │ │ ├── rnano.1 │ │ │ │ │ └── rnano.1.html │ │ │ │ ├── nano.1 │ │ │ │ ├── nano.1.html │ │ │ │ ├── nanorc.5 │ │ │ │ ├── nanorc.5.html │ │ │ │ ├── rnano.1 │ │ │ │ └── rnano.1.html │ │ │ ├── nanorc.sample │ │ │ ├── nanorc.sample.in │ │ │ ├── syntax │ │ │ │ ├── Makefile │ │ │ │ ├── Makefile.am │ │ │ │ ├── Makefile.in │ │ │ │ ├── asm.nanorc │ │ │ │ ├── c.nanorc │ │ │ │ ├── groff.nanorc │ │ │ │ ├── html.nanorc │ │ │ │ ├── java.nanorc │ │ │ │ ├── man.nanorc │ │ │ │ ├── mutt.nanorc │ │ │ │ ├── nanorc.nanorc │ │ │ │ ├── patch.nanorc │ │ │ │ ├── perl.nanorc │ │ │ │ ├── pov.nanorc │ │ │ │ ├── python.nanorc │ │ │ │ ├── ruby.nanorc │ │ │ │ ├── sh.nanorc │ │ │ │ └── tex.nanorc │ │ │ └── texinfo │ │ │ │ ├── Makefile │ │ │ │ ├── Makefile.am │ │ │ │ ├── Makefile.in │ │ │ │ ├── nano.info │ │ │ │ ├── nano.texi │ │ │ │ └── texinfo.tex │ │ ├── install-sh │ │ ├── m4 │ │ │ ├── ChangeLog │ │ │ ├── Makefile │ │ │ ├── Makefile.am │ │ │ ├── Makefile.in │ │ │ ├── ac_define_dir.m4 │ │ │ ├── codeset.m4 │ │ │ ├── gettext.m4 │ │ │ ├── glib-2.0.m4 │ │ │ ├── glibc21.m4 │ │ │ ├── iconv.m4 │ │ │ ├── intdiv0.m4 │ │ │ ├── inttypes-pri.m4 │ │ │ ├── inttypes.m4 │ │ │ ├── inttypes_h.m4 │ │ │ ├── isc-posix.m4 │ │ │ ├── lcmessage.m4 │ │ │ ├── lib-ld.m4 │ │ │ ├── lib-link.m4 │ │ │ ├── lib-prefix.m4 │ │ │ ├── progtest.m4 │ │ │ ├── stdint_h.m4 │ │ │ ├── uintmax_t.m4 │ │ │ └── ulonglong.m4 │ │ ├── missing │ │ ├── mkinstalldirs │ │ ├── nano-2.0.6.diff │ │ ├── nano.rc │ │ ├── nano.spec │ │ ├── nano.spec.in │ │ ├── po │ │ │ ├── ChangeLog │ │ │ ├── LINGUAS │ │ │ ├── Makefile │ │ │ ├── Makefile.in │ │ │ ├── Makefile.in.in │ │ │ ├── Makevars │ │ │ ├── POTFILES │ │ │ ├── POTFILES.in │ │ │ ├── Rules-quot │ │ │ ├── bg.gmo │ │ │ ├── bg.po │ │ │ ├── boldquot.sed │ │ │ ├── ca.gmo │ │ │ ├── ca.po │ │ │ ├── cs.gmo │ │ │ ├── cs.po │ │ │ ├── da.gmo │ │ │ ├── da.po │ │ │ ├── de.gmo │ │ │ ├── de.po │ │ │ ├── en@boldquot.header │ │ │ ├── en@quot.header │ │ │ ├── es.gmo │ │ │ ├── es.po │ │ │ ├── eu.gmo │ │ │ ├── eu.po │ │ │ ├── fi.gmo │ │ │ ├── fi.po │ │ │ ├── fr.gmo │ │ │ ├── fr.po │ │ │ ├── ga.gmo │ │ │ ├── ga.po │ │ │ ├── gl.gmo │ │ │ ├── gl.po │ │ │ ├── hu.gmo │ │ │ ├── hu.po │ │ │ ├── id.gmo │ │ │ ├── id.po │ │ │ ├── insert-header.sin │ │ │ ├── it.gmo │ │ │ ├── it.po │ │ │ ├── ms.gmo │ │ │ ├── ms.po │ │ │ ├── nano.pot │ │ │ ├── nb.gmo │ │ │ ├── nb.po │ │ │ ├── nl.gmo │ │ │ ├── nl.po │ │ │ ├── nn.gmo │ │ │ ├── nn.po │ │ │ ├── pl.gmo │ │ │ ├── pl.po │ │ │ ├── pt_BR.gmo │ │ │ ├── pt_BR.po │ │ │ ├── quot.sed │ │ │ ├── remove-potcdate.sin │ │ │ ├── ro.gmo │ │ │ ├── ro.po │ │ │ ├── ru.gmo │ │ │ ├── ru.po │ │ │ ├── rw.gmo │ │ │ ├── rw.po │ │ │ ├── sr.gmo │ │ │ ├── sr.po │ │ │ ├── sv.gmo │ │ │ ├── sv.po │ │ │ ├── tr.gmo │ │ │ ├── tr.po │ │ │ ├── uk.gmo │ │ │ ├── uk.po │ │ │ ├── vi.gmo │ │ │ ├── vi.po │ │ │ ├── zh_TW.gmo │ │ │ └── zh_TW.po │ │ ├── src │ │ │ ├── .deps │ │ │ │ └── .gitignore │ │ │ ├── Makefile │ │ │ ├── Makefile.am │ │ │ ├── Makefile.in │ │ │ ├── browser.c │ │ │ ├── chars.c │ │ │ ├── color.c │ │ │ ├── cut.c │ │ │ ├── files.c │ │ │ ├── global.c │ │ │ ├── help.c │ │ │ ├── move.c │ │ │ ├── nano.c │ │ │ ├── nano.h │ │ │ ├── prompt.c │ │ │ ├── proto.h │ │ │ ├── rcfile.c │ │ │ ├── regex.c │ │ │ ├── search.c │ │ │ ├── text.c │ │ │ ├── utils.c │ │ │ └── winio.c │ │ └── stamp-h1 │ ├── ncurses-5.2 │ │ ├── ANNOUNCE │ │ ├── INSTALL │ │ ├── MANIFEST │ │ ├── Makefile │ │ ├── Makefile.glibc │ │ ├── Makefile.in │ │ ├── Makefile.os2 │ │ ├── NEWS │ │ ├── README │ │ ├── README.emx │ │ ├── README.glibc │ │ ├── TO-DO │ │ ├── aclocal.m4 │ │ ├── announce.html.in │ │ ├── config.cache │ │ ├── config.guess │ │ ├── config.log │ │ ├── config.status │ │ ├── config.sub │ │ ├── configure │ │ ├── configure.in │ │ ├── configure.sh │ │ ├── convert_configure.pl │ │ ├── dist.mk │ │ ├── headers.sh │ │ ├── include │ │ │ ├── Caps │ │ │ ├── MKhashsize.sh │ │ │ ├── MKncurses_def.sh │ │ │ ├── MKparametrized.sh │ │ │ ├── MKterm.h.awk │ │ │ ├── MKterm.h.awk.in │ │ │ ├── Makefile │ │ │ ├── Makefile.in │ │ │ ├── capdefaults.c │ │ │ ├── curses.h │ │ │ ├── curses.h.in │ │ │ ├── edit_cfg.sh │ │ │ ├── headers │ │ │ ├── nc_alloc.h │ │ │ ├── nc_panel.h │ │ │ ├── ncurses_cfg.h │ │ │ ├── ncurses_cfg.hin │ │ │ ├── ncurses_defs │ │ │ ├── term_entry.h │ │ │ ├── termcap.h │ │ │ ├── termcap.h.in │ │ │ ├── tic.h │ │ │ ├── unctrl.h │ │ │ └── unctrl.h.in │ │ ├── install-sh │ │ ├── mk-0th.awk │ │ ├── mk-1st.awk │ │ ├── mk-2nd.awk │ │ ├── mkinstalldirs │ │ ├── ncurses.diff │ │ ├── ncurses.h │ │ ├── ncurses │ │ │ ├── Makefile │ │ │ ├── Makefile.in │ │ │ ├── README │ │ │ ├── SigAction.h │ │ │ ├── base │ │ │ │ ├── MKkeyname.awk │ │ │ │ ├── MKlib_gen.sh │ │ │ │ ├── MKunctrl.awk │ │ │ │ ├── README │ │ │ │ ├── define_key.c │ │ │ │ ├── keybound.c │ │ │ │ ├── keyok.c │ │ │ │ ├── lib_addch.c │ │ │ │ ├── lib_addstr.c │ │ │ │ ├── lib_beep.c │ │ │ │ ├── lib_bkgd.c │ │ │ │ ├── lib_box.c │ │ │ │ ├── lib_chgat.c │ │ │ │ ├── lib_clear.c │ │ │ │ ├── lib_clearok.c │ │ │ │ ├── lib_clrbot.c │ │ │ │ ├── lib_clreol.c │ │ │ │ ├── lib_color.c │ │ │ │ ├── lib_colorset.c │ │ │ │ ├── lib_delch.c │ │ │ │ ├── lib_delwin.c │ │ │ │ ├── lib_dft_fgbg.c │ │ │ │ ├── lib_echo.c │ │ │ │ ├── lib_endwin.c │ │ │ │ ├── lib_erase.c │ │ │ │ ├── lib_flash.c │ │ │ │ ├── lib_freeall.c │ │ │ │ ├── lib_getch.c │ │ │ │ ├── lib_getstr.c │ │ │ │ ├── lib_hline.c │ │ │ │ ├── lib_immedok.c │ │ │ │ ├── lib_inchstr.c │ │ │ │ ├── lib_initscr.c │ │ │ │ ├── lib_insch.c │ │ │ │ ├── lib_insdel.c │ │ │ │ ├── lib_insstr.c │ │ │ │ ├── lib_instr.c │ │ │ │ ├── lib_isendwin.c │ │ │ │ ├── lib_leaveok.c │ │ │ │ ├── lib_mouse.c │ │ │ │ ├── lib_move.c │ │ │ │ ├── lib_mvwin.c │ │ │ │ ├── lib_newterm.c │ │ │ │ ├── lib_newwin.c │ │ │ │ ├── lib_nl.c │ │ │ │ ├── lib_overlay.c │ │ │ │ ├── lib_pad.c │ │ │ │ ├── lib_printw.c │ │ │ │ ├── lib_redrawln.c │ │ │ │ ├── lib_refresh.c │ │ │ │ ├── lib_restart.c │ │ │ │ ├── lib_scanw.c │ │ │ │ ├── lib_screen.c │ │ │ │ ├── lib_scroll.c │ │ │ │ ├── lib_scrollok.c │ │ │ │ ├── lib_scrreg.c │ │ │ │ ├── lib_set_term.c │ │ │ │ ├── lib_slk.c │ │ │ │ ├── lib_slkatr_set.c │ │ │ │ ├── lib_slkatrof.c │ │ │ │ ├── lib_slkatron.c │ │ │ │ ├── lib_slkatrset.c │ │ │ │ ├── lib_slkattr.c │ │ │ │ ├── lib_slkclear.c │ │ │ │ ├── lib_slkcolor.c │ │ │ │ ├── lib_slkinit.c │ │ │ │ ├── lib_slklab.c │ │ │ │ ├── lib_slkrefr.c │ │ │ │ ├── lib_slkset.c │ │ │ │ ├── lib_slktouch.c │ │ │ │ ├── lib_touch.c │ │ │ │ ├── lib_ungetch.c │ │ │ │ ├── lib_vline.c │ │ │ │ ├── lib_wattroff.c │ │ │ │ ├── lib_wattron.c │ │ │ │ ├── lib_winch.c │ │ │ │ ├── lib_window.c │ │ │ │ ├── memmove.c │ │ │ │ ├── nc_panel.c │ │ │ │ ├── resizeterm.c │ │ │ │ ├── safe_sprintf.c │ │ │ │ ├── sigaction.c │ │ │ │ ├── tries.c │ │ │ │ ├── version.c │ │ │ │ ├── vsscanf.c │ │ │ │ └── wresize.c │ │ │ ├── curses.priv.h │ │ │ ├── fallback.ansi.c │ │ │ ├── fifo_defs.h │ │ │ ├── llib-lncurses │ │ │ ├── modules │ │ │ ├── tinfo │ │ │ │ ├── MKcaptab.awk │ │ │ │ ├── MKfallback.sh │ │ │ │ ├── MKnames.awk │ │ │ │ ├── README │ │ │ │ ├── access.c │ │ │ │ ├── add_tries.c │ │ │ │ ├── alloc_entry.c │ │ │ │ ├── alloc_ttype.c │ │ │ │ ├── captoinfo.c │ │ │ │ ├── comp_error.c │ │ │ │ ├── comp_expand.c │ │ │ │ ├── comp_hash.c │ │ │ │ ├── comp_parse.c │ │ │ │ ├── comp_scan.c │ │ │ │ ├── doalloc.c │ │ │ │ ├── free_ttype.c │ │ │ │ ├── getenv_num.c │ │ │ │ ├── home_terminfo.c │ │ │ │ ├── init_keytry.c │ │ │ │ ├── keys.list │ │ │ │ ├── lib_acs.c │ │ │ │ ├── lib_baudrate.c │ │ │ │ ├── lib_cur_term.c │ │ │ │ ├── lib_data.c │ │ │ │ ├── lib_has_cap.c │ │ │ │ ├── lib_kernel.c │ │ │ │ ├── lib_longname.c │ │ │ │ ├── lib_napms.c │ │ │ │ ├── lib_options.c │ │ │ │ ├── lib_print.c │ │ │ │ ├── lib_raw.c │ │ │ │ ├── lib_setup.c │ │ │ │ ├── lib_termcap.c │ │ │ │ ├── lib_termname.c │ │ │ │ ├── lib_tgoto.c │ │ │ │ ├── lib_ti.c │ │ │ │ ├── lib_tparm.c │ │ │ │ ├── lib_tputs.c │ │ │ │ ├── lib_ttyflags.c │ │ │ │ ├── make_keys.c │ │ │ │ ├── name_match.c │ │ │ │ ├── parse_entry.c │ │ │ │ ├── read_entry.c │ │ │ │ ├── read_termcap.c │ │ │ │ ├── setbuf.c │ │ │ │ ├── strings.c │ │ │ │ └── write_entry.c │ │ │ ├── trace │ │ │ │ ├── README │ │ │ │ ├── lib_trace.c │ │ │ │ ├── lib_traceatr.c │ │ │ │ ├── lib_tracebits.c │ │ │ │ ├── lib_tracechr.c │ │ │ │ ├── lib_tracedmp.c │ │ │ │ ├── lib_tracemse.c │ │ │ │ ├── trace_buf.c │ │ │ │ ├── trace_tries.c │ │ │ │ └── trace_xnames.c │ │ │ └── tty │ │ │ │ ├── MKexpanded.sh │ │ │ │ ├── hardscroll.c │ │ │ │ ├── hashmap.c │ │ │ │ ├── lib_mvcur.c │ │ │ │ ├── lib_tstp.c │ │ │ │ ├── lib_twait.c │ │ │ │ ├── lib_vidattr.c │ │ │ │ ├── mvcur.org │ │ │ │ ├── tty_display.h │ │ │ │ ├── tty_input.h │ │ │ │ └── tty_update.c │ │ ├── progs │ │ │ ├── MKtermsort.sh │ │ │ ├── Makefile │ │ │ ├── Makefile.in │ │ │ ├── capconvert │ │ │ ├── clear.c │ │ │ ├── clear.sh │ │ │ ├── dump_entry.c │ │ │ ├── dump_entry.h │ │ │ ├── infocmp.c │ │ │ ├── modules │ │ │ ├── progs.priv.h │ │ │ ├── termsort.c │ │ │ ├── tic.c │ │ │ ├── toe.c │ │ │ ├── tput.c │ │ │ ├── transform.h │ │ │ └── tset.c │ │ └── tar-copy.sh │ └── regex │ │ ├── COPYING │ │ ├── Makefile.am │ │ ├── README.md │ │ ├── configure.sh │ │ ├── regcomp.c │ │ ├── regex.c │ │ ├── regex.h │ │ ├── regex_internal.c │ │ ├── regex_internal.h │ │ └── regexec.c ├── romprg │ ├── .gitignore │ ├── HowTo-NEC-V25.txt │ ├── Makefile │ ├── README │ ├── commands.c │ ├── commands.h │ ├── common │ │ ├── commands.h │ │ ├── protocol.h │ │ └── replies.h │ ├── crc.c │ ├── crc.h │ ├── flash.c │ ├── flash.h │ ├── main.c │ ├── pc-commands.c │ ├── pc-commands.h │ ├── pc-main.c │ ├── pc-serial.c │ ├── protocol.c │ ├── serial.c │ ├── serial.h │ └── version.h ├── rootfs_template │ ├── bin │ │ ├── .keep │ │ ├── net │ │ ├── setup │ │ └── sys │ ├── bootopts │ ├── dev │ │ └── .keep │ ├── etc │ │ ├── .keep │ │ ├── group │ │ ├── hosts │ │ ├── inittab │ │ ├── mount.cfg │ │ ├── net.cfg │ │ ├── passwd │ │ ├── perror │ │ ├── profile │ │ ├── rc.sys │ │ ├── sashrc │ │ └── termcap │ ├── home │ │ └── .keep │ ├── mnt │ │ └── .keep │ ├── root │ │ └── .keep │ └── tmp │ │ └── .keep ├── sash │ ├── .gitignore │ ├── COPYING │ ├── COPYING.sash │ ├── Makefile │ ├── README │ ├── README.elks │ ├── cmd_dd.c │ ├── cmd_ed.c │ ├── cmd_grep.c │ ├── cmd_history.c │ ├── cmd_ls.c │ ├── cmd_tar.c │ ├── cmds.c │ ├── config.h │ ├── sash.c │ ├── sash.h │ └── utils.c ├── screen │ ├── .gitignore │ ├── BUGS │ ├── Makefile │ ├── README │ ├── ansi.c │ ├── ansi.h │ ├── screen.c │ ├── screen.h │ └── screenrc ├── sh_utils │ ├── .gitignore │ ├── COPYING │ ├── COPYING.sash │ ├── Makefile │ ├── README │ ├── basename.c │ ├── clear.c │ ├── date.c │ ├── dirname.c │ ├── echo.c │ ├── false.c │ ├── logname.c │ ├── mesg.c │ ├── printenv.c │ ├── pwd.c │ ├── shutils.h │ ├── stty.c │ ├── test.c │ ├── tr.c │ ├── true.c │ ├── uname.c │ ├── which.c │ ├── whoami.c │ ├── write.c │ ├── xargs.c │ └── yes.c ├── sys_utils │ ├── .gitignore │ ├── Makefile │ ├── beep.c │ ├── chmem.c │ ├── clock.c │ ├── console.c │ ├── decomp.c │ ├── ds3231.c │ ├── ds3231.h │ ├── exitemu.s │ ├── getty.c │ ├── i2c-ll.S │ ├── i2c-ll.h │ ├── init.c │ ├── insmod.c │ ├── kill.c │ ├── knl.8 │ ├── knl.c │ ├── login.c │ ├── makeboot.c │ ├── man.c │ ├── meminfo.c │ ├── min_init.c │ ├── mount.c │ ├── mouse.c │ ├── passwd.c │ ├── ps.c │ ├── rdev.8 │ ├── rdev.c │ ├── sercat.c │ ├── shutdown.c │ ├── sysctl.c │ ├── test_unreal.S │ ├── umount.c │ └── who.c ├── test │ ├── .gitignore │ ├── Makefile │ ├── cgatext │ │ ├── .gitignore │ │ ├── main.c │ │ └── makefile │ ├── echo │ │ ├── .gitignore │ │ ├── Makefile │ │ ├── echoclient.c │ │ └── echoserver.c │ ├── libc │ │ ├── Makefile │ │ ├── error.c │ │ ├── inet.c │ │ ├── main.c │ │ ├── malloc.c │ │ ├── math.c │ │ ├── misc.c │ │ ├── regex.c │ │ ├── stdio.c │ │ ├── string.c │ │ ├── system.c │ │ ├── testlib.c │ │ ├── testlib.h │ │ └── time.c │ └── other │ │ ├── Makefile │ │ ├── test_eth.c │ │ ├── test_exit.c │ │ ├── test_fd.c │ │ ├── test_float.c │ │ ├── test_pty.c │ │ ├── test_select.c │ │ ├── test_sigfail.c │ │ └── test_signal.c ├── tui │ ├── .gitignore │ ├── LICENSE.fm │ ├── LICENSE.ttyclock │ ├── Makefile │ ├── README.ttyclock │ ├── cons.c │ ├── curses.c │ ├── curses.h │ ├── curses2.c │ ├── curses3.c │ ├── dmalloc.c │ ├── fm.c │ ├── fm.h │ ├── invaders.c │ ├── invaders.h │ ├── kcp437.c │ ├── matrix.c │ ├── realpath.c │ ├── realpath2.c │ ├── runes.c │ ├── runes.h │ ├── sl.c │ ├── sl.h │ ├── strlcat.c │ ├── strlcpy.c │ ├── strverscmp.c │ ├── tetris-frame.c │ ├── tetris-shapes.c │ ├── tetris-util.c │ ├── tty-cp437.c │ ├── tty.c │ ├── ttyclock.c │ ├── ttyclock.h │ ├── ttyinfo.c │ ├── ttypong.c │ ├── ttypong.h │ ├── ttytetris.c │ ├── ttytetris.h │ ├── unikey.c │ ├── unikey.h │ └── util.h └── unused │ ├── build_hd_image.sh │ ├── byacc │ ├── .gitignore │ ├── ACKNOWLEDGEMEN │ ├── MANIFEST │ ├── Makefile │ ├── NEW_FEATURES │ ├── NOTES │ ├── NO_WARRANTY │ ├── README │ ├── closure.c │ ├── defs.h │ ├── error.c │ ├── lalr.c │ ├── lr0.c │ ├── main.c │ ├── mkpar.c │ ├── output.c │ ├── reader.c │ ├── skeleton.c │ ├── symtab.c │ ├── verbose.c │ └── warshall.c │ ├── image_stats.sh │ ├── m4 │ ├── .gitignore │ ├── COPYRIGHT │ ├── MANIFEST │ ├── Makefile │ ├── README │ ├── SharFile.Headers │ ├── ack.m4 │ ├── eval.c │ ├── expr.c │ ├── extr.h │ ├── hanoi.m4 │ ├── hash.m4 │ ├── look.c │ ├── m4.1 │ ├── m4.patch │ ├── main.c │ ├── makefile-orig │ ├── mdef.h │ ├── misc.c │ ├── serv.c │ ├── sqroot.m4 │ ├── string.m4 │ └── test.m4 │ ├── mtools │ ├── .gitignore │ ├── Customize │ ├── MANIFEST │ ├── Makefile │ ├── Mcopy.1 │ ├── Mdel.1 │ ├── Mdir.1 │ ├── Mkdfs.1 │ ├── Mmd.1 │ ├── Mrd.1 │ ├── Mread.1 │ ├── Mren.1 │ ├── Mtype.1 │ ├── Mwrite.1 │ ├── README.elks │ ├── Readme │ ├── SharFile.Headers │ ├── bootblk.h │ ├── convdate.c │ ├── devices.c │ ├── devices.h │ ├── fixname.c │ ├── getfat.c │ ├── init.c │ ├── isdir.c │ ├── match.c │ ├── mcopy.c │ ├── mdel.c │ ├── mdir.c │ ├── mkdfs.c │ ├── mkentry.c │ ├── mmd.c │ ├── mrd.c │ ├── mread.c │ ├── mren.c │ ├── msdos.h │ ├── mtype.c │ ├── mwrite.c │ ├── putfat.c │ ├── search.c │ ├── subdir.c │ └── unixname.c │ ├── prems │ ├── Makefile │ ├── README │ ├── b_prem │ │ ├── ELIG.TEST │ │ │ ├── elbit.c │ │ │ └── makefile │ │ ├── ENIG.TEST │ │ │ ├── enbit.c │ │ │ └── makefile │ │ └── H │ │ │ ├── elbit.h.test │ │ │ └── enbit.h.test │ ├── prem │ │ ├── Makefile │ │ ├── alloc.h │ │ ├── arbo.h │ │ ├── b_malpre.c │ │ ├── b_prem.c │ │ ├── bit.h │ │ ├── ela_komun.c │ │ ├── elarbo.h │ │ ├── elbit.c │ │ ├── elbit.h │ │ ├── eli_komun.c │ │ ├── elig.c │ │ ├── ellit.c │ │ ├── ena_komun.c │ │ ├── enarbo.h │ │ ├── enbit.c │ │ ├── enbit.h │ │ ├── eni_komun.c │ │ ├── enig.c │ │ ├── enlit.c │ │ ├── kre_hfoli.c │ │ ├── kre_nod.c │ │ ├── makefile.venix86 │ │ ├── mkre_foli.c │ │ ├── mkre_litf.c │ │ ├── mkre_nod.c │ │ ├── prem.h │ │ ├── sekv_niv.c │ │ ├── serch.c │ │ ├── x_kod.c │ │ └── x_malkod.c │ └── pres │ │ ├── .gitignore │ │ ├── Makefile │ │ ├── alloc.h │ │ ├── ediag.h │ │ ├── flparc.c │ │ ├── pres.c │ │ └── pres.h │ └── xvi │ ├── Makefile │ ├── README │ ├── archive.submit │ └── xvi.c ├── elksemu ├── .gitignore ├── COPYING ├── Kernel_patch ├── Makefile ├── README ├── Security ├── binfmt_elks.c ├── elks.c ├── elks.h ├── elks_pid.c ├── elks_signal.c ├── elks_sys.c ├── minix.c └── mkefile ├── emu86-disk.config ├── emu86-rom-full.config ├── emu86-rom.config ├── emu86.sh ├── emuswan.sh ├── env.sh ├── ibmpc-1440-nc.config ├── ibmpc-1440.config ├── image ├── .gitignore ├── Image.all ├── Make.defs ├── Make.devices ├── Make.image ├── Makefile ├── config.in └── ver.pl ├── include ├── .gitignore └── Makefile ├── libc ├── .gitignore ├── Makefile ├── asm │ ├── Makefile │ ├── divmod.S │ ├── memcmp-s.S │ ├── memcpy-s.S │ ├── memset-s.S │ ├── strcmp-s.S │ ├── strcpy-s.S │ └── strlen-s.S ├── c86.inc ├── c86.mk ├── c86 │ ├── Makefile │ ├── c86lib.asm │ ├── c86lib.s │ ├── divmod.s │ ├── signalcb.s │ ├── stackavail.c │ ├── syscall.asm │ ├── syscall.s │ ├── syscall2.asm │ └── syscall2.s ├── c86env.sh ├── crt0.S ├── ctype │ ├── LICENSE │ ├── Makefile │ ├── ctype.c │ ├── isalnum.c │ ├── isalpha.c │ ├── isascii.c │ ├── isblank.c │ ├── isdigit.c │ ├── islower.c │ ├── isprint.c │ ├── ispunct.c │ ├── issspace.c │ ├── isupper.c │ ├── isxdigit.c │ ├── tolower.c │ └── toupper.c ├── debug │ ├── Makefile │ ├── instrument.c │ ├── prectimer.c │ ├── printreg.S │ ├── rdtsc.S │ ├── readprologue.c │ ├── stacktrace.c │ └── syms.c ├── error │ ├── Makefile │ ├── __assert.c │ ├── error.c │ ├── perror │ └── perror.c ├── gcc │ ├── Makefile │ ├── ashlsi3.s │ ├── divmodsi3.s │ ├── do-global-ctors.S │ ├── do-global-dtors.S │ └── ldivmod.s ├── getent │ ├── Makefile │ ├── __getgrent.c │ ├── __getpwent.c │ ├── config-grp.h │ ├── getgrgid.c │ ├── getgrnam.c │ ├── getpwnam.c │ ├── getpwuid.c │ ├── grent.c │ ├── putpwent.c │ ├── pwent.c │ └── utent.c ├── ia16.inc ├── include │ ├── alloca.h │ ├── arpa │ │ └── inet.h │ ├── asm │ │ └── config.h │ ├── assert.h │ ├── c86 │ │ ├── limits.h │ │ ├── stdarg.h │ │ ├── stddef.h │ │ └── stdint.h │ ├── ctype.h │ ├── debug │ │ ├── instrument.h │ │ └── syms.h │ ├── dirent.h │ ├── errno.h │ ├── fcntl.h │ ├── features.h │ ├── getopt.h │ ├── grp.h │ ├── inttypes.h │ ├── libc-private │ │ └── call-cvt.h │ ├── libgen.h │ ├── limits.h │ ├── linenoise.h │ ├── malloc.h │ ├── math.h │ ├── netdb.h │ ├── netinet │ │ └── in.h │ ├── paths.h │ ├── pwd.h │ ├── regex.h │ ├── setjmp.h │ ├── signal.h │ ├── stdint.h │ ├── stdio.h │ ├── stdlib.h │ ├── string.h │ ├── sys │ │ ├── cdefs.h │ │ ├── dir.h │ │ ├── ioctl.h │ │ ├── linksym.h │ │ ├── mount.h │ │ ├── param.h │ │ ├── rtinit.h │ │ ├── select.h │ │ ├── socket.h │ │ ├── stat.h │ │ ├── sysctl.h │ │ ├── time.h │ │ ├── times.h │ │ ├── types.h │ │ ├── un.h │ │ ├── utsname.h │ │ ├── wait.h │ │ └── weaken.h │ ├── termcap.h │ ├── termios.h │ ├── time.h │ ├── unistd.h │ ├── utime.h │ ├── utmp.h │ └── watcom │ │ ├── _comdef.h │ │ ├── float.h │ │ ├── limits.h │ │ ├── math.h │ │ ├── setjmp.h │ │ ├── stdarg.h │ │ ├── stdbool.h │ │ ├── stddef.h │ │ ├── stdint.h │ │ └── syselks.h ├── malloc │ ├── Makefile │ ├── __alloca_alloc.c │ ├── __freed_list.c │ ├── __mini_malloc.c │ ├── _malloc.h │ ├── alloca.c │ ├── brk.c │ ├── calloc.c │ ├── dmalloc.c │ ├── dprintf.c │ ├── fmalloc.c │ ├── fmemalloc.c │ ├── free.c │ ├── malloc.c │ ├── noise.c │ ├── realloc.c │ ├── sbrk.c │ └── stackcheck.c ├── math │ ├── Makefile │ ├── README │ ├── cdefs-compat.h │ ├── e_acos.c │ ├── e_acosf.c │ ├── e_asin.c │ ├── e_asinf.c │ ├── e_exp.c │ ├── e_expf.c │ ├── e_log.c │ ├── e_log10.c │ ├── e_log10f.c │ ├── e_logf.c │ ├── e_pow.c │ ├── e_powf.c │ ├── e_rem_pio2.c │ ├── e_rem_pio2f.c │ ├── e_sqrt.c │ ├── e_sqrtf.c │ ├── fpmath.h │ ├── k_cos.c │ ├── k_cosf.c │ ├── k_log.h │ ├── k_logf.h │ ├── k_rem_pio2.c │ ├── k_sin.c │ ├── k_sinf.c │ ├── k_tan.c │ ├── k_tanf.c │ ├── math_private.h │ ├── math_private_openbsd.h │ ├── openlibm_complex.h │ ├── openlibm_defs.h │ ├── openlibm_math.h │ ├── s_atan.c │ ├── s_atanf.c │ ├── s_copysign.c │ ├── s_copysignf.c │ ├── s_cos.c │ ├── s_cosf.c │ ├── s_fabs.c │ ├── s_fabsf.c │ ├── s_floor.c │ ├── s_floorf.c │ ├── s_fmaxf.c │ ├── s_fminf.c │ ├── s_modf.c │ ├── s_modff.c │ ├── s_scalbn.c │ ├── s_scalbnf.c │ ├── s_sin.c │ ├── s_sinf.c │ ├── s_tan.c │ ├── s_tanf.c │ └── types-compat.h ├── misc │ ├── Makefile │ ├── abs.c │ ├── aliases.c │ ├── atexit.c │ ├── atof.c │ ├── atoi.c │ ├── atol.c │ ├── basename.c │ ├── bsr.c │ ├── crypt.c │ ├── devname.c │ ├── dirname.c │ ├── dtostr.c │ ├── ecvt.c │ ├── getcwd.c │ ├── getenv.c │ ├── getopt.c │ ├── getpass.c │ ├── itoa.c │ ├── linenoise.c │ ├── linenoise_compl.c │ ├── lltostr.c │ ├── ltoa.c │ ├── ltostr.c │ ├── mktemp.c │ ├── popen.c │ ├── ptostr.c │ ├── putenv.c │ ├── qsort-bsd.c │ ├── qsort-gnu.c │ ├── qsort.c │ ├── rand.c │ ├── strtod.c │ ├── strtol.c │ ├── strtoul.c │ ├── system.c │ ├── tmpnam.c │ ├── uitoa.c │ ├── ulltostr.c │ ├── ultoa.c │ ├── ultostr.c │ └── wildcard.c ├── net │ ├── Makefile │ ├── getsocknam.c │ ├── in_aton.c │ ├── in_connect.c │ ├── in_gethostbyname.c │ ├── in_ntoa.c │ └── in_resolv.c ├── regex │ ├── Makefile │ ├── regex.c │ └── regmagic.h ├── stdio │ ├── Makefile │ ├── __fopen.c │ ├── fclose.c │ ├── fdopen.c │ ├── fflush.c │ ├── fgetc.c │ ├── fgets.c │ ├── fopen.c │ ├── fprintf.c │ ├── fputc.c │ ├── fputs.c │ ├── fread.c │ ├── freopen.c │ ├── fscanf.c │ ├── fseek.c │ ├── ftell.c │ ├── fwrite.c │ ├── getdelim.c │ ├── getline.c │ ├── gets.c │ ├── init.c │ ├── printf.c │ ├── putchar.c │ ├── puts.c │ ├── rewind.c │ ├── scanf.c │ ├── setbuffer.c │ ├── setvbuf.c │ ├── snprintf.c │ ├── sprintf.c │ ├── sscanf.c │ ├── stderr.c │ ├── stdin.c │ ├── stdout.c │ ├── ungetc.c │ ├── vfprintf.c │ ├── vfscanf.c │ ├── vprintf.c │ ├── vscanf.c │ ├── vsnprintf.c │ ├── vsprintf.c │ └── vsscanf.c ├── string │ ├── Makefile │ ├── bzero.c │ ├── fmemset-c.c │ ├── memccpy.c │ ├── memchr.c │ ├── memcmp.c │ ├── memcpy-c.c │ ├── memmove.c │ ├── memset-c.c │ ├── strcasecmp.c │ ├── strcat.c │ ├── strchr.c │ ├── strcmp-c.c │ ├── strcpy-c.c │ ├── strcspn.c │ ├── strdup.c │ ├── strlen-c.c │ ├── strlwr.c │ ├── strncasecmp.c │ ├── strncat.c │ ├── strncmp.c │ ├── strncpy.c │ ├── strpbrk.c │ ├── strrchr.c │ ├── strspn.c │ ├── strstr.c │ ├── strtok.c │ └── strupr.c ├── system │ ├── .gitignore │ ├── Makefile │ ├── abort.c │ ├── argcargv.S │ ├── closedir.c │ ├── dup.c │ ├── dup2.c │ ├── environ.S │ ├── errno.c │ ├── execl.S │ ├── execle.S │ ├── execlp.S │ ├── execlpe.S │ ├── execlx.inc │ ├── execv.c │ ├── execve.c │ ├── execvp.c │ ├── execvpe.c │ ├── getegid.c │ ├── geteuid.c │ ├── getgid.c │ ├── getpgid.c │ ├── getpid.c │ ├── getppid.c │ ├── getuid.c │ ├── killpg.c │ ├── lseek.c │ ├── mkfifo.c │ ├── opendir.c │ ├── out.mk │ ├── program_filename.S │ ├── readdir.c │ ├── rewinddir.c │ ├── seekdir.c │ ├── setjmp.S │ ├── setpgrp.c │ ├── sigaction.c │ ├── signal.c │ ├── signalcb.S │ ├── sleep.c │ ├── stacklow.S │ ├── syscall.awk │ ├── syscall0.inc │ ├── syscall01.S │ ├── syscall23.S │ ├── syscall4.S │ ├── syscall5.S │ ├── telldir.c │ ├── time.c │ ├── times.c │ ├── usleep.c │ ├── wait.c │ ├── wait3.c │ └── waitpid.c ├── termcap │ ├── .gitignore │ ├── Makefile │ ├── entry.c │ ├── find.c │ ├── memout.c │ ├── t.h │ ├── termcap.c │ ├── tgetent.c │ ├── tgetflag.c │ ├── tgetnum.c │ ├── tgetst1.c │ ├── tgetstr.c │ ├── tgoto.c │ ├── tp-main.c │ ├── tparam.c │ ├── tparam1.c │ ├── tputs.c │ ├── xmalloc.c │ └── xrealloc.c ├── termios │ ├── Makefile │ ├── cfgetispeed.c │ ├── cfgetospeed.c │ ├── cfmakeraw.c │ ├── cfsetispeed.c │ ├── cfsetospeed.c │ ├── isatty.c │ ├── tcdrain.c │ ├── tcflow.c │ ├── tcflush.c │ ├── tcgetattr.c │ ├── tcgetpgrp.c │ ├── tcsendbreak.c │ ├── tcsetattr.c │ ├── tcsetpgrp.c │ └── ttyname.c ├── time │ ├── Makefile │ ├── asc_conv.c │ ├── asctime.c │ ├── ctime.c │ ├── gmtime.c │ ├── localtime.c │ ├── mktime.c │ ├── strftime.c │ ├── tm_conv.c │ └── tzset.c ├── watcom.inc ├── watcom.mk ├── watcom.model ├── watcom │ ├── Makefile │ ├── asm │ │ ├── Makefile │ │ ├── _mathfun.inc │ │ ├── chipd16.asm │ │ ├── csnorm.inc │ │ ├── divmod.asm │ │ ├── fchop87.asm │ │ ├── fdc086.asm │ │ ├── fdfs086.asm │ │ ├── fdi4086.asm │ │ ├── fdi8086.asm │ │ ├── fdmth086.asm │ │ ├── fdn086.asm │ │ ├── fmemcmp.asm │ │ ├── fmemcpy.asm │ │ ├── fprem086.asm │ │ ├── fsc086.asm │ │ ├── fsfd086.asm │ │ ├── fsi4086.asm │ │ ├── fsi8086.asm │ │ ├── fsmth086.asm │ │ ├── fsn086.asm │ │ ├── fstat386.asm │ │ ├── fstatus.inc │ │ ├── i4d.asm │ │ ├── i4fd086.asm │ │ ├── i4fs086.asm │ │ ├── i4m.asm │ │ ├── i8d086.asm │ │ ├── i8fd086.asm │ │ ├── i8fs086.asm │ │ ├── i8ls086.asm │ │ ├── i8m086.asm │ │ ├── math87.inc │ │ ├── mdef.inc │ │ ├── modf086.asm │ │ ├── pia.asm │ │ ├── ptc.asm │ │ ├── pts.asm │ │ ├── segments.asm │ │ ├── signalcb.asm │ │ ├── stjmp086.asm │ │ ├── struct.inc │ │ └── u8rs086.asm │ ├── license.txt │ ├── math │ │ ├── Makefile │ │ ├── _mathfun.h │ │ ├── acos.c │ │ ├── acosh.c │ │ ├── asin.c │ │ ├── atan.c │ │ ├── atan2.c │ │ ├── ceil.c │ │ ├── copysign.c │ │ ├── cplx.h │ │ ├── evalpoly.c │ │ ├── exp.c │ │ ├── fabs.c │ │ ├── fdclass.c │ │ ├── fdsign.c │ │ ├── finite.c │ │ ├── floor.c │ │ ├── flsign.c │ │ ├── fmax.c │ │ ├── fmin.c │ │ ├── fmod.c │ │ ├── fpexcept.c │ │ ├── frexp.c │ │ ├── fssign.c │ │ ├── hugeval.c │ │ ├── hypot.c │ │ ├── ifprag.h │ │ ├── inf_nan.c │ │ ├── ldclass.c │ │ ├── ldexp.c │ │ ├── log.c │ │ ├── log10.c │ │ ├── logmerr.c │ │ ├── math2err.c │ │ ├── mathcode.h │ │ ├── mathlib.h │ │ ├── modf.c │ │ ├── nan.c │ │ ├── pdiv.h │ │ ├── pi.h │ │ ├── pow.c │ │ ├── round.c │ │ ├── sgn.c │ │ ├── sincos.c │ │ ├── sqrt.c │ │ ├── trunc.c │ │ ├── variety.h │ │ ├── watcom.h │ │ └── xfloat.h │ └── syscall │ │ ├── Makefile │ │ ├── accept.c │ │ ├── access.c │ │ ├── alarm.c │ │ ├── bind.c │ │ ├── brk.c │ │ ├── chdir.c │ │ ├── chmod.c │ │ ├── chown.c │ │ ├── close.c │ │ ├── connect.c │ │ ├── crt0.c │ │ ├── dup.c │ │ ├── dup2.c │ │ ├── execl.c │ │ ├── execle.c │ │ ├── execlp.c │ │ ├── execlpe.c │ │ ├── execve.c │ │ ├── fcntl.c │ │ ├── fmemalloc.c │ │ ├── fmemfree.c │ │ ├── fork.c │ │ ├── fstat.c │ │ ├── getgid.c │ │ ├── getpid.c │ │ ├── gettimeofday.c │ │ ├── getuid.c │ │ ├── initrtns.c │ │ ├── ioctl.c │ │ ├── kill.c │ │ ├── link.c │ │ ├── listen.c │ │ ├── lseek.c │ │ ├── lstat.c │ │ ├── mkdir.c │ │ ├── mknod.c │ │ ├── mount.c │ │ ├── open.c │ │ ├── read.c │ │ ├── readdir.c │ │ ├── readlink.c │ │ ├── remove.c │ │ ├── rename.c │ │ ├── rmdir.c │ │ ├── sbrk.c │ │ ├── select.c │ │ ├── setgid.c │ │ ├── setsid.c │ │ ├── setsockopt.c │ │ ├── setuid.c │ │ ├── signal.c │ │ ├── socket.c │ │ ├── stackcheck.c │ │ ├── stat.c │ │ ├── symlink.c │ │ ├── sync.c │ │ ├── sysctl.c │ │ ├── umask.c │ │ ├── umount.c │ │ ├── unlink.c │ │ ├── utime.c │ │ ├── vfork.c │ │ ├── wait4.c │ │ └── write.c └── wcenv.sh ├── necv25.config ├── pc98-1200.config ├── pc98-1232-nc.config ├── pc98-1232.config ├── pc98-1440.config ├── qemu.sh ├── slattach.sh ├── solo86-rom-full.config ├── swan.config └── tools ├── Makefile ├── build.sh └── prune.sh /.dockerignore: -------------------------------------------------------------------------------- 1 | .git 2 | .github 3 | Documentation 4 | Screenshots 5 | 6 | -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghaerr/elks/HEAD/.gitignore -------------------------------------------------------------------------------- /8018x.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghaerr/elks/HEAD/8018x.config -------------------------------------------------------------------------------- /BUILD.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghaerr/elks/HEAD/BUILD.md -------------------------------------------------------------------------------- /Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghaerr/elks/HEAD/Dockerfile -------------------------------------------------------------------------------- /Documentation/Readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghaerr/elks/HEAD/Documentation/Readme.md -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghaerr/elks/HEAD/LICENSE -------------------------------------------------------------------------------- /Make.defs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghaerr/elks/HEAD/Make.defs -------------------------------------------------------------------------------- /Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghaerr/elks/HEAD/Makefile -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghaerr/elks/HEAD/README.md -------------------------------------------------------------------------------- /blink16.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghaerr/elks/HEAD/blink16.config -------------------------------------------------------------------------------- /bootblocks/.gitignore: -------------------------------------------------------------------------------- 1 | *.bin 2 | minix_first.s 3 | mbr_autogen.c 4 | -------------------------------------------------------------------------------- /bootblocks/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghaerr/elks/HEAD/bootblocks/Makefile -------------------------------------------------------------------------------- /bootblocks/boot_err.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghaerr/elks/HEAD/bootblocks/boot_err.h -------------------------------------------------------------------------------- /bootblocks/boot_minix.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghaerr/elks/HEAD/bootblocks/boot_minix.c -------------------------------------------------------------------------------- /bootblocks/boot_probe.S: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghaerr/elks/HEAD/bootblocks/boot_probe.S -------------------------------------------------------------------------------- /bootblocks/boot_sect.S: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghaerr/elks/HEAD/bootblocks/boot_sect.S -------------------------------------------------------------------------------- /bootblocks/mbr.S: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghaerr/elks/HEAD/bootblocks/mbr.S -------------------------------------------------------------------------------- /bootblocks/minix.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghaerr/elks/HEAD/bootblocks/minix.h -------------------------------------------------------------------------------- /coding-style.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghaerr/elks/HEAD/coding-style.txt -------------------------------------------------------------------------------- /config.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghaerr/elks/HEAD/config.in -------------------------------------------------------------------------------- /config/Configure: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghaerr/elks/HEAD/config/Configure -------------------------------------------------------------------------------- /config/Configure.help: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghaerr/elks/HEAD/config/Configure.help -------------------------------------------------------------------------------- /config/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghaerr/elks/HEAD/config/Makefile -------------------------------------------------------------------------------- /config/Menuconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghaerr/elks/HEAD/config/Menuconfig -------------------------------------------------------------------------------- /config/lxdialog/.gitignore: -------------------------------------------------------------------------------- 1 | # Generated files 2 | 3 | local-curses.h 4 | lxdialog 5 | -------------------------------------------------------------------------------- /config/lxdialog/util.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghaerr/elks/HEAD/config/lxdialog/util.c -------------------------------------------------------------------------------- /config/lxdialog/yesno.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghaerr/elks/HEAD/config/lxdialog/yesno.c -------------------------------------------------------------------------------- /copyc86.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghaerr/elks/HEAD/copyc86.sh -------------------------------------------------------------------------------- /dosbox.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghaerr/elks/HEAD/dosbox.sh -------------------------------------------------------------------------------- /elks/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghaerr/elks/HEAD/elks/.gitignore -------------------------------------------------------------------------------- /elks/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghaerr/elks/HEAD/elks/LICENSE -------------------------------------------------------------------------------- /elks/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghaerr/elks/HEAD/elks/Makefile -------------------------------------------------------------------------------- /elks/Makefile-rules: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghaerr/elks/HEAD/elks/Makefile-rules -------------------------------------------------------------------------------- /elks/arch/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghaerr/elks/HEAD/elks/arch/Makefile -------------------------------------------------------------------------------- /elks/arch/i86/.gitignore: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /elks/arch/i86/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghaerr/elks/HEAD/elks/arch/i86/Makefile -------------------------------------------------------------------------------- /elks/arch/i86/boot/.gitignore: -------------------------------------------------------------------------------- 1 | *.map 2 | system.sym 3 | -------------------------------------------------------------------------------- /elks/arch/i86/defconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghaerr/elks/HEAD/elks/arch/i86/defconfig -------------------------------------------------------------------------------- /elks/arch/i86/drivers/char/KeyMaps/.gitignore: -------------------------------------------------------------------------------- 1 | config.in 2 | -------------------------------------------------------------------------------- /elks/arch/i86/drivers/net/.gitignore: -------------------------------------------------------------------------------- 1 | *.o 2 | *.bin 3 | *.map 4 | -------------------------------------------------------------------------------- /elks/arch/i86/mm/user.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghaerr/elks/HEAD/elks/arch/i86/mm/user.c -------------------------------------------------------------------------------- /elks/arch/i86/mm/xms.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghaerr/elks/HEAD/elks/arch/i86/mm/xms.c -------------------------------------------------------------------------------- /elks/config.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghaerr/elks/HEAD/elks/config.in -------------------------------------------------------------------------------- /elks/elks-medium.ld: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghaerr/elks/HEAD/elks/elks-medium.ld -------------------------------------------------------------------------------- /elks/elks-raw.ld: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghaerr/elks/HEAD/elks/elks-raw.ld -------------------------------------------------------------------------------- /elks/elks-small.ld: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghaerr/elks/HEAD/elks/elks-small.ld -------------------------------------------------------------------------------- /elks/elks-tiny.ld: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghaerr/elks/HEAD/elks/elks-tiny.ld -------------------------------------------------------------------------------- /elks/fs/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghaerr/elks/HEAD/elks/fs/Makefile -------------------------------------------------------------------------------- /elks/fs/block_dev.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghaerr/elks/HEAD/elks/fs/block_dev.c -------------------------------------------------------------------------------- /elks/fs/buffer.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghaerr/elks/HEAD/elks/fs/buffer.c -------------------------------------------------------------------------------- /elks/fs/config.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghaerr/elks/HEAD/elks/fs/config.in -------------------------------------------------------------------------------- /elks/fs/devices.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghaerr/elks/HEAD/elks/fs/devices.c -------------------------------------------------------------------------------- /elks/fs/exec.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghaerr/elks/HEAD/elks/fs/exec.c -------------------------------------------------------------------------------- /elks/fs/exodecr.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghaerr/elks/HEAD/elks/fs/exodecr.c -------------------------------------------------------------------------------- /elks/fs/fcntl.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghaerr/elks/HEAD/elks/fs/fcntl.c -------------------------------------------------------------------------------- /elks/fs/file_table.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghaerr/elks/HEAD/elks/fs/file_table.c -------------------------------------------------------------------------------- /elks/fs/inode.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghaerr/elks/HEAD/elks/fs/inode.c -------------------------------------------------------------------------------- /elks/fs/ioctl.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghaerr/elks/HEAD/elks/fs/ioctl.c -------------------------------------------------------------------------------- /elks/fs/minix/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghaerr/elks/HEAD/elks/fs/minix/Makefile -------------------------------------------------------------------------------- /elks/fs/minix/bitmap.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghaerr/elks/HEAD/elks/fs/minix/bitmap.c -------------------------------------------------------------------------------- /elks/fs/minix/dir.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghaerr/elks/HEAD/elks/fs/minix/dir.c -------------------------------------------------------------------------------- /elks/fs/minix/file.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghaerr/elks/HEAD/elks/fs/minix/file.c -------------------------------------------------------------------------------- /elks/fs/minix/inode.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghaerr/elks/HEAD/elks/fs/minix/inode.c -------------------------------------------------------------------------------- /elks/fs/minix/namei.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghaerr/elks/HEAD/elks/fs/minix/namei.c -------------------------------------------------------------------------------- /elks/fs/minix/symlink.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghaerr/elks/HEAD/elks/fs/minix/symlink.c -------------------------------------------------------------------------------- /elks/fs/msdos/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghaerr/elks/HEAD/elks/fs/msdos/Makefile -------------------------------------------------------------------------------- /elks/fs/msdos/dir.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghaerr/elks/HEAD/elks/fs/msdos/dir.c -------------------------------------------------------------------------------- /elks/fs/msdos/fat.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghaerr/elks/HEAD/elks/fs/msdos/fat.c -------------------------------------------------------------------------------- /elks/fs/msdos/file.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghaerr/elks/HEAD/elks/fs/msdos/file.c -------------------------------------------------------------------------------- /elks/fs/msdos/inode.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghaerr/elks/HEAD/elks/fs/msdos/inode.c -------------------------------------------------------------------------------- /elks/fs/msdos/misc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghaerr/elks/HEAD/elks/fs/msdos/misc.c -------------------------------------------------------------------------------- /elks/fs/msdos/namei.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghaerr/elks/HEAD/elks/fs/msdos/namei.c -------------------------------------------------------------------------------- /elks/fs/namei.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghaerr/elks/HEAD/elks/fs/namei.c -------------------------------------------------------------------------------- /elks/fs/open.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghaerr/elks/HEAD/elks/fs/open.c -------------------------------------------------------------------------------- /elks/fs/pipe.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghaerr/elks/HEAD/elks/fs/pipe.c -------------------------------------------------------------------------------- /elks/fs/read_write.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghaerr/elks/HEAD/elks/fs/read_write.c -------------------------------------------------------------------------------- /elks/fs/readdir.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghaerr/elks/HEAD/elks/fs/readdir.c -------------------------------------------------------------------------------- /elks/fs/romfs/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghaerr/elks/HEAD/elks/fs/romfs/Makefile -------------------------------------------------------------------------------- /elks/fs/romfs/romfs.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghaerr/elks/HEAD/elks/fs/romfs/romfs.c -------------------------------------------------------------------------------- /elks/fs/select.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghaerr/elks/HEAD/elks/fs/select.c -------------------------------------------------------------------------------- /elks/fs/stat.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghaerr/elks/HEAD/elks/fs/stat.c -------------------------------------------------------------------------------- /elks/fs/super.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghaerr/elks/HEAD/elks/fs/super.c -------------------------------------------------------------------------------- /elks/include/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghaerr/elks/HEAD/elks/include/Makefile -------------------------------------------------------------------------------- /elks/include/arch/dma.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghaerr/elks/HEAD/elks/include/arch/dma.h -------------------------------------------------------------------------------- /elks/include/arch/io.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghaerr/elks/HEAD/elks/include/arch/io.h -------------------------------------------------------------------------------- /elks/include/arch/irq.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghaerr/elks/HEAD/elks/include/arch/irq.h -------------------------------------------------------------------------------- /elks/init/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghaerr/elks/HEAD/elks/init/Makefile -------------------------------------------------------------------------------- /elks/init/main.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghaerr/elks/HEAD/elks/init/main.c -------------------------------------------------------------------------------- /elks/kernel/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghaerr/elks/HEAD/elks/kernel/Makefile -------------------------------------------------------------------------------- /elks/kernel/exit.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghaerr/elks/HEAD/elks/kernel/exit.c -------------------------------------------------------------------------------- /elks/kernel/fork.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghaerr/elks/HEAD/elks/kernel/fork.c -------------------------------------------------------------------------------- /elks/kernel/printk.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghaerr/elks/HEAD/elks/kernel/printk.c -------------------------------------------------------------------------------- /elks/kernel/sched.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghaerr/elks/HEAD/elks/kernel/sched.c -------------------------------------------------------------------------------- /elks/kernel/signal.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghaerr/elks/HEAD/elks/kernel/signal.c -------------------------------------------------------------------------------- /elks/kernel/sleepwake.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghaerr/elks/HEAD/elks/kernel/sleepwake.c -------------------------------------------------------------------------------- /elks/kernel/sys.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghaerr/elks/HEAD/elks/kernel/sys.c -------------------------------------------------------------------------------- /elks/kernel/sys2.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghaerr/elks/HEAD/elks/kernel/sys2.c -------------------------------------------------------------------------------- /elks/kernel/sysctl.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghaerr/elks/HEAD/elks/kernel/sysctl.c -------------------------------------------------------------------------------- /elks/kernel/time.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghaerr/elks/HEAD/elks/kernel/time.c -------------------------------------------------------------------------------- /elks/kernel/version.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghaerr/elks/HEAD/elks/kernel/version.c -------------------------------------------------------------------------------- /elks/lib/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghaerr/elks/HEAD/elks/lib/Makefile -------------------------------------------------------------------------------- /elks/lib/chqueue.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghaerr/elks/HEAD/elks/lib/chqueue.c -------------------------------------------------------------------------------- /elks/lib/heap.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghaerr/elks/HEAD/elks/lib/heap.c -------------------------------------------------------------------------------- /elks/lib/list.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghaerr/elks/HEAD/elks/lib/list.c -------------------------------------------------------------------------------- /elks/lib/string.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghaerr/elks/HEAD/elks/lib/string.c -------------------------------------------------------------------------------- /elks/net/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghaerr/elks/HEAD/elks/net/Makefile -------------------------------------------------------------------------------- /elks/net/config.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghaerr/elks/HEAD/elks/net/config.in -------------------------------------------------------------------------------- /elks/net/ipv4/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghaerr/elks/HEAD/elks/net/ipv4/Makefile -------------------------------------------------------------------------------- /elks/net/ipv4/af_inet.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghaerr/elks/HEAD/elks/net/ipv4/af_inet.c -------------------------------------------------------------------------------- /elks/net/ipv4/af_inet.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghaerr/elks/HEAD/elks/net/ipv4/af_inet.h -------------------------------------------------------------------------------- /elks/net/nano/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghaerr/elks/HEAD/elks/net/nano/Makefile -------------------------------------------------------------------------------- /elks/net/nano/af_nano.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghaerr/elks/HEAD/elks/net/nano/af_nano.c -------------------------------------------------------------------------------- /elks/net/nano/af_nano.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghaerr/elks/HEAD/elks/net/nano/af_nano.h -------------------------------------------------------------------------------- /elks/net/protocols.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghaerr/elks/HEAD/elks/net/protocols.c -------------------------------------------------------------------------------- /elks/net/socket.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghaerr/elks/HEAD/elks/net/socket.c -------------------------------------------------------------------------------- /elks/net/unix/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghaerr/elks/HEAD/elks/net/unix/Makefile -------------------------------------------------------------------------------- /elks/net/unix/af_unix.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghaerr/elks/HEAD/elks/net/unix/af_unix.c -------------------------------------------------------------------------------- /elks/net/unix/af_unix.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghaerr/elks/HEAD/elks/net/unix/af_unix.h -------------------------------------------------------------------------------- /elks/r-elks.spec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghaerr/elks/HEAD/elks/r-elks.spec -------------------------------------------------------------------------------- /elks/scripts/.gitignore: -------------------------------------------------------------------------------- 1 | .tmpconfig.h 2 | -------------------------------------------------------------------------------- /elks/scripts/elksspec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghaerr/elks/HEAD/elks/scripts/elksspec -------------------------------------------------------------------------------- /elks/scripts/findproc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghaerr/elks/HEAD/elks/scripts/findproc -------------------------------------------------------------------------------- /elks/scripts/indent.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghaerr/elks/HEAD/elks/scripts/indent.sh -------------------------------------------------------------------------------- /elks/scripts/index: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghaerr/elks/HEAD/elks/scripts/index -------------------------------------------------------------------------------- /elks/scripts/mkMake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghaerr/elks/HEAD/elks/scripts/mkMake -------------------------------------------------------------------------------- /elks/scripts/reindent: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghaerr/elks/HEAD/elks/scripts/reindent -------------------------------------------------------------------------------- /elks/scripts/renvar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghaerr/elks/HEAD/elks/scripts/renvar -------------------------------------------------------------------------------- /elks/scripts/setdir: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghaerr/elks/HEAD/elks/scripts/setdir -------------------------------------------------------------------------------- /elks/scripts/vars: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghaerr/elks/HEAD/elks/scripts/vars -------------------------------------------------------------------------------- /elks/tools/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghaerr/elks/HEAD/elks/tools/.gitignore -------------------------------------------------------------------------------- /elks/tools/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghaerr/elks/HEAD/elks/tools/Makefile -------------------------------------------------------------------------------- /elks/tools/bin/.directory: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /elks/tools/elkscmds/debug: -------------------------------------------------------------------------------- 1 | ../../../libc/include/debug -------------------------------------------------------------------------------- /elks/tools/fixomf/mem.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghaerr/elks/HEAD/elks/tools/fixomf/mem.c -------------------------------------------------------------------------------- /elks/tools/fixomf/wio.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghaerr/elks/HEAD/elks/tools/fixomf/wio.h -------------------------------------------------------------------------------- /elks/tools/mfs/AUTHORS: -------------------------------------------------------------------------------- 1 | Authors of mfs. 2 | 3 | Alejandro Liu Ly 4 | Greg Haerr 5 | -------------------------------------------------------------------------------- /elks/tools/mfs/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghaerr/elks/HEAD/elks/tools/mfs/LICENSE -------------------------------------------------------------------------------- /elks/tools/mfs/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghaerr/elks/HEAD/elks/tools/mfs/Makefile -------------------------------------------------------------------------------- /elks/tools/mfs/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghaerr/elks/HEAD/elks/tools/mfs/README -------------------------------------------------------------------------------- /elks/tools/mfs/TODO: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghaerr/elks/HEAD/elks/tools/mfs/TODO -------------------------------------------------------------------------------- /elks/tools/mfs/bitops.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghaerr/elks/HEAD/elks/tools/mfs/bitops.h -------------------------------------------------------------------------------- /elks/tools/mfs/dir.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghaerr/elks/HEAD/elks/tools/mfs/dir.c -------------------------------------------------------------------------------- /elks/tools/mfs/genfs.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghaerr/elks/HEAD/elks/tools/mfs/genfs.c -------------------------------------------------------------------------------- /elks/tools/mfs/iname.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghaerr/elks/HEAD/elks/tools/mfs/iname.c -------------------------------------------------------------------------------- /elks/tools/mfs/inode.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghaerr/elks/HEAD/elks/tools/mfs/inode.c -------------------------------------------------------------------------------- /elks/tools/mfs/main.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghaerr/elks/HEAD/elks/tools/mfs/main.c -------------------------------------------------------------------------------- /elks/tools/mfs/mkfs.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghaerr/elks/HEAD/elks/tools/mfs/mkfs.c -------------------------------------------------------------------------------- /elks/tools/mfs/protos.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghaerr/elks/HEAD/elks/tools/mfs/protos.h -------------------------------------------------------------------------------- /elks/tools/mfs/reader.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghaerr/elks/HEAD/elks/tools/mfs/reader.c -------------------------------------------------------------------------------- /elks/tools/mfs/super.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghaerr/elks/HEAD/elks/tools/mfs/super.c -------------------------------------------------------------------------------- /elks/tools/mfs/utils.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghaerr/elks/HEAD/elks/tools/mfs/utils.c -------------------------------------------------------------------------------- /elks/tools/mfs/writer.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghaerr/elks/HEAD/elks/tools/mfs/writer.c -------------------------------------------------------------------------------- /elks/tools/mtools/mtools-4.0.23/configure-stamp: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /elks/tools/mtools/mtools-4.0.23/debian/compat: -------------------------------------------------------------------------------- 1 | 5 2 | -------------------------------------------------------------------------------- /elks/tools/mtools/mtools-4.0.23/debian/floppyd.files: -------------------------------------------------------------------------------- 1 | usr/bin/floppyd* 2 | -------------------------------------------------------------------------------- /elks/tools/mtools/mtools-4.0.23/debian/mtools.files: -------------------------------------------------------------------------------- 1 | usr/bin 2 | -------------------------------------------------------------------------------- /elks/tools/mtools/mtools-4.0.23/sysconfdir.texi: -------------------------------------------------------------------------------- 1 | @set SYSCONFDIR /etc/ 2 | -------------------------------------------------------------------------------- /elks/tools/objtools/ecc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghaerr/elks/HEAD/elks/tools/objtools/ecc -------------------------------------------------------------------------------- /elks/tools/setboot/.gitignore: -------------------------------------------------------------------------------- 1 | setboot 2 | -------------------------------------------------------------------------------- /elkscmd/Applications: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghaerr/elks/HEAD/elkscmd/Applications -------------------------------------------------------------------------------- /elkscmd/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghaerr/elks/HEAD/elkscmd/LICENSE -------------------------------------------------------------------------------- /elkscmd/Make.install: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghaerr/elks/HEAD/elkscmd/Make.install -------------------------------------------------------------------------------- /elkscmd/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghaerr/elks/HEAD/elkscmd/Makefile -------------------------------------------------------------------------------- /elkscmd/Makefile-rules: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghaerr/elks/HEAD/elkscmd/Makefile-rules -------------------------------------------------------------------------------- /elkscmd/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghaerr/elks/HEAD/elkscmd/README -------------------------------------------------------------------------------- /elkscmd/WARRANTY: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghaerr/elks/HEAD/elkscmd/WARRANTY -------------------------------------------------------------------------------- /elkscmd/advent/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghaerr/elks/HEAD/elkscmd/advent/Makefile -------------------------------------------------------------------------------- /elkscmd/advent/advent.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghaerr/elks/HEAD/elkscmd/advent/advent.c -------------------------------------------------------------------------------- /elkscmd/advent/advent.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghaerr/elks/HEAD/elkscmd/advent/advent.h -------------------------------------------------------------------------------- /elkscmd/advent/advgen.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghaerr/elks/HEAD/elkscmd/advent/advgen.c -------------------------------------------------------------------------------- /elkscmd/advent/global.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghaerr/elks/HEAD/elkscmd/advent/global.c -------------------------------------------------------------------------------- /elkscmd/advent/itverb.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghaerr/elks/HEAD/elkscmd/advent/itverb.c -------------------------------------------------------------------------------- /elkscmd/advent/lib.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghaerr/elks/HEAD/elkscmd/advent/lib.c -------------------------------------------------------------------------------- /elkscmd/advent/turn.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghaerr/elks/HEAD/elkscmd/advent/turn.c -------------------------------------------------------------------------------- /elkscmd/advent/verb.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghaerr/elks/HEAD/elkscmd/advent/verb.c -------------------------------------------------------------------------------- /elkscmd/ash/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghaerr/elks/HEAD/elkscmd/ash/.gitignore -------------------------------------------------------------------------------- /elkscmd/ash/COPYING: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghaerr/elks/HEAD/elkscmd/ash/COPYING -------------------------------------------------------------------------------- /elkscmd/ash/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghaerr/elks/HEAD/elkscmd/ash/Makefile -------------------------------------------------------------------------------- /elkscmd/ash/README.elks: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghaerr/elks/HEAD/elkscmd/ash/README.elks -------------------------------------------------------------------------------- /elkscmd/ash/TOUR: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghaerr/elks/HEAD/elkscmd/ash/TOUR -------------------------------------------------------------------------------- /elkscmd/ash/cd.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghaerr/elks/HEAD/elkscmd/ash/cd.c -------------------------------------------------------------------------------- /elkscmd/ash/debug.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghaerr/elks/HEAD/elkscmd/ash/debug.h -------------------------------------------------------------------------------- /elkscmd/ash/dirent.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghaerr/elks/HEAD/elkscmd/ash/dirent.c -------------------------------------------------------------------------------- /elkscmd/ash/dmalloc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghaerr/elks/HEAD/elkscmd/ash/dmalloc.c -------------------------------------------------------------------------------- /elkscmd/ash/error.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghaerr/elks/HEAD/elkscmd/ash/error.c -------------------------------------------------------------------------------- /elkscmd/ash/error.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghaerr/elks/HEAD/elkscmd/ash/error.h -------------------------------------------------------------------------------- /elkscmd/ash/eval.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghaerr/elks/HEAD/elkscmd/ash/eval.c -------------------------------------------------------------------------------- /elkscmd/ash/eval.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghaerr/elks/HEAD/elkscmd/ash/eval.h -------------------------------------------------------------------------------- /elkscmd/ash/exec.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghaerr/elks/HEAD/elkscmd/ash/exec.c -------------------------------------------------------------------------------- /elkscmd/ash/exec.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghaerr/elks/HEAD/elkscmd/ash/exec.h -------------------------------------------------------------------------------- /elkscmd/ash/expand.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghaerr/elks/HEAD/elkscmd/ash/expand.c -------------------------------------------------------------------------------- /elkscmd/ash/expand.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghaerr/elks/HEAD/elkscmd/ash/expand.h -------------------------------------------------------------------------------- /elkscmd/ash/funcs/cmv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghaerr/elks/HEAD/elkscmd/ash/funcs/cmv -------------------------------------------------------------------------------- /elkscmd/ash/funcs/dirs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghaerr/elks/HEAD/elkscmd/ash/funcs/dirs -------------------------------------------------------------------------------- /elkscmd/ash/funcs/kill: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghaerr/elks/HEAD/elkscmd/ash/funcs/kill -------------------------------------------------------------------------------- /elkscmd/ash/funcs/login: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghaerr/elks/HEAD/elkscmd/ash/funcs/login -------------------------------------------------------------------------------- /elkscmd/ash/funcs/popd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghaerr/elks/HEAD/elkscmd/ash/funcs/popd -------------------------------------------------------------------------------- /elkscmd/ash/funcs/pushd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghaerr/elks/HEAD/elkscmd/ash/funcs/pushd -------------------------------------------------------------------------------- /elkscmd/ash/init.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghaerr/elks/HEAD/elkscmd/ash/init.h -------------------------------------------------------------------------------- /elkscmd/ash/input.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghaerr/elks/HEAD/elkscmd/ash/input.c -------------------------------------------------------------------------------- /elkscmd/ash/input.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghaerr/elks/HEAD/elkscmd/ash/input.h -------------------------------------------------------------------------------- /elkscmd/ash/jobs.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghaerr/elks/HEAD/elkscmd/ash/jobs.c -------------------------------------------------------------------------------- /elkscmd/ash/jobs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghaerr/elks/HEAD/elkscmd/ash/jobs.h -------------------------------------------------------------------------------- /elkscmd/ash/machdep.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghaerr/elks/HEAD/elkscmd/ash/machdep.h -------------------------------------------------------------------------------- /elkscmd/ash/mail.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghaerr/elks/HEAD/elkscmd/ash/mail.c -------------------------------------------------------------------------------- /elkscmd/ash/mail.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghaerr/elks/HEAD/elkscmd/ash/mail.h -------------------------------------------------------------------------------- /elkscmd/ash/main.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghaerr/elks/HEAD/elkscmd/ash/main.c -------------------------------------------------------------------------------- /elkscmd/ash/main.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghaerr/elks/HEAD/elkscmd/ash/main.h -------------------------------------------------------------------------------- /elkscmd/ash/memalloc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghaerr/elks/HEAD/elkscmd/ash/memalloc.c -------------------------------------------------------------------------------- /elkscmd/ash/memalloc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghaerr/elks/HEAD/elkscmd/ash/memalloc.h -------------------------------------------------------------------------------- /elkscmd/ash/miscbltin.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghaerr/elks/HEAD/elkscmd/ash/miscbltin.c -------------------------------------------------------------------------------- /elkscmd/ash/mkbuiltins: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghaerr/elks/HEAD/elkscmd/ash/mkbuiltins -------------------------------------------------------------------------------- /elkscmd/ash/mkinit.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghaerr/elks/HEAD/elkscmd/ash/mkinit.c -------------------------------------------------------------------------------- /elkscmd/ash/mknodes.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghaerr/elks/HEAD/elkscmd/ash/mknodes.c -------------------------------------------------------------------------------- /elkscmd/ash/mksyntax.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghaerr/elks/HEAD/elkscmd/ash/mksyntax.c -------------------------------------------------------------------------------- /elkscmd/ash/mktokens: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghaerr/elks/HEAD/elkscmd/ash/mktokens -------------------------------------------------------------------------------- /elkscmd/ash/mystring.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghaerr/elks/HEAD/elkscmd/ash/mystring.c -------------------------------------------------------------------------------- /elkscmd/ash/mystring.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghaerr/elks/HEAD/elkscmd/ash/mystring.h -------------------------------------------------------------------------------- /elkscmd/ash/nodes.c.pat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghaerr/elks/HEAD/elkscmd/ash/nodes.c.pat -------------------------------------------------------------------------------- /elkscmd/ash/nodetypes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghaerr/elks/HEAD/elkscmd/ash/nodetypes -------------------------------------------------------------------------------- /elkscmd/ash/options.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghaerr/elks/HEAD/elkscmd/ash/options.c -------------------------------------------------------------------------------- /elkscmd/ash/options.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghaerr/elks/HEAD/elkscmd/ash/options.h -------------------------------------------------------------------------------- /elkscmd/ash/output.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghaerr/elks/HEAD/elkscmd/ash/output.c -------------------------------------------------------------------------------- /elkscmd/ash/output.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghaerr/elks/HEAD/elkscmd/ash/output.h -------------------------------------------------------------------------------- /elkscmd/ash/parser.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghaerr/elks/HEAD/elkscmd/ash/parser.c -------------------------------------------------------------------------------- /elkscmd/ash/parser.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghaerr/elks/HEAD/elkscmd/ash/parser.h -------------------------------------------------------------------------------- /elkscmd/ash/redir.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghaerr/elks/HEAD/elkscmd/ash/redir.c -------------------------------------------------------------------------------- /elkscmd/ash/redir.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghaerr/elks/HEAD/elkscmd/ash/redir.h -------------------------------------------------------------------------------- /elkscmd/ash/shell.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghaerr/elks/HEAD/elkscmd/ash/shell.h -------------------------------------------------------------------------------- /elkscmd/ash/show.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghaerr/elks/HEAD/elkscmd/ash/show.c -------------------------------------------------------------------------------- /elkscmd/ash/signames.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghaerr/elks/HEAD/elkscmd/ash/signames.c -------------------------------------------------------------------------------- /elkscmd/ash/signames.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghaerr/elks/HEAD/elkscmd/ash/signames.h -------------------------------------------------------------------------------- /elkscmd/ash/trap.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghaerr/elks/HEAD/elkscmd/ash/trap.c -------------------------------------------------------------------------------- /elkscmd/ash/trap.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghaerr/elks/HEAD/elkscmd/ash/trap.h -------------------------------------------------------------------------------- /elkscmd/ash/var.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghaerr/elks/HEAD/elkscmd/ash/var.c -------------------------------------------------------------------------------- /elkscmd/ash/var.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghaerr/elks/HEAD/elkscmd/ash/var.h -------------------------------------------------------------------------------- /elkscmd/basic/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghaerr/elks/HEAD/elkscmd/basic/LICENSE -------------------------------------------------------------------------------- /elkscmd/basic/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghaerr/elks/HEAD/elkscmd/basic/Makefile -------------------------------------------------------------------------------- /elkscmd/basic/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghaerr/elks/HEAD/elkscmd/basic/README.md -------------------------------------------------------------------------------- /elkscmd/basic/TODO: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghaerr/elks/HEAD/elkscmd/basic/TODO -------------------------------------------------------------------------------- /elkscmd/basic/basic.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghaerr/elks/HEAD/elkscmd/basic/basic.c -------------------------------------------------------------------------------- /elkscmd/basic/basic.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghaerr/elks/HEAD/elkscmd/basic/basic.h -------------------------------------------------------------------------------- /elkscmd/basic/eliza.bas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghaerr/elks/HEAD/elkscmd/basic/eliza.bas -------------------------------------------------------------------------------- /elkscmd/basic/host.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghaerr/elks/HEAD/elkscmd/basic/host.c -------------------------------------------------------------------------------- /elkscmd/basic/host.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghaerr/elks/HEAD/elkscmd/basic/host.h -------------------------------------------------------------------------------- /elkscmd/basic/test.bas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghaerr/elks/HEAD/elkscmd/basic/test.bas -------------------------------------------------------------------------------- /elkscmd/bc/.gitignore: -------------------------------------------------------------------------------- 1 | bc 2 | fbc 3 | math.h 4 | -------------------------------------------------------------------------------- /elkscmd/bc/COPYING: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghaerr/elks/HEAD/elkscmd/bc/COPYING -------------------------------------------------------------------------------- /elkscmd/bc/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghaerr/elks/HEAD/elkscmd/bc/Makefile -------------------------------------------------------------------------------- /elkscmd/bc/bc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghaerr/elks/HEAD/elkscmd/bc/bc.c -------------------------------------------------------------------------------- /elkscmd/bc/bc.y: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghaerr/elks/HEAD/elkscmd/bc/bc.y -------------------------------------------------------------------------------- /elkscmd/bc/bcdefs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghaerr/elks/HEAD/elkscmd/bc/bcdefs.h -------------------------------------------------------------------------------- /elkscmd/bc/config.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghaerr/elks/HEAD/elkscmd/bc/config.h -------------------------------------------------------------------------------- /elkscmd/bc/const.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghaerr/elks/HEAD/elkscmd/bc/const.h -------------------------------------------------------------------------------- /elkscmd/bc/execute.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghaerr/elks/HEAD/elkscmd/bc/execute.c -------------------------------------------------------------------------------- /elkscmd/bc/fix_math.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghaerr/elks/HEAD/elkscmd/bc/fix_math.h -------------------------------------------------------------------------------- /elkscmd/bc/global.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghaerr/elks/HEAD/elkscmd/bc/global.c -------------------------------------------------------------------------------- /elkscmd/bc/global.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghaerr/elks/HEAD/elkscmd/bc/global.h -------------------------------------------------------------------------------- /elkscmd/bc/libmath.b: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghaerr/elks/HEAD/elkscmd/bc/libmath.b -------------------------------------------------------------------------------- /elkscmd/bc/load.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghaerr/elks/HEAD/elkscmd/bc/load.c -------------------------------------------------------------------------------- /elkscmd/bc/main.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghaerr/elks/HEAD/elkscmd/bc/main.c -------------------------------------------------------------------------------- /elkscmd/bc/number.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghaerr/elks/HEAD/elkscmd/bc/number.c -------------------------------------------------------------------------------- /elkscmd/bc/number.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghaerr/elks/HEAD/elkscmd/bc/number.h -------------------------------------------------------------------------------- /elkscmd/bc/proto.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghaerr/elks/HEAD/elkscmd/bc/proto.h -------------------------------------------------------------------------------- /elkscmd/bc/sbc.y: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghaerr/elks/HEAD/elkscmd/bc/sbc.y -------------------------------------------------------------------------------- /elkscmd/bc/scan.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghaerr/elks/HEAD/elkscmd/bc/scan.c -------------------------------------------------------------------------------- /elkscmd/bc/scan.l: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghaerr/elks/HEAD/elkscmd/bc/scan.l -------------------------------------------------------------------------------- /elkscmd/bc/storage.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghaerr/elks/HEAD/elkscmd/bc/storage.c -------------------------------------------------------------------------------- /elkscmd/bc/util.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghaerr/elks/HEAD/elkscmd/bc/util.c -------------------------------------------------------------------------------- /elkscmd/bc/version.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghaerr/elks/HEAD/elkscmd/bc/version.h -------------------------------------------------------------------------------- /elkscmd/bc/y.tab.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghaerr/elks/HEAD/elkscmd/bc/y.tab.h -------------------------------------------------------------------------------- /elkscmd/busyelks/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghaerr/elks/HEAD/elkscmd/busyelks/README -------------------------------------------------------------------------------- /elkscmd/busyelks/cmd.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghaerr/elks/HEAD/elkscmd/busyelks/cmd.h -------------------------------------------------------------------------------- /elkscmd/busyelks/defs.h: -------------------------------------------------------------------------------- 1 | 2 | #define _PROTOTYPE(x,y) x y; 3 | -------------------------------------------------------------------------------- /elkscmd/busyelks/lib.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghaerr/elks/HEAD/elkscmd/busyelks/lib.h -------------------------------------------------------------------------------- /elkscmd/busyelks/main.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghaerr/elks/HEAD/elkscmd/busyelks/main.c -------------------------------------------------------------------------------- /elkscmd/busyelks/sash.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghaerr/elks/HEAD/elkscmd/busyelks/sash.h -------------------------------------------------------------------------------- /elkscmd/config.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghaerr/elks/HEAD/elkscmd/config.in -------------------------------------------------------------------------------- /elkscmd/cron/.gitignore: -------------------------------------------------------------------------------- 1 | cron 2 | crontab 3 | -------------------------------------------------------------------------------- /elkscmd/cron/COPYRIGHT: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghaerr/elks/HEAD/elkscmd/cron/COPYRIGHT -------------------------------------------------------------------------------- /elkscmd/cron/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghaerr/elks/HEAD/elkscmd/cron/Makefile -------------------------------------------------------------------------------- /elkscmd/cron/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghaerr/elks/HEAD/elkscmd/cron/README -------------------------------------------------------------------------------- /elkscmd/cron/VERSION: -------------------------------------------------------------------------------- 1 | 0.9.1 2 | -------------------------------------------------------------------------------- /elkscmd/cron/config.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghaerr/elks/HEAD/elkscmd/cron/config.h -------------------------------------------------------------------------------- /elkscmd/cron/cron.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghaerr/elks/HEAD/elkscmd/cron/cron.c -------------------------------------------------------------------------------- /elkscmd/cron/cron.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghaerr/elks/HEAD/elkscmd/cron/cron.h -------------------------------------------------------------------------------- /elkscmd/cron/crontab.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghaerr/elks/HEAD/elkscmd/cron/crontab.c -------------------------------------------------------------------------------- /elkscmd/cron/lib.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghaerr/elks/HEAD/elkscmd/cron/lib.c -------------------------------------------------------------------------------- /elkscmd/cron/runjob.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghaerr/elks/HEAD/elkscmd/cron/runjob.c -------------------------------------------------------------------------------- /elkscmd/debug/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghaerr/elks/HEAD/elkscmd/debug/Makefile -------------------------------------------------------------------------------- /elkscmd/debug/debug/instrument.h: -------------------------------------------------------------------------------- 1 | ../../../libc/include/debug/instrument.h -------------------------------------------------------------------------------- /elkscmd/debug/debug/syms.h: -------------------------------------------------------------------------------- 1 | ../../../libc/include/debug/syms.h -------------------------------------------------------------------------------- /elkscmd/debug/dis.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghaerr/elks/HEAD/elkscmd/debug/dis.c -------------------------------------------------------------------------------- /elkscmd/debug/disasm.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghaerr/elks/HEAD/elkscmd/debug/disasm.c -------------------------------------------------------------------------------- /elkscmd/debug/disasm.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghaerr/elks/HEAD/elkscmd/debug/disasm.h -------------------------------------------------------------------------------- /elkscmd/debug/nm86.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghaerr/elks/HEAD/elkscmd/debug/nm86.c -------------------------------------------------------------------------------- /elkscmd/debug/opcodes.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghaerr/elks/HEAD/elkscmd/debug/opcodes.s -------------------------------------------------------------------------------- /elkscmd/debug/prologues: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghaerr/elks/HEAD/elkscmd/debug/prologues -------------------------------------------------------------------------------- /elkscmd/debug/testsym.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghaerr/elks/HEAD/elkscmd/debug/testsym.c -------------------------------------------------------------------------------- /elkscmd/disk_utils/df.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghaerr/elks/HEAD/elkscmd/disk_utils/df.c -------------------------------------------------------------------------------- /elkscmd/elvis/Elvis.lnk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghaerr/elks/HEAD/elkscmd/elvis/Elvis.lnk -------------------------------------------------------------------------------- /elkscmd/elvis/Elvis.mak: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghaerr/elks/HEAD/elkscmd/elvis/Elvis.mak -------------------------------------------------------------------------------- /elkscmd/elvis/Elvis.prj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghaerr/elks/HEAD/elkscmd/elvis/Elvis.prj -------------------------------------------------------------------------------- /elkscmd/elvis/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghaerr/elks/HEAD/elkscmd/elvis/Makefile -------------------------------------------------------------------------------- /elkscmd/elvis/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghaerr/elks/HEAD/elkscmd/elvis/README -------------------------------------------------------------------------------- /elkscmd/elvis/alias.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghaerr/elks/HEAD/elkscmd/elvis/alias.c -------------------------------------------------------------------------------- /elkscmd/elvis/atari.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghaerr/elks/HEAD/elkscmd/elvis/atari.c -------------------------------------------------------------------------------- /elkscmd/elvis/blk.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghaerr/elks/HEAD/elkscmd/elvis/blk.c -------------------------------------------------------------------------------- /elkscmd/elvis/cmd1.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghaerr/elks/HEAD/elkscmd/elvis/cmd1.c -------------------------------------------------------------------------------- /elkscmd/elvis/cmd2.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghaerr/elks/HEAD/elkscmd/elvis/cmd2.c -------------------------------------------------------------------------------- /elkscmd/elvis/config.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghaerr/elks/HEAD/elkscmd/elvis/config.h -------------------------------------------------------------------------------- /elkscmd/elvis/ctags.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghaerr/elks/HEAD/elkscmd/elvis/ctags.c -------------------------------------------------------------------------------- /elkscmd/elvis/curses.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghaerr/elks/HEAD/elkscmd/elvis/curses.c -------------------------------------------------------------------------------- /elkscmd/elvis/curses.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghaerr/elks/HEAD/elkscmd/elvis/curses.h -------------------------------------------------------------------------------- /elkscmd/elvis/cut.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghaerr/elks/HEAD/elkscmd/elvis/cut.c -------------------------------------------------------------------------------- /elkscmd/elvis/date.c: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /elkscmd/elvis/ex.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghaerr/elks/HEAD/elkscmd/elvis/ex.c -------------------------------------------------------------------------------- /elkscmd/elvis/ex.h: -------------------------------------------------------------------------------- 1 | extern int 2 | doexrc (char *filename); 3 | -------------------------------------------------------------------------------- /elkscmd/elvis/input.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghaerr/elks/HEAD/elkscmd/elvis/input.c -------------------------------------------------------------------------------- /elkscmd/elvis/main.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghaerr/elks/HEAD/elkscmd/elvis/main.c -------------------------------------------------------------------------------- /elkscmd/elvis/misc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghaerr/elks/HEAD/elkscmd/elvis/misc.c -------------------------------------------------------------------------------- /elkscmd/elvis/modify.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghaerr/elks/HEAD/elkscmd/elvis/modify.c -------------------------------------------------------------------------------- /elkscmd/elvis/move1.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghaerr/elks/HEAD/elkscmd/elvis/move1.c -------------------------------------------------------------------------------- /elkscmd/elvis/move2.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghaerr/elks/HEAD/elkscmd/elvis/move2.c -------------------------------------------------------------------------------- /elkscmd/elvis/move3.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghaerr/elks/HEAD/elkscmd/elvis/move3.c -------------------------------------------------------------------------------- /elkscmd/elvis/move4.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghaerr/elks/HEAD/elkscmd/elvis/move4.c -------------------------------------------------------------------------------- /elkscmd/elvis/move5.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghaerr/elks/HEAD/elkscmd/elvis/move5.c -------------------------------------------------------------------------------- /elkscmd/elvis/opts.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghaerr/elks/HEAD/elkscmd/elvis/opts.c -------------------------------------------------------------------------------- /elkscmd/elvis/osk.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghaerr/elks/HEAD/elkscmd/elvis/osk.c -------------------------------------------------------------------------------- /elkscmd/elvis/osk.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghaerr/elks/HEAD/elkscmd/elvis/osk.h -------------------------------------------------------------------------------- /elkscmd/elvis/pc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghaerr/elks/HEAD/elkscmd/elvis/pc.c -------------------------------------------------------------------------------- /elkscmd/elvis/profile.sh: -------------------------------------------------------------------------------- 1 | set TERM=vt52 2 | set SHELL=shell 3 | -------------------------------------------------------------------------------- /elkscmd/elvis/recycle.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghaerr/elks/HEAD/elkscmd/elvis/recycle.c -------------------------------------------------------------------------------- /elkscmd/elvis/redraw.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghaerr/elks/HEAD/elkscmd/elvis/redraw.c -------------------------------------------------------------------------------- /elkscmd/elvis/redraw.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghaerr/elks/HEAD/elkscmd/elvis/redraw.h -------------------------------------------------------------------------------- /elkscmd/elvis/ref.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghaerr/elks/HEAD/elkscmd/elvis/ref.c -------------------------------------------------------------------------------- /elkscmd/elvis/refont.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghaerr/elks/HEAD/elkscmd/elvis/refont.c -------------------------------------------------------------------------------- /elkscmd/elvis/regexp.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghaerr/elks/HEAD/elkscmd/elvis/regexp.c -------------------------------------------------------------------------------- /elkscmd/elvis/regexp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghaerr/elks/HEAD/elkscmd/elvis/regexp.h -------------------------------------------------------------------------------- /elkscmd/elvis/regsub.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghaerr/elks/HEAD/elkscmd/elvis/regsub.c -------------------------------------------------------------------------------- /elkscmd/elvis/shell.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghaerr/elks/HEAD/elkscmd/elvis/shell.c -------------------------------------------------------------------------------- /elkscmd/elvis/sysdos.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghaerr/elks/HEAD/elkscmd/elvis/sysdos.c -------------------------------------------------------------------------------- /elkscmd/elvis/system.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghaerr/elks/HEAD/elkscmd/elvis/system.c -------------------------------------------------------------------------------- /elkscmd/elvis/system.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghaerr/elks/HEAD/elkscmd/elvis/system.h -------------------------------------------------------------------------------- /elkscmd/elvis/tags: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghaerr/elks/HEAD/elkscmd/elvis/tags -------------------------------------------------------------------------------- /elkscmd/elvis/test.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghaerr/elks/HEAD/elkscmd/elvis/test.c -------------------------------------------------------------------------------- /elkscmd/elvis/tio.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghaerr/elks/HEAD/elkscmd/elvis/tio.c -------------------------------------------------------------------------------- /elkscmd/elvis/tio.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghaerr/elks/HEAD/elkscmd/elvis/tio.h -------------------------------------------------------------------------------- /elkscmd/elvis/tmp.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghaerr/elks/HEAD/elkscmd/elvis/tmp.c -------------------------------------------------------------------------------- /elkscmd/elvis/tmp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghaerr/elks/HEAD/elkscmd/elvis/tmp.h -------------------------------------------------------------------------------- /elkscmd/elvis/vars.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghaerr/elks/HEAD/elkscmd/elvis/vars.c -------------------------------------------------------------------------------- /elkscmd/elvis/vcmd.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghaerr/elks/HEAD/elkscmd/elvis/vcmd.c -------------------------------------------------------------------------------- /elkscmd/elvis/vi.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghaerr/elks/HEAD/elkscmd/elvis/vi.c -------------------------------------------------------------------------------- /elkscmd/elvis/vi.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghaerr/elks/HEAD/elkscmd/elvis/vi.h -------------------------------------------------------------------------------- /elkscmd/elvis/virec.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghaerr/elks/HEAD/elkscmd/elvis/virec.c -------------------------------------------------------------------------------- /elkscmd/file_utils/cp.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghaerr/elks/HEAD/elkscmd/file_utils/cp.c -------------------------------------------------------------------------------- /elkscmd/file_utils/dd.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghaerr/elks/HEAD/elkscmd/file_utils/dd.c -------------------------------------------------------------------------------- /elkscmd/file_utils/l.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghaerr/elks/HEAD/elkscmd/file_utils/l.c -------------------------------------------------------------------------------- /elkscmd/file_utils/ln.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghaerr/elks/HEAD/elkscmd/file_utils/ln.c -------------------------------------------------------------------------------- /elkscmd/file_utils/ls.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghaerr/elks/HEAD/elkscmd/file_utils/ls.c -------------------------------------------------------------------------------- /elkscmd/file_utils/mv.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghaerr/elks/HEAD/elkscmd/file_utils/mv.c -------------------------------------------------------------------------------- /elkscmd/file_utils/rm.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghaerr/elks/HEAD/elkscmd/file_utils/rm.c -------------------------------------------------------------------------------- /elkscmd/fsck_dos/boot.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghaerr/elks/HEAD/elkscmd/fsck_dos/boot.c -------------------------------------------------------------------------------- /elkscmd/fsck_dos/dir.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghaerr/elks/HEAD/elkscmd/fsck_dos/dir.c -------------------------------------------------------------------------------- /elkscmd/fsck_dos/ext.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghaerr/elks/HEAD/elkscmd/fsck_dos/ext.h -------------------------------------------------------------------------------- /elkscmd/fsck_dos/fat.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghaerr/elks/HEAD/elkscmd/fsck_dos/fat.c -------------------------------------------------------------------------------- /elkscmd/fsck_dos/main.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghaerr/elks/HEAD/elkscmd/fsck_dos/main.c -------------------------------------------------------------------------------- /elkscmd/fsck_dos/mem.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghaerr/elks/HEAD/elkscmd/fsck_dos/mem.c -------------------------------------------------------------------------------- /elkscmd/gui/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghaerr/elks/HEAD/elkscmd/gui/.gitignore -------------------------------------------------------------------------------- /elkscmd/gui/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghaerr/elks/HEAD/elkscmd/gui/LICENSE -------------------------------------------------------------------------------- /elkscmd/gui/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghaerr/elks/HEAD/elkscmd/gui/Makefile -------------------------------------------------------------------------------- /elkscmd/gui/app.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghaerr/elks/HEAD/elkscmd/gui/app.c -------------------------------------------------------------------------------- /elkscmd/gui/app.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghaerr/elks/HEAD/elkscmd/gui/app.h -------------------------------------------------------------------------------- /elkscmd/gui/cursor.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghaerr/elks/HEAD/elkscmd/gui/cursor.c -------------------------------------------------------------------------------- /elkscmd/gui/drawbmp.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghaerr/elks/HEAD/elkscmd/gui/drawbmp.c -------------------------------------------------------------------------------- /elkscmd/gui/event.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghaerr/elks/HEAD/elkscmd/gui/event.c -------------------------------------------------------------------------------- /elkscmd/gui/event.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghaerr/elks/HEAD/elkscmd/gui/event.h -------------------------------------------------------------------------------- /elkscmd/gui/graphics.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghaerr/elks/HEAD/elkscmd/gui/graphics.c -------------------------------------------------------------------------------- /elkscmd/gui/graphics.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghaerr/elks/HEAD/elkscmd/gui/graphics.h -------------------------------------------------------------------------------- /elkscmd/gui/gui.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghaerr/elks/HEAD/elkscmd/gui/gui.c -------------------------------------------------------------------------------- /elkscmd/gui/gui.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghaerr/elks/HEAD/elkscmd/gui/gui.h -------------------------------------------------------------------------------- /elkscmd/gui/input.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghaerr/elks/HEAD/elkscmd/gui/input.c -------------------------------------------------------------------------------- /elkscmd/gui/input.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghaerr/elks/HEAD/elkscmd/gui/input.h -------------------------------------------------------------------------------- /elkscmd/gui/mouse.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghaerr/elks/HEAD/elkscmd/gui/mouse.c -------------------------------------------------------------------------------- /elkscmd/gui/mouse.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghaerr/elks/HEAD/elkscmd/gui/mouse.h -------------------------------------------------------------------------------- /elkscmd/gui/render.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghaerr/elks/HEAD/elkscmd/gui/render.c -------------------------------------------------------------------------------- /elkscmd/gui/render.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghaerr/elks/HEAD/elkscmd/gui/render.h -------------------------------------------------------------------------------- /elkscmd/gui/vga-c86.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghaerr/elks/HEAD/elkscmd/gui/vga-c86.s -------------------------------------------------------------------------------- /elkscmd/gui/vga-ia16.S: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghaerr/elks/HEAD/elkscmd/gui/vga-ia16.S -------------------------------------------------------------------------------- /elkscmd/gui/vgalib.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghaerr/elks/HEAD/elkscmd/gui/vgalib.h -------------------------------------------------------------------------------- /elkscmd/inet/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghaerr/elks/HEAD/elkscmd/inet/Makefile -------------------------------------------------------------------------------- /elkscmd/inet/ftp/.gitignore: -------------------------------------------------------------------------------- 1 | ftp 2 | ftpd 3 | -------------------------------------------------------------------------------- /elkscmd/inet/ftp/ftp.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghaerr/elks/HEAD/elkscmd/inet/ftp/ftp.c -------------------------------------------------------------------------------- /elkscmd/inet/ftp/ftpd.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghaerr/elks/HEAD/elkscmd/inet/ftp/ftpd.c -------------------------------------------------------------------------------- /elkscmd/inet/httpd/.gitignore: -------------------------------------------------------------------------------- 1 | httpd 2 | -------------------------------------------------------------------------------- /elkscmd/inet/nettools/.gitignore: -------------------------------------------------------------------------------- 1 | nslookup 2 | netstat 3 | arp 4 | -------------------------------------------------------------------------------- /elkscmd/inet/telnet/.gitignore: -------------------------------------------------------------------------------- 1 | telnet 2 | -------------------------------------------------------------------------------- /elkscmd/inet/telnetd/.gitignore: -------------------------------------------------------------------------------- 1 | telnetd 2 | -------------------------------------------------------------------------------- /elkscmd/inet/tinyirc/.gitignore: -------------------------------------------------------------------------------- 1 | tinyirc 2 | -------------------------------------------------------------------------------- /elkscmd/inet/tinyirc/magic: -------------------------------------------------------------------------------- 1 | 103276200 2 | -------------------------------------------------------------------------------- /elkscmd/inet/urlget/.gitignore: -------------------------------------------------------------------------------- 1 | urlget 2 | -------------------------------------------------------------------------------- /elkscmd/ktcp/.gitignore: -------------------------------------------------------------------------------- 1 | ktcp 2 | -------------------------------------------------------------------------------- /elkscmd/ktcp/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghaerr/elks/HEAD/elkscmd/ktcp/Makefile -------------------------------------------------------------------------------- /elkscmd/ktcp/arp.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghaerr/elks/HEAD/elkscmd/ktcp/arp.c -------------------------------------------------------------------------------- /elkscmd/ktcp/arp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghaerr/elks/HEAD/elkscmd/ktcp/arp.h -------------------------------------------------------------------------------- /elkscmd/ktcp/config.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghaerr/elks/HEAD/elkscmd/ktcp/config.h -------------------------------------------------------------------------------- /elkscmd/ktcp/deveth.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghaerr/elks/HEAD/elkscmd/ktcp/deveth.c -------------------------------------------------------------------------------- /elkscmd/ktcp/deveth.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghaerr/elks/HEAD/elkscmd/ktcp/deveth.h -------------------------------------------------------------------------------- /elkscmd/ktcp/hexdump.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghaerr/elks/HEAD/elkscmd/ktcp/hexdump.c -------------------------------------------------------------------------------- /elkscmd/ktcp/icmp.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghaerr/elks/HEAD/elkscmd/ktcp/icmp.c -------------------------------------------------------------------------------- /elkscmd/ktcp/icmp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghaerr/elks/HEAD/elkscmd/ktcp/icmp.h -------------------------------------------------------------------------------- /elkscmd/ktcp/ip.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghaerr/elks/HEAD/elkscmd/ktcp/ip.c -------------------------------------------------------------------------------- /elkscmd/ktcp/ip.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghaerr/elks/HEAD/elkscmd/ktcp/ip.h -------------------------------------------------------------------------------- /elkscmd/ktcp/ktcp.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghaerr/elks/HEAD/elkscmd/ktcp/ktcp.c -------------------------------------------------------------------------------- /elkscmd/ktcp/netconf.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghaerr/elks/HEAD/elkscmd/ktcp/netconf.c -------------------------------------------------------------------------------- /elkscmd/ktcp/netconf.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghaerr/elks/HEAD/elkscmd/ktcp/netconf.h -------------------------------------------------------------------------------- /elkscmd/ktcp/slip.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghaerr/elks/HEAD/elkscmd/ktcp/slip.c -------------------------------------------------------------------------------- /elkscmd/ktcp/slip.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghaerr/elks/HEAD/elkscmd/ktcp/slip.h -------------------------------------------------------------------------------- /elkscmd/ktcp/tcp.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghaerr/elks/HEAD/elkscmd/ktcp/tcp.c -------------------------------------------------------------------------------- /elkscmd/ktcp/tcp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghaerr/elks/HEAD/elkscmd/ktcp/tcp.h -------------------------------------------------------------------------------- /elkscmd/ktcp/tcp_cb.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghaerr/elks/HEAD/elkscmd/ktcp/tcp_cb.c -------------------------------------------------------------------------------- /elkscmd/ktcp/tcp_cb.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghaerr/elks/HEAD/elkscmd/ktcp/tcp_cb.h -------------------------------------------------------------------------------- /elkscmd/ktcp/tcpdev.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghaerr/elks/HEAD/elkscmd/ktcp/tcpdev.c -------------------------------------------------------------------------------- /elkscmd/ktcp/tcpdev.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghaerr/elks/HEAD/elkscmd/ktcp/tcpdev.h -------------------------------------------------------------------------------- /elkscmd/ktcp/timer.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghaerr/elks/HEAD/elkscmd/ktcp/timer.c -------------------------------------------------------------------------------- /elkscmd/ktcp/timer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghaerr/elks/HEAD/elkscmd/ktcp/timer.h -------------------------------------------------------------------------------- /elkscmd/ktcp/vjhc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghaerr/elks/HEAD/elkscmd/ktcp/vjhc.c -------------------------------------------------------------------------------- /elkscmd/ktcp/vjhc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghaerr/elks/HEAD/elkscmd/ktcp/vjhc.h -------------------------------------------------------------------------------- /elkscmd/levee/.gitignore: -------------------------------------------------------------------------------- 1 | lev 2 | -------------------------------------------------------------------------------- /elkscmd/levee/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghaerr/elks/HEAD/elkscmd/levee/Makefile -------------------------------------------------------------------------------- /elkscmd/levee/beep.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghaerr/elks/HEAD/elkscmd/levee/beep.c -------------------------------------------------------------------------------- /elkscmd/levee/blockio.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghaerr/elks/HEAD/elkscmd/levee/blockio.c -------------------------------------------------------------------------------- /elkscmd/levee/display.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghaerr/elks/HEAD/elkscmd/levee/display.c -------------------------------------------------------------------------------- /elkscmd/levee/doscall.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghaerr/elks/HEAD/elkscmd/levee/doscall.c -------------------------------------------------------------------------------- /elkscmd/levee/editcor.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghaerr/elks/HEAD/elkscmd/levee/editcor.c -------------------------------------------------------------------------------- /elkscmd/levee/exec.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghaerr/elks/HEAD/elkscmd/levee/exec.c -------------------------------------------------------------------------------- /elkscmd/levee/extern.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghaerr/elks/HEAD/elkscmd/levee/extern.h -------------------------------------------------------------------------------- /elkscmd/levee/find.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghaerr/elks/HEAD/elkscmd/levee/find.c -------------------------------------------------------------------------------- /elkscmd/levee/gemcall.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghaerr/elks/HEAD/elkscmd/levee/gemcall.c -------------------------------------------------------------------------------- /elkscmd/levee/globals.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghaerr/elks/HEAD/elkscmd/levee/globals.c -------------------------------------------------------------------------------- /elkscmd/levee/grep.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghaerr/elks/HEAD/elkscmd/levee/grep.h -------------------------------------------------------------------------------- /elkscmd/levee/insert.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghaerr/elks/HEAD/elkscmd/levee/insert.c -------------------------------------------------------------------------------- /elkscmd/levee/levee.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghaerr/elks/HEAD/elkscmd/levee/levee.h -------------------------------------------------------------------------------- /elkscmd/levee/lv.doc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghaerr/elks/HEAD/elkscmd/levee/lv.doc -------------------------------------------------------------------------------- /elkscmd/levee/main.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghaerr/elks/HEAD/elkscmd/levee/main.c -------------------------------------------------------------------------------- /elkscmd/levee/misc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghaerr/elks/HEAD/elkscmd/levee/misc.c -------------------------------------------------------------------------------- /elkscmd/levee/modify.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghaerr/elks/HEAD/elkscmd/levee/modify.c -------------------------------------------------------------------------------- /elkscmd/levee/move.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghaerr/elks/HEAD/elkscmd/levee/move.c -------------------------------------------------------------------------------- /elkscmd/levee/proto.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghaerr/elks/HEAD/elkscmd/levee/proto.h -------------------------------------------------------------------------------- /elkscmd/levee/rmxcall.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghaerr/elks/HEAD/elkscmd/levee/rmxcall.c -------------------------------------------------------------------------------- /elkscmd/levee/tc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghaerr/elks/HEAD/elkscmd/levee/tc -------------------------------------------------------------------------------- /elkscmd/levee/termcap.i: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghaerr/elks/HEAD/elkscmd/levee/termcap.i -------------------------------------------------------------------------------- /elkscmd/levee/ucsd.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghaerr/elks/HEAD/elkscmd/levee/ucsd.c -------------------------------------------------------------------------------- /elkscmd/levee/undo.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghaerr/elks/HEAD/elkscmd/levee/undo.c -------------------------------------------------------------------------------- /elkscmd/lib/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghaerr/elks/HEAD/elkscmd/lib/Makefile -------------------------------------------------------------------------------- /elkscmd/man/man1/ash.1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghaerr/elks/HEAD/elkscmd/man/man1/ash.1 -------------------------------------------------------------------------------- /elkscmd/man/man1/cal.1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghaerr/elks/HEAD/elkscmd/man/man1/cal.1 -------------------------------------------------------------------------------- /elkscmd/man/man1/cmp.1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghaerr/elks/HEAD/elkscmd/man/man1/cmp.1 -------------------------------------------------------------------------------- /elkscmd/man/man1/cp.1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghaerr/elks/HEAD/elkscmd/man/man1/cp.1 -------------------------------------------------------------------------------- /elkscmd/man/man1/dd.1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghaerr/elks/HEAD/elkscmd/man/man1/dd.1 -------------------------------------------------------------------------------- /elkscmd/man/man1/df.1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghaerr/elks/HEAD/elkscmd/man/man1/df.1 -------------------------------------------------------------------------------- /elkscmd/man/man1/diff.1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghaerr/elks/HEAD/elkscmd/man/man1/diff.1 -------------------------------------------------------------------------------- /elkscmd/man/man1/echo.1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghaerr/elks/HEAD/elkscmd/man/man1/echo.1 -------------------------------------------------------------------------------- /elkscmd/man/man1/edit.1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghaerr/elks/HEAD/elkscmd/man/man1/edit.1 -------------------------------------------------------------------------------- /elkscmd/man/man1/env.1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghaerr/elks/HEAD/elkscmd/man/man1/env.1 -------------------------------------------------------------------------------- /elkscmd/man/man1/fm.1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghaerr/elks/HEAD/elkscmd/man/man1/fm.1 -------------------------------------------------------------------------------- /elkscmd/man/man1/ftp.1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghaerr/elks/HEAD/elkscmd/man/man1/ftp.1 -------------------------------------------------------------------------------- /elkscmd/man/man1/kill.1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghaerr/elks/HEAD/elkscmd/man/man1/kill.1 -------------------------------------------------------------------------------- /elkscmd/man/man1/lp.1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghaerr/elks/HEAD/elkscmd/man/man1/lp.1 -------------------------------------------------------------------------------- /elkscmd/man/man1/ls.1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghaerr/elks/HEAD/elkscmd/man/man1/ls.1 -------------------------------------------------------------------------------- /elkscmd/man/man1/mail.1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghaerr/elks/HEAD/elkscmd/man/man1/mail.1 -------------------------------------------------------------------------------- /elkscmd/man/man1/man.1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghaerr/elks/HEAD/elkscmd/man/man1/man.1 -------------------------------------------------------------------------------- /elkscmd/man/man1/od.1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghaerr/elks/HEAD/elkscmd/man/man1/od.1 -------------------------------------------------------------------------------- /elkscmd/man/man1/ps.1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghaerr/elks/HEAD/elkscmd/man/man1/ps.1 -------------------------------------------------------------------------------- /elkscmd/man/man1/pwd.1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghaerr/elks/HEAD/elkscmd/man/man1/pwd.1 -------------------------------------------------------------------------------- /elkscmd/man/man1/sash.1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghaerr/elks/HEAD/elkscmd/man/man1/sash.1 -------------------------------------------------------------------------------- /elkscmd/man/man1/stty.1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghaerr/elks/HEAD/elkscmd/man/man1/stty.1 -------------------------------------------------------------------------------- /elkscmd/man/man1/tail.1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghaerr/elks/HEAD/elkscmd/man/man1/tail.1 -------------------------------------------------------------------------------- /elkscmd/man/man1/tee.1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghaerr/elks/HEAD/elkscmd/man/man1/tee.1 -------------------------------------------------------------------------------- /elkscmd/man/man1/test.1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghaerr/elks/HEAD/elkscmd/man/man1/test.1 -------------------------------------------------------------------------------- /elkscmd/man/man1/tr.1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghaerr/elks/HEAD/elkscmd/man/man1/tr.1 -------------------------------------------------------------------------------- /elkscmd/man/man1/true.1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghaerr/elks/HEAD/elkscmd/man/man1/true.1 -------------------------------------------------------------------------------- /elkscmd/man/man1/tty.1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghaerr/elks/HEAD/elkscmd/man/man1/tty.1 -------------------------------------------------------------------------------- /elkscmd/man/man1/vi.1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghaerr/elks/HEAD/elkscmd/man/man1/vi.1 -------------------------------------------------------------------------------- /elkscmd/man/man1/wc.1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghaerr/elks/HEAD/elkscmd/man/man1/wc.1 -------------------------------------------------------------------------------- /elkscmd/man/man1/who.1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghaerr/elks/HEAD/elkscmd/man/man1/who.1 -------------------------------------------------------------------------------- /elkscmd/man/man1/yes.1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghaerr/elks/HEAD/elkscmd/man/man1/yes.1 -------------------------------------------------------------------------------- /elkscmd/man/man2/bind.2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghaerr/elks/HEAD/elkscmd/man/man2/bind.2 -------------------------------------------------------------------------------- /elkscmd/man/man2/brk.2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghaerr/elks/HEAD/elkscmd/man/man2/brk.2 -------------------------------------------------------------------------------- /elkscmd/man/man2/dup.2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghaerr/elks/HEAD/elkscmd/man/man2/dup.2 -------------------------------------------------------------------------------- /elkscmd/man/man2/exit.2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghaerr/elks/HEAD/elkscmd/man/man2/exit.2 -------------------------------------------------------------------------------- /elkscmd/man/man2/fork.2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghaerr/elks/HEAD/elkscmd/man/man2/fork.2 -------------------------------------------------------------------------------- /elkscmd/man/man2/kill.2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghaerr/elks/HEAD/elkscmd/man/man2/kill.2 -------------------------------------------------------------------------------- /elkscmd/man/man2/link.2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghaerr/elks/HEAD/elkscmd/man/man2/link.2 -------------------------------------------------------------------------------- /elkscmd/man/man2/open.2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghaerr/elks/HEAD/elkscmd/man/man2/open.2 -------------------------------------------------------------------------------- /elkscmd/man/man2/pipe.2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghaerr/elks/HEAD/elkscmd/man/man2/pipe.2 -------------------------------------------------------------------------------- /elkscmd/man/man2/read.2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghaerr/elks/HEAD/elkscmd/man/man2/read.2 -------------------------------------------------------------------------------- /elkscmd/man/man2/sync.2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghaerr/elks/HEAD/elkscmd/man/man2/sync.2 -------------------------------------------------------------------------------- /elkscmd/man/man2/time.2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghaerr/elks/HEAD/elkscmd/man/man2/time.2 -------------------------------------------------------------------------------- /elkscmd/man/man2/wait.2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghaerr/elks/HEAD/elkscmd/man/man2/wait.2 -------------------------------------------------------------------------------- /elkscmd/man/man4/3c.4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghaerr/elks/HEAD/elkscmd/man/man4/3c.4 -------------------------------------------------------------------------------- /elkscmd/man/man4/lp.4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghaerr/elks/HEAD/elkscmd/man/man4/lp.4 -------------------------------------------------------------------------------- /elkscmd/man/man4/ne.4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghaerr/elks/HEAD/elkscmd/man/man4/ne.4 -------------------------------------------------------------------------------- /elkscmd/man/man4/wd.4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghaerr/elks/HEAD/elkscmd/man/man4/wd.4 -------------------------------------------------------------------------------- /elkscmd/man/man5/dir.5: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghaerr/elks/HEAD/elkscmd/man/man5/dir.5 -------------------------------------------------------------------------------- /elkscmd/man/man7/hier.7: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghaerr/elks/HEAD/elkscmd/man/man7/hier.7 -------------------------------------------------------------------------------- /elkscmd/man/man7/man.7: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghaerr/elks/HEAD/elkscmd/man/man7/man.7 -------------------------------------------------------------------------------- /elkscmd/man/man8/cron.8: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghaerr/elks/HEAD/elkscmd/man/man8/cron.8 -------------------------------------------------------------------------------- /elkscmd/man/man8/fsck.8: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghaerr/elks/HEAD/elkscmd/man/man8/fsck.8 -------------------------------------------------------------------------------- /elkscmd/man/man8/ftpd.8: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghaerr/elks/HEAD/elkscmd/man/man8/ftpd.8 -------------------------------------------------------------------------------- /elkscmd/man/man8/inet.8: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghaerr/elks/HEAD/elkscmd/man/man8/inet.8 -------------------------------------------------------------------------------- /elkscmd/man/man8/init.8: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghaerr/elks/HEAD/elkscmd/man/man8/init.8 -------------------------------------------------------------------------------- /elkscmd/man/man8/mkfs.8: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghaerr/elks/HEAD/elkscmd/man/man8/mkfs.8 -------------------------------------------------------------------------------- /elkscmd/man/man8/part.8: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghaerr/elks/HEAD/elkscmd/man/man8/part.8 -------------------------------------------------------------------------------- /elkscmd/man/man8/slip.8: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghaerr/elks/HEAD/elkscmd/man/man8/slip.8 -------------------------------------------------------------------------------- /elkscmd/man/man8/sync.8: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghaerr/elks/HEAD/elkscmd/man/man8/sync.8 -------------------------------------------------------------------------------- /elkscmd/man/man8/sys.8: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghaerr/elks/HEAD/elkscmd/man/man8/sys.8 -------------------------------------------------------------------------------- /elkscmd/man/man8/tcpd.8: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghaerr/elks/HEAD/elkscmd/man/man8/tcpd.8 -------------------------------------------------------------------------------- /elkscmd/man/man8/unix.8: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghaerr/elks/HEAD/elkscmd/man/man8/unix.8 -------------------------------------------------------------------------------- /elkscmd/minix1/COPYING: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghaerr/elks/HEAD/elkscmd/minix1/COPYING -------------------------------------------------------------------------------- /elkscmd/minix1/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghaerr/elks/HEAD/elkscmd/minix1/Makefile -------------------------------------------------------------------------------- /elkscmd/minix1/banner.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghaerr/elks/HEAD/elkscmd/minix1/banner.c -------------------------------------------------------------------------------- /elkscmd/minix1/cksum.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghaerr/elks/HEAD/elkscmd/minix1/cksum.c -------------------------------------------------------------------------------- /elkscmd/minix1/cut.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghaerr/elks/HEAD/elkscmd/minix1/cut.c -------------------------------------------------------------------------------- /elkscmd/minix1/du.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghaerr/elks/HEAD/elkscmd/minix1/du.c -------------------------------------------------------------------------------- /elkscmd/minix1/fgrep.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghaerr/elks/HEAD/elkscmd/minix1/fgrep.c -------------------------------------------------------------------------------- /elkscmd/minix1/grep.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghaerr/elks/HEAD/elkscmd/minix1/grep.c -------------------------------------------------------------------------------- /elkscmd/minix1/proto.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghaerr/elks/HEAD/elkscmd/minix1/proto.c -------------------------------------------------------------------------------- /elkscmd/minix1/sum.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghaerr/elks/HEAD/elkscmd/minix1/sum.c -------------------------------------------------------------------------------- /elkscmd/minix1/uniq.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghaerr/elks/HEAD/elkscmd/minix1/uniq.c -------------------------------------------------------------------------------- /elkscmd/minix1/wc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghaerr/elks/HEAD/elkscmd/minix1/wc.c -------------------------------------------------------------------------------- /elkscmd/minix2/COPYING: -------------------------------------------------------------------------------- 1 | See COPYRIGHT 2 | -------------------------------------------------------------------------------- /elkscmd/minix2/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghaerr/elks/HEAD/elkscmd/minix2/Makefile -------------------------------------------------------------------------------- /elkscmd/minix2/eject.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghaerr/elks/HEAD/elkscmd/minix2/eject.c -------------------------------------------------------------------------------- /elkscmd/minix2/env.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghaerr/elks/HEAD/elkscmd/minix2/env.c -------------------------------------------------------------------------------- /elkscmd/minix2/lp.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghaerr/elks/HEAD/elkscmd/minix2/lp.c -------------------------------------------------------------------------------- /elkscmd/minix2/lpd.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghaerr/elks/HEAD/elkscmd/minix2/lpd.c -------------------------------------------------------------------------------- /elkscmd/minix2/man.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghaerr/elks/HEAD/elkscmd/minix2/man.c -------------------------------------------------------------------------------- /elkscmd/minix2/mt.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghaerr/elks/HEAD/elkscmd/minix2/mt.c -------------------------------------------------------------------------------- /elkscmd/minix2/tget.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghaerr/elks/HEAD/elkscmd/minix2/tget.c -------------------------------------------------------------------------------- /elkscmd/minix3/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghaerr/elks/HEAD/elkscmd/minix3/LICENSE -------------------------------------------------------------------------------- /elkscmd/minix3/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghaerr/elks/HEAD/elkscmd/minix3/Makefile -------------------------------------------------------------------------------- /elkscmd/minix3/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghaerr/elks/HEAD/elkscmd/minix3/README -------------------------------------------------------------------------------- /elkscmd/minix3/cal.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghaerr/elks/HEAD/elkscmd/minix3/cal.c -------------------------------------------------------------------------------- /elkscmd/minix3/defs.h: -------------------------------------------------------------------------------- 1 | 2 | #define _PROTOTYPE(x,y) x y; 3 | -------------------------------------------------------------------------------- /elkscmd/minix3/diff.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghaerr/elks/HEAD/elkscmd/minix3/diff.c -------------------------------------------------------------------------------- /elkscmd/minix3/file.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghaerr/elks/HEAD/elkscmd/minix3/file.c -------------------------------------------------------------------------------- /elkscmd/minix3/find.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghaerr/elks/HEAD/elkscmd/minix3/find.c -------------------------------------------------------------------------------- /elkscmd/minix3/head.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghaerr/elks/HEAD/elkscmd/minix3/head.c -------------------------------------------------------------------------------- /elkscmd/minix3/mail.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghaerr/elks/HEAD/elkscmd/minix3/mail.c -------------------------------------------------------------------------------- /elkscmd/minix3/sed.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghaerr/elks/HEAD/elkscmd/minix3/sed.c -------------------------------------------------------------------------------- /elkscmd/minix3/sort.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghaerr/elks/HEAD/elkscmd/minix3/sort.c -------------------------------------------------------------------------------- /elkscmd/minix3/tail.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghaerr/elks/HEAD/elkscmd/minix3/tail.c -------------------------------------------------------------------------------- /elkscmd/minix3/tee.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghaerr/elks/HEAD/elkscmd/minix3/tee.c -------------------------------------------------------------------------------- /elkscmd/misc_utils/ed.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghaerr/elks/HEAD/elkscmd/misc_utils/ed.c -------------------------------------------------------------------------------- /elkscmd/misc_utils/hd.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghaerr/elks/HEAD/elkscmd/misc_utils/hd.c -------------------------------------------------------------------------------- /elkscmd/misc_utils/od.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghaerr/elks/HEAD/elkscmd/misc_utils/od.c -------------------------------------------------------------------------------- /elkscmd/nano-X/FIXME: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghaerr/elks/HEAD/elkscmd/nano-X/FIXME -------------------------------------------------------------------------------- /elkscmd/nano-X/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghaerr/elks/HEAD/elkscmd/nano-X/LICENSE -------------------------------------------------------------------------------- /elkscmd/nano-X/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghaerr/elks/HEAD/elkscmd/nano-X/Makefile -------------------------------------------------------------------------------- /elkscmd/nano-X/device.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghaerr/elks/HEAD/elkscmd/nano-X/device.h -------------------------------------------------------------------------------- /elkscmd/nano-X/doc/BUGS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghaerr/elks/HEAD/elkscmd/nano-X/doc/BUGS -------------------------------------------------------------------------------- /elkscmd/nano-X/doc/TODO: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghaerr/elks/HEAD/elkscmd/nano-X/doc/TODO -------------------------------------------------------------------------------- /elkscmd/nano-X/nano-X.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghaerr/elks/HEAD/elkscmd/nano-X/nano-X.h -------------------------------------------------------------------------------- /elkscmd/nano/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghaerr/elks/HEAD/elkscmd/nano/.gitignore -------------------------------------------------------------------------------- /elkscmd/nano/Make.defs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghaerr/elks/HEAD/elkscmd/nano/Make.defs -------------------------------------------------------------------------------- /elkscmd/nano/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghaerr/elks/HEAD/elkscmd/nano/Makefile -------------------------------------------------------------------------------- /elkscmd/nano/nano-2.0.6/src/.deps/.gitignore: -------------------------------------------------------------------------------- 1 | *.Po 2 | -------------------------------------------------------------------------------- /elkscmd/nano/nano-2.0.6/stamp-h1: -------------------------------------------------------------------------------- 1 | timestamp for config.h 2 | -------------------------------------------------------------------------------- /elkscmd/nano/ncurses-5.2/progs/clear.sh: -------------------------------------------------------------------------------- 1 | exec tput clear 2 | -------------------------------------------------------------------------------- /elkscmd/romprg/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghaerr/elks/HEAD/elkscmd/romprg/Makefile -------------------------------------------------------------------------------- /elkscmd/romprg/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghaerr/elks/HEAD/elkscmd/romprg/README -------------------------------------------------------------------------------- /elkscmd/romprg/crc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghaerr/elks/HEAD/elkscmd/romprg/crc.c -------------------------------------------------------------------------------- /elkscmd/romprg/crc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghaerr/elks/HEAD/elkscmd/romprg/crc.h -------------------------------------------------------------------------------- /elkscmd/romprg/flash.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghaerr/elks/HEAD/elkscmd/romprg/flash.c -------------------------------------------------------------------------------- /elkscmd/romprg/flash.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghaerr/elks/HEAD/elkscmd/romprg/flash.h -------------------------------------------------------------------------------- /elkscmd/romprg/main.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghaerr/elks/HEAD/elkscmd/romprg/main.c -------------------------------------------------------------------------------- /elkscmd/romprg/serial.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghaerr/elks/HEAD/elkscmd/romprg/serial.c -------------------------------------------------------------------------------- /elkscmd/romprg/serial.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghaerr/elks/HEAD/elkscmd/romprg/serial.h -------------------------------------------------------------------------------- /elkscmd/rootfs_template/bin/.keep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /elkscmd/rootfs_template/dev/.keep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /elkscmd/rootfs_template/etc/.keep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /elkscmd/rootfs_template/home/.keep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /elkscmd/rootfs_template/mnt/.keep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /elkscmd/rootfs_template/root/.keep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /elkscmd/rootfs_template/tmp/.keep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /elkscmd/sash/.gitignore: -------------------------------------------------------------------------------- 1 | sash 2 | -------------------------------------------------------------------------------- /elkscmd/sash/COPYING: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghaerr/elks/HEAD/elkscmd/sash/COPYING -------------------------------------------------------------------------------- /elkscmd/sash/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghaerr/elks/HEAD/elkscmd/sash/Makefile -------------------------------------------------------------------------------- /elkscmd/sash/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghaerr/elks/HEAD/elkscmd/sash/README -------------------------------------------------------------------------------- /elkscmd/sash/cmd_dd.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghaerr/elks/HEAD/elkscmd/sash/cmd_dd.c -------------------------------------------------------------------------------- /elkscmd/sash/cmd_ed.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghaerr/elks/HEAD/elkscmd/sash/cmd_ed.c -------------------------------------------------------------------------------- /elkscmd/sash/cmd_grep.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghaerr/elks/HEAD/elkscmd/sash/cmd_grep.c -------------------------------------------------------------------------------- /elkscmd/sash/cmd_ls.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghaerr/elks/HEAD/elkscmd/sash/cmd_ls.c -------------------------------------------------------------------------------- /elkscmd/sash/cmd_tar.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghaerr/elks/HEAD/elkscmd/sash/cmd_tar.c -------------------------------------------------------------------------------- /elkscmd/sash/cmds.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghaerr/elks/HEAD/elkscmd/sash/cmds.c -------------------------------------------------------------------------------- /elkscmd/sash/config.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghaerr/elks/HEAD/elkscmd/sash/config.h -------------------------------------------------------------------------------- /elkscmd/sash/sash.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghaerr/elks/HEAD/elkscmd/sash/sash.c -------------------------------------------------------------------------------- /elkscmd/sash/sash.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghaerr/elks/HEAD/elkscmd/sash/sash.h -------------------------------------------------------------------------------- /elkscmd/sash/utils.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghaerr/elks/HEAD/elkscmd/sash/utils.c -------------------------------------------------------------------------------- /elkscmd/screen/.gitignore: -------------------------------------------------------------------------------- 1 | screen 2 | -------------------------------------------------------------------------------- /elkscmd/screen/BUGS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghaerr/elks/HEAD/elkscmd/screen/BUGS -------------------------------------------------------------------------------- /elkscmd/screen/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghaerr/elks/HEAD/elkscmd/screen/Makefile -------------------------------------------------------------------------------- /elkscmd/screen/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghaerr/elks/HEAD/elkscmd/screen/README -------------------------------------------------------------------------------- /elkscmd/screen/ansi.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghaerr/elks/HEAD/elkscmd/screen/ansi.c -------------------------------------------------------------------------------- /elkscmd/screen/ansi.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghaerr/elks/HEAD/elkscmd/screen/ansi.h -------------------------------------------------------------------------------- /elkscmd/screen/screen.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghaerr/elks/HEAD/elkscmd/screen/screen.c -------------------------------------------------------------------------------- /elkscmd/screen/screen.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghaerr/elks/HEAD/elkscmd/screen/screen.h -------------------------------------------------------------------------------- /elkscmd/screen/screenrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghaerr/elks/HEAD/elkscmd/screen/screenrc -------------------------------------------------------------------------------- /elkscmd/sh_utils/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghaerr/elks/HEAD/elkscmd/sh_utils/README -------------------------------------------------------------------------------- /elkscmd/sh_utils/date.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghaerr/elks/HEAD/elkscmd/sh_utils/date.c -------------------------------------------------------------------------------- /elkscmd/sh_utils/echo.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghaerr/elks/HEAD/elkscmd/sh_utils/echo.c -------------------------------------------------------------------------------- /elkscmd/sh_utils/false.c: -------------------------------------------------------------------------------- 1 | int 2 | main(int ac, char **av) 3 | { 4 | return 1; 5 | } 6 | -------------------------------------------------------------------------------- /elkscmd/sh_utils/mesg.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghaerr/elks/HEAD/elkscmd/sh_utils/mesg.c -------------------------------------------------------------------------------- /elkscmd/sh_utils/pwd.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghaerr/elks/HEAD/elkscmd/sh_utils/pwd.c -------------------------------------------------------------------------------- /elkscmd/sh_utils/stty.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghaerr/elks/HEAD/elkscmd/sh_utils/stty.c -------------------------------------------------------------------------------- /elkscmd/sh_utils/test.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghaerr/elks/HEAD/elkscmd/sh_utils/test.c -------------------------------------------------------------------------------- /elkscmd/sh_utils/tr.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghaerr/elks/HEAD/elkscmd/sh_utils/tr.c -------------------------------------------------------------------------------- /elkscmd/sh_utils/true.c: -------------------------------------------------------------------------------- 1 | int 2 | main(int ac, char **av) 3 | { 4 | return 0; 5 | } 6 | -------------------------------------------------------------------------------- /elkscmd/sh_utils/yes.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghaerr/elks/HEAD/elkscmd/sh_utils/yes.c -------------------------------------------------------------------------------- /elkscmd/sys_utils/knl.8: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghaerr/elks/HEAD/elkscmd/sys_utils/knl.8 -------------------------------------------------------------------------------- /elkscmd/sys_utils/knl.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghaerr/elks/HEAD/elkscmd/sys_utils/knl.c -------------------------------------------------------------------------------- /elkscmd/sys_utils/man.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghaerr/elks/HEAD/elkscmd/sys_utils/man.c -------------------------------------------------------------------------------- /elkscmd/sys_utils/ps.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghaerr/elks/HEAD/elkscmd/sys_utils/ps.c -------------------------------------------------------------------------------- /elkscmd/sys_utils/who.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghaerr/elks/HEAD/elkscmd/sys_utils/who.c -------------------------------------------------------------------------------- /elkscmd/test/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghaerr/elks/HEAD/elkscmd/test/.gitignore -------------------------------------------------------------------------------- /elkscmd/test/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghaerr/elks/HEAD/elkscmd/test/Makefile -------------------------------------------------------------------------------- /elkscmd/test/cgatext/.gitignore: -------------------------------------------------------------------------------- 1 | cgatext 2 | *~ 3 | -------------------------------------------------------------------------------- /elkscmd/test/echo/.gitignore: -------------------------------------------------------------------------------- 1 | echoserver 2 | echoclient 3 | -------------------------------------------------------------------------------- /elkscmd/tui/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghaerr/elks/HEAD/elkscmd/tui/.gitignore -------------------------------------------------------------------------------- /elkscmd/tui/LICENSE.fm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghaerr/elks/HEAD/elkscmd/tui/LICENSE.fm -------------------------------------------------------------------------------- /elkscmd/tui/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghaerr/elks/HEAD/elkscmd/tui/Makefile -------------------------------------------------------------------------------- /elkscmd/tui/cons.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghaerr/elks/HEAD/elkscmd/tui/cons.c -------------------------------------------------------------------------------- /elkscmd/tui/curses.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghaerr/elks/HEAD/elkscmd/tui/curses.c -------------------------------------------------------------------------------- /elkscmd/tui/curses.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghaerr/elks/HEAD/elkscmd/tui/curses.h -------------------------------------------------------------------------------- /elkscmd/tui/curses2.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghaerr/elks/HEAD/elkscmd/tui/curses2.c -------------------------------------------------------------------------------- /elkscmd/tui/curses3.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghaerr/elks/HEAD/elkscmd/tui/curses3.c -------------------------------------------------------------------------------- /elkscmd/tui/dmalloc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghaerr/elks/HEAD/elkscmd/tui/dmalloc.c -------------------------------------------------------------------------------- /elkscmd/tui/fm.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghaerr/elks/HEAD/elkscmd/tui/fm.c -------------------------------------------------------------------------------- /elkscmd/tui/fm.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghaerr/elks/HEAD/elkscmd/tui/fm.h -------------------------------------------------------------------------------- /elkscmd/tui/invaders.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghaerr/elks/HEAD/elkscmd/tui/invaders.c -------------------------------------------------------------------------------- /elkscmd/tui/invaders.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghaerr/elks/HEAD/elkscmd/tui/invaders.h -------------------------------------------------------------------------------- /elkscmd/tui/kcp437.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghaerr/elks/HEAD/elkscmd/tui/kcp437.c -------------------------------------------------------------------------------- /elkscmd/tui/matrix.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghaerr/elks/HEAD/elkscmd/tui/matrix.c -------------------------------------------------------------------------------- /elkscmd/tui/realpath.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghaerr/elks/HEAD/elkscmd/tui/realpath.c -------------------------------------------------------------------------------- /elkscmd/tui/realpath2.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghaerr/elks/HEAD/elkscmd/tui/realpath2.c -------------------------------------------------------------------------------- /elkscmd/tui/runes.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghaerr/elks/HEAD/elkscmd/tui/runes.c -------------------------------------------------------------------------------- /elkscmd/tui/runes.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghaerr/elks/HEAD/elkscmd/tui/runes.h -------------------------------------------------------------------------------- /elkscmd/tui/sl.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghaerr/elks/HEAD/elkscmd/tui/sl.c -------------------------------------------------------------------------------- /elkscmd/tui/sl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghaerr/elks/HEAD/elkscmd/tui/sl.h -------------------------------------------------------------------------------- /elkscmd/tui/strlcat.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghaerr/elks/HEAD/elkscmd/tui/strlcat.c -------------------------------------------------------------------------------- /elkscmd/tui/strlcpy.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghaerr/elks/HEAD/elkscmd/tui/strlcpy.c -------------------------------------------------------------------------------- /elkscmd/tui/tty-cp437.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghaerr/elks/HEAD/elkscmd/tui/tty-cp437.c -------------------------------------------------------------------------------- /elkscmd/tui/tty.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghaerr/elks/HEAD/elkscmd/tui/tty.c -------------------------------------------------------------------------------- /elkscmd/tui/ttyclock.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghaerr/elks/HEAD/elkscmd/tui/ttyclock.c -------------------------------------------------------------------------------- /elkscmd/tui/ttyclock.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghaerr/elks/HEAD/elkscmd/tui/ttyclock.h -------------------------------------------------------------------------------- /elkscmd/tui/ttyinfo.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghaerr/elks/HEAD/elkscmd/tui/ttyinfo.c -------------------------------------------------------------------------------- /elkscmd/tui/ttypong.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghaerr/elks/HEAD/elkscmd/tui/ttypong.c -------------------------------------------------------------------------------- /elkscmd/tui/ttypong.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghaerr/elks/HEAD/elkscmd/tui/ttypong.h -------------------------------------------------------------------------------- /elkscmd/tui/ttytetris.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghaerr/elks/HEAD/elkscmd/tui/ttytetris.c -------------------------------------------------------------------------------- /elkscmd/tui/ttytetris.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghaerr/elks/HEAD/elkscmd/tui/ttytetris.h -------------------------------------------------------------------------------- /elkscmd/tui/unikey.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghaerr/elks/HEAD/elkscmd/tui/unikey.c -------------------------------------------------------------------------------- /elkscmd/tui/unikey.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghaerr/elks/HEAD/elkscmd/tui/unikey.h -------------------------------------------------------------------------------- /elkscmd/tui/util.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghaerr/elks/HEAD/elkscmd/tui/util.h -------------------------------------------------------------------------------- /elkscmd/unused/byacc/.gitignore: -------------------------------------------------------------------------------- 1 | yacc 2 | -------------------------------------------------------------------------------- /elkscmd/unused/m4/.gitignore: -------------------------------------------------------------------------------- 1 | m4 2 | -------------------------------------------------------------------------------- /elkscmd/unused/m4/m4.1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghaerr/elks/HEAD/elkscmd/unused/m4/m4.1 -------------------------------------------------------------------------------- /elkscmd/unused/prems/prem/alloc.h: -------------------------------------------------------------------------------- 1 | #include 2 | -------------------------------------------------------------------------------- /elkscmd/unused/prems/pres/.gitignore: -------------------------------------------------------------------------------- 1 | flparc 2 | pres 3 | -------------------------------------------------------------------------------- /elkscmd/unused/prems/pres/alloc.h: -------------------------------------------------------------------------------- 1 | #include 2 | -------------------------------------------------------------------------------- /elkscmd/unused/prems/pres/ediag.h: -------------------------------------------------------------------------------- 1 | #define ediag( en, eo ) (en) 2 | -------------------------------------------------------------------------------- /elksemu/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghaerr/elks/HEAD/elksemu/.gitignore -------------------------------------------------------------------------------- /elksemu/COPYING: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghaerr/elks/HEAD/elksemu/COPYING -------------------------------------------------------------------------------- /elksemu/Kernel_patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghaerr/elks/HEAD/elksemu/Kernel_patch -------------------------------------------------------------------------------- /elksemu/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghaerr/elks/HEAD/elksemu/Makefile -------------------------------------------------------------------------------- /elksemu/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghaerr/elks/HEAD/elksemu/README -------------------------------------------------------------------------------- /elksemu/Security: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghaerr/elks/HEAD/elksemu/Security -------------------------------------------------------------------------------- /elksemu/binfmt_elks.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghaerr/elks/HEAD/elksemu/binfmt_elks.c -------------------------------------------------------------------------------- /elksemu/elks.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghaerr/elks/HEAD/elksemu/elks.c -------------------------------------------------------------------------------- /elksemu/elks.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghaerr/elks/HEAD/elksemu/elks.h -------------------------------------------------------------------------------- /elksemu/elks_pid.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghaerr/elks/HEAD/elksemu/elks_pid.c -------------------------------------------------------------------------------- /elksemu/elks_signal.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghaerr/elks/HEAD/elksemu/elks_signal.c -------------------------------------------------------------------------------- /elksemu/elks_sys.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghaerr/elks/HEAD/elksemu/elks_sys.c -------------------------------------------------------------------------------- /elksemu/minix.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghaerr/elks/HEAD/elksemu/minix.c -------------------------------------------------------------------------------- /elksemu/mkefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghaerr/elks/HEAD/elksemu/mkefile -------------------------------------------------------------------------------- /emu86-disk.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghaerr/elks/HEAD/emu86-disk.config -------------------------------------------------------------------------------- /emu86-rom-full.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghaerr/elks/HEAD/emu86-rom-full.config -------------------------------------------------------------------------------- /emu86-rom.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghaerr/elks/HEAD/emu86-rom.config -------------------------------------------------------------------------------- /emu86.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghaerr/elks/HEAD/emu86.sh -------------------------------------------------------------------------------- /emuswan.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghaerr/elks/HEAD/emuswan.sh -------------------------------------------------------------------------------- /env.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghaerr/elks/HEAD/env.sh -------------------------------------------------------------------------------- /ibmpc-1440-nc.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghaerr/elks/HEAD/ibmpc-1440-nc.config -------------------------------------------------------------------------------- /ibmpc-1440.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghaerr/elks/HEAD/ibmpc-1440.config -------------------------------------------------------------------------------- /image/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghaerr/elks/HEAD/image/.gitignore -------------------------------------------------------------------------------- /image/Image.all: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghaerr/elks/HEAD/image/Image.all -------------------------------------------------------------------------------- /image/Make.defs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghaerr/elks/HEAD/image/Make.defs -------------------------------------------------------------------------------- /image/Make.devices: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghaerr/elks/HEAD/image/Make.devices -------------------------------------------------------------------------------- /image/Make.image: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghaerr/elks/HEAD/image/Make.image -------------------------------------------------------------------------------- /image/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghaerr/elks/HEAD/image/Makefile -------------------------------------------------------------------------------- /image/config.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghaerr/elks/HEAD/image/config.in -------------------------------------------------------------------------------- /image/ver.pl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghaerr/elks/HEAD/image/ver.pl -------------------------------------------------------------------------------- /include/.gitignore: -------------------------------------------------------------------------------- 1 | autoconf.h 2 | -------------------------------------------------------------------------------- /include/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghaerr/elks/HEAD/include/Makefile -------------------------------------------------------------------------------- /libc/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghaerr/elks/HEAD/libc/.gitignore -------------------------------------------------------------------------------- /libc/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghaerr/elks/HEAD/libc/Makefile -------------------------------------------------------------------------------- /libc/asm/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghaerr/elks/HEAD/libc/asm/Makefile -------------------------------------------------------------------------------- /libc/asm/divmod.S: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghaerr/elks/HEAD/libc/asm/divmod.S -------------------------------------------------------------------------------- /libc/asm/memcmp-s.S: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghaerr/elks/HEAD/libc/asm/memcmp-s.S -------------------------------------------------------------------------------- /libc/asm/memcpy-s.S: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghaerr/elks/HEAD/libc/asm/memcpy-s.S -------------------------------------------------------------------------------- /libc/asm/memset-s.S: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghaerr/elks/HEAD/libc/asm/memset-s.S -------------------------------------------------------------------------------- /libc/asm/strcmp-s.S: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghaerr/elks/HEAD/libc/asm/strcmp-s.S -------------------------------------------------------------------------------- /libc/asm/strcpy-s.S: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghaerr/elks/HEAD/libc/asm/strcpy-s.S -------------------------------------------------------------------------------- /libc/asm/strlen-s.S: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghaerr/elks/HEAD/libc/asm/strlen-s.S -------------------------------------------------------------------------------- /libc/c86.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghaerr/elks/HEAD/libc/c86.inc -------------------------------------------------------------------------------- /libc/c86.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghaerr/elks/HEAD/libc/c86.mk -------------------------------------------------------------------------------- /libc/c86/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghaerr/elks/HEAD/libc/c86/Makefile -------------------------------------------------------------------------------- /libc/c86/c86lib.asm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghaerr/elks/HEAD/libc/c86/c86lib.asm -------------------------------------------------------------------------------- /libc/c86/c86lib.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghaerr/elks/HEAD/libc/c86/c86lib.s -------------------------------------------------------------------------------- /libc/c86/divmod.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghaerr/elks/HEAD/libc/c86/divmod.s -------------------------------------------------------------------------------- /libc/c86/signalcb.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghaerr/elks/HEAD/libc/c86/signalcb.s -------------------------------------------------------------------------------- /libc/c86/stackavail.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghaerr/elks/HEAD/libc/c86/stackavail.c -------------------------------------------------------------------------------- /libc/c86/syscall.asm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghaerr/elks/HEAD/libc/c86/syscall.asm -------------------------------------------------------------------------------- /libc/c86/syscall.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghaerr/elks/HEAD/libc/c86/syscall.s -------------------------------------------------------------------------------- /libc/c86/syscall2.asm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghaerr/elks/HEAD/libc/c86/syscall2.asm -------------------------------------------------------------------------------- /libc/c86/syscall2.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghaerr/elks/HEAD/libc/c86/syscall2.s -------------------------------------------------------------------------------- /libc/c86env.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghaerr/elks/HEAD/libc/c86env.sh -------------------------------------------------------------------------------- /libc/crt0.S: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghaerr/elks/HEAD/libc/crt0.S -------------------------------------------------------------------------------- /libc/ctype/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghaerr/elks/HEAD/libc/ctype/LICENSE -------------------------------------------------------------------------------- /libc/ctype/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghaerr/elks/HEAD/libc/ctype/Makefile -------------------------------------------------------------------------------- /libc/ctype/ctype.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghaerr/elks/HEAD/libc/ctype/ctype.c -------------------------------------------------------------------------------- /libc/ctype/isalnum.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghaerr/elks/HEAD/libc/ctype/isalnum.c -------------------------------------------------------------------------------- /libc/ctype/isalpha.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghaerr/elks/HEAD/libc/ctype/isalpha.c -------------------------------------------------------------------------------- /libc/ctype/isascii.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghaerr/elks/HEAD/libc/ctype/isascii.c -------------------------------------------------------------------------------- /libc/ctype/isblank.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghaerr/elks/HEAD/libc/ctype/isblank.c -------------------------------------------------------------------------------- /libc/ctype/isdigit.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghaerr/elks/HEAD/libc/ctype/isdigit.c -------------------------------------------------------------------------------- /libc/ctype/islower.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghaerr/elks/HEAD/libc/ctype/islower.c -------------------------------------------------------------------------------- /libc/ctype/isprint.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghaerr/elks/HEAD/libc/ctype/isprint.c -------------------------------------------------------------------------------- /libc/ctype/ispunct.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghaerr/elks/HEAD/libc/ctype/ispunct.c -------------------------------------------------------------------------------- /libc/ctype/isupper.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghaerr/elks/HEAD/libc/ctype/isupper.c -------------------------------------------------------------------------------- /libc/ctype/tolower.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghaerr/elks/HEAD/libc/ctype/tolower.c -------------------------------------------------------------------------------- /libc/ctype/toupper.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghaerr/elks/HEAD/libc/ctype/toupper.c -------------------------------------------------------------------------------- /libc/debug/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghaerr/elks/HEAD/libc/debug/Makefile -------------------------------------------------------------------------------- /libc/debug/rdtsc.S: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghaerr/elks/HEAD/libc/debug/rdtsc.S -------------------------------------------------------------------------------- /libc/debug/syms.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghaerr/elks/HEAD/libc/debug/syms.c -------------------------------------------------------------------------------- /libc/error/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghaerr/elks/HEAD/libc/error/Makefile -------------------------------------------------------------------------------- /libc/error/error.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghaerr/elks/HEAD/libc/error/error.c -------------------------------------------------------------------------------- /libc/error/perror: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghaerr/elks/HEAD/libc/error/perror -------------------------------------------------------------------------------- /libc/error/perror.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghaerr/elks/HEAD/libc/error/perror.c -------------------------------------------------------------------------------- /libc/gcc/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghaerr/elks/HEAD/libc/gcc/Makefile -------------------------------------------------------------------------------- /libc/gcc/ashlsi3.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghaerr/elks/HEAD/libc/gcc/ashlsi3.s -------------------------------------------------------------------------------- /libc/gcc/divmodsi3.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghaerr/elks/HEAD/libc/gcc/divmodsi3.s -------------------------------------------------------------------------------- /libc/gcc/ldivmod.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghaerr/elks/HEAD/libc/gcc/ldivmod.s -------------------------------------------------------------------------------- /libc/getent/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghaerr/elks/HEAD/libc/getent/Makefile -------------------------------------------------------------------------------- /libc/getent/grent.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghaerr/elks/HEAD/libc/getent/grent.c -------------------------------------------------------------------------------- /libc/getent/pwent.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghaerr/elks/HEAD/libc/getent/pwent.c -------------------------------------------------------------------------------- /libc/getent/utent.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghaerr/elks/HEAD/libc/getent/utent.c -------------------------------------------------------------------------------- /libc/ia16.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghaerr/elks/HEAD/libc/ia16.inc -------------------------------------------------------------------------------- /libc/include/ctype.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghaerr/elks/HEAD/libc/include/ctype.h -------------------------------------------------------------------------------- /libc/include/errno.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghaerr/elks/HEAD/libc/include/errno.h -------------------------------------------------------------------------------- /libc/include/fcntl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghaerr/elks/HEAD/libc/include/fcntl.h -------------------------------------------------------------------------------- /libc/include/grp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghaerr/elks/HEAD/libc/include/grp.h -------------------------------------------------------------------------------- /libc/include/math.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghaerr/elks/HEAD/libc/include/math.h -------------------------------------------------------------------------------- /libc/include/netdb.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghaerr/elks/HEAD/libc/include/netdb.h -------------------------------------------------------------------------------- /libc/include/paths.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghaerr/elks/HEAD/libc/include/paths.h -------------------------------------------------------------------------------- /libc/include/pwd.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghaerr/elks/HEAD/libc/include/pwd.h -------------------------------------------------------------------------------- /libc/include/regex.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghaerr/elks/HEAD/libc/include/regex.h -------------------------------------------------------------------------------- /libc/include/stdio.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghaerr/elks/HEAD/libc/include/stdio.h -------------------------------------------------------------------------------- /libc/include/time.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghaerr/elks/HEAD/libc/include/time.h -------------------------------------------------------------------------------- /libc/include/utime.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghaerr/elks/HEAD/libc/include/utime.h -------------------------------------------------------------------------------- /libc/include/utmp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghaerr/elks/HEAD/libc/include/utmp.h -------------------------------------------------------------------------------- /libc/malloc/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghaerr/elks/HEAD/libc/malloc/Makefile -------------------------------------------------------------------------------- /libc/malloc/alloca.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghaerr/elks/HEAD/libc/malloc/alloca.c -------------------------------------------------------------------------------- /libc/malloc/brk.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghaerr/elks/HEAD/libc/malloc/brk.c -------------------------------------------------------------------------------- /libc/malloc/calloc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghaerr/elks/HEAD/libc/malloc/calloc.c -------------------------------------------------------------------------------- /libc/malloc/free.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghaerr/elks/HEAD/libc/malloc/free.c -------------------------------------------------------------------------------- /libc/malloc/malloc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghaerr/elks/HEAD/libc/malloc/malloc.c -------------------------------------------------------------------------------- /libc/malloc/noise.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghaerr/elks/HEAD/libc/malloc/noise.c -------------------------------------------------------------------------------- /libc/malloc/sbrk.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghaerr/elks/HEAD/libc/malloc/sbrk.c -------------------------------------------------------------------------------- /libc/math/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghaerr/elks/HEAD/libc/math/Makefile -------------------------------------------------------------------------------- /libc/math/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghaerr/elks/HEAD/libc/math/README -------------------------------------------------------------------------------- /libc/math/e_acos.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghaerr/elks/HEAD/libc/math/e_acos.c -------------------------------------------------------------------------------- /libc/math/e_acosf.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghaerr/elks/HEAD/libc/math/e_acosf.c -------------------------------------------------------------------------------- /libc/math/e_asin.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghaerr/elks/HEAD/libc/math/e_asin.c -------------------------------------------------------------------------------- /libc/math/e_asinf.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghaerr/elks/HEAD/libc/math/e_asinf.c -------------------------------------------------------------------------------- /libc/math/e_exp.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghaerr/elks/HEAD/libc/math/e_exp.c -------------------------------------------------------------------------------- /libc/math/e_expf.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghaerr/elks/HEAD/libc/math/e_expf.c -------------------------------------------------------------------------------- /libc/math/e_log.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghaerr/elks/HEAD/libc/math/e_log.c -------------------------------------------------------------------------------- /libc/math/e_log10.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghaerr/elks/HEAD/libc/math/e_log10.c -------------------------------------------------------------------------------- /libc/math/e_log10f.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghaerr/elks/HEAD/libc/math/e_log10f.c -------------------------------------------------------------------------------- /libc/math/e_logf.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghaerr/elks/HEAD/libc/math/e_logf.c -------------------------------------------------------------------------------- /libc/math/e_pow.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghaerr/elks/HEAD/libc/math/e_pow.c -------------------------------------------------------------------------------- /libc/math/e_powf.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghaerr/elks/HEAD/libc/math/e_powf.c -------------------------------------------------------------------------------- /libc/math/e_sqrt.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghaerr/elks/HEAD/libc/math/e_sqrt.c -------------------------------------------------------------------------------- /libc/math/e_sqrtf.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghaerr/elks/HEAD/libc/math/e_sqrtf.c -------------------------------------------------------------------------------- /libc/math/fpmath.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghaerr/elks/HEAD/libc/math/fpmath.h -------------------------------------------------------------------------------- /libc/math/k_cos.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghaerr/elks/HEAD/libc/math/k_cos.c -------------------------------------------------------------------------------- /libc/math/k_cosf.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghaerr/elks/HEAD/libc/math/k_cosf.c -------------------------------------------------------------------------------- /libc/math/k_log.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghaerr/elks/HEAD/libc/math/k_log.h -------------------------------------------------------------------------------- /libc/math/k_logf.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghaerr/elks/HEAD/libc/math/k_logf.h -------------------------------------------------------------------------------- /libc/math/k_sin.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghaerr/elks/HEAD/libc/math/k_sin.c -------------------------------------------------------------------------------- /libc/math/k_sinf.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghaerr/elks/HEAD/libc/math/k_sinf.c -------------------------------------------------------------------------------- /libc/math/k_tan.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghaerr/elks/HEAD/libc/math/k_tan.c -------------------------------------------------------------------------------- /libc/math/k_tanf.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghaerr/elks/HEAD/libc/math/k_tanf.c -------------------------------------------------------------------------------- /libc/math/s_atan.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghaerr/elks/HEAD/libc/math/s_atan.c -------------------------------------------------------------------------------- /libc/math/s_atanf.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghaerr/elks/HEAD/libc/math/s_atanf.c -------------------------------------------------------------------------------- /libc/math/s_cos.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghaerr/elks/HEAD/libc/math/s_cos.c -------------------------------------------------------------------------------- /libc/math/s_cosf.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghaerr/elks/HEAD/libc/math/s_cosf.c -------------------------------------------------------------------------------- /libc/math/s_fabs.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghaerr/elks/HEAD/libc/math/s_fabs.c -------------------------------------------------------------------------------- /libc/math/s_fabsf.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghaerr/elks/HEAD/libc/math/s_fabsf.c -------------------------------------------------------------------------------- /libc/math/s_floor.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghaerr/elks/HEAD/libc/math/s_floor.c -------------------------------------------------------------------------------- /libc/math/s_floorf.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghaerr/elks/HEAD/libc/math/s_floorf.c -------------------------------------------------------------------------------- /libc/math/s_fmaxf.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghaerr/elks/HEAD/libc/math/s_fmaxf.c -------------------------------------------------------------------------------- /libc/math/s_fminf.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghaerr/elks/HEAD/libc/math/s_fminf.c -------------------------------------------------------------------------------- /libc/math/s_modf.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghaerr/elks/HEAD/libc/math/s_modf.c -------------------------------------------------------------------------------- /libc/math/s_modff.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghaerr/elks/HEAD/libc/math/s_modff.c -------------------------------------------------------------------------------- /libc/math/s_scalbn.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghaerr/elks/HEAD/libc/math/s_scalbn.c -------------------------------------------------------------------------------- /libc/math/s_sin.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghaerr/elks/HEAD/libc/math/s_sin.c -------------------------------------------------------------------------------- /libc/math/s_sinf.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghaerr/elks/HEAD/libc/math/s_sinf.c -------------------------------------------------------------------------------- /libc/math/s_tan.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghaerr/elks/HEAD/libc/math/s_tan.c -------------------------------------------------------------------------------- /libc/math/s_tanf.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghaerr/elks/HEAD/libc/math/s_tanf.c -------------------------------------------------------------------------------- /libc/misc/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghaerr/elks/HEAD/libc/misc/Makefile -------------------------------------------------------------------------------- /libc/misc/abs.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghaerr/elks/HEAD/libc/misc/abs.c -------------------------------------------------------------------------------- /libc/misc/aliases.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghaerr/elks/HEAD/libc/misc/aliases.c -------------------------------------------------------------------------------- /libc/misc/atexit.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghaerr/elks/HEAD/libc/misc/atexit.c -------------------------------------------------------------------------------- /libc/misc/atof.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghaerr/elks/HEAD/libc/misc/atof.c -------------------------------------------------------------------------------- /libc/misc/atoi.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghaerr/elks/HEAD/libc/misc/atoi.c -------------------------------------------------------------------------------- /libc/misc/atol.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghaerr/elks/HEAD/libc/misc/atol.c -------------------------------------------------------------------------------- /libc/misc/basename.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghaerr/elks/HEAD/libc/misc/basename.c -------------------------------------------------------------------------------- /libc/misc/bsr.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghaerr/elks/HEAD/libc/misc/bsr.c -------------------------------------------------------------------------------- /libc/misc/crypt.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghaerr/elks/HEAD/libc/misc/crypt.c -------------------------------------------------------------------------------- /libc/misc/devname.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghaerr/elks/HEAD/libc/misc/devname.c -------------------------------------------------------------------------------- /libc/misc/dirname.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghaerr/elks/HEAD/libc/misc/dirname.c -------------------------------------------------------------------------------- /libc/misc/dtostr.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghaerr/elks/HEAD/libc/misc/dtostr.c -------------------------------------------------------------------------------- /libc/misc/ecvt.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghaerr/elks/HEAD/libc/misc/ecvt.c -------------------------------------------------------------------------------- /libc/misc/getcwd.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghaerr/elks/HEAD/libc/misc/getcwd.c -------------------------------------------------------------------------------- /libc/misc/getenv.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghaerr/elks/HEAD/libc/misc/getenv.c -------------------------------------------------------------------------------- /libc/misc/getopt.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghaerr/elks/HEAD/libc/misc/getopt.c -------------------------------------------------------------------------------- /libc/misc/getpass.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghaerr/elks/HEAD/libc/misc/getpass.c -------------------------------------------------------------------------------- /libc/misc/itoa.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghaerr/elks/HEAD/libc/misc/itoa.c -------------------------------------------------------------------------------- /libc/misc/lltostr.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghaerr/elks/HEAD/libc/misc/lltostr.c -------------------------------------------------------------------------------- /libc/misc/ltoa.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghaerr/elks/HEAD/libc/misc/ltoa.c -------------------------------------------------------------------------------- /libc/misc/ltostr.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghaerr/elks/HEAD/libc/misc/ltostr.c -------------------------------------------------------------------------------- /libc/misc/mktemp.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghaerr/elks/HEAD/libc/misc/mktemp.c -------------------------------------------------------------------------------- /libc/misc/popen.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghaerr/elks/HEAD/libc/misc/popen.c -------------------------------------------------------------------------------- /libc/misc/ptostr.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghaerr/elks/HEAD/libc/misc/ptostr.c -------------------------------------------------------------------------------- /libc/misc/putenv.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghaerr/elks/HEAD/libc/misc/putenv.c -------------------------------------------------------------------------------- /libc/misc/qsort.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghaerr/elks/HEAD/libc/misc/qsort.c -------------------------------------------------------------------------------- /libc/misc/rand.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghaerr/elks/HEAD/libc/misc/rand.c -------------------------------------------------------------------------------- /libc/misc/strtod.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghaerr/elks/HEAD/libc/misc/strtod.c -------------------------------------------------------------------------------- /libc/misc/strtol.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghaerr/elks/HEAD/libc/misc/strtol.c -------------------------------------------------------------------------------- /libc/misc/strtoul.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghaerr/elks/HEAD/libc/misc/strtoul.c -------------------------------------------------------------------------------- /libc/misc/system.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghaerr/elks/HEAD/libc/misc/system.c -------------------------------------------------------------------------------- /libc/misc/tmpnam.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghaerr/elks/HEAD/libc/misc/tmpnam.c -------------------------------------------------------------------------------- /libc/misc/uitoa.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghaerr/elks/HEAD/libc/misc/uitoa.c -------------------------------------------------------------------------------- /libc/misc/ulltostr.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghaerr/elks/HEAD/libc/misc/ulltostr.c -------------------------------------------------------------------------------- /libc/misc/ultoa.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghaerr/elks/HEAD/libc/misc/ultoa.c -------------------------------------------------------------------------------- /libc/misc/ultostr.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghaerr/elks/HEAD/libc/misc/ultostr.c -------------------------------------------------------------------------------- /libc/misc/wildcard.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghaerr/elks/HEAD/libc/misc/wildcard.c -------------------------------------------------------------------------------- /libc/net/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghaerr/elks/HEAD/libc/net/Makefile -------------------------------------------------------------------------------- /libc/net/in_aton.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghaerr/elks/HEAD/libc/net/in_aton.c -------------------------------------------------------------------------------- /libc/net/in_ntoa.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghaerr/elks/HEAD/libc/net/in_ntoa.c -------------------------------------------------------------------------------- /libc/net/in_resolv.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghaerr/elks/HEAD/libc/net/in_resolv.c -------------------------------------------------------------------------------- /libc/regex/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghaerr/elks/HEAD/libc/regex/Makefile -------------------------------------------------------------------------------- /libc/regex/regex.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghaerr/elks/HEAD/libc/regex/regex.c -------------------------------------------------------------------------------- /libc/stdio/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghaerr/elks/HEAD/libc/stdio/Makefile -------------------------------------------------------------------------------- /libc/stdio/__fopen.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghaerr/elks/HEAD/libc/stdio/__fopen.c -------------------------------------------------------------------------------- /libc/stdio/fclose.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghaerr/elks/HEAD/libc/stdio/fclose.c -------------------------------------------------------------------------------- /libc/stdio/fdopen.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghaerr/elks/HEAD/libc/stdio/fdopen.c -------------------------------------------------------------------------------- /libc/stdio/fflush.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghaerr/elks/HEAD/libc/stdio/fflush.c -------------------------------------------------------------------------------- /libc/stdio/fgetc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghaerr/elks/HEAD/libc/stdio/fgetc.c -------------------------------------------------------------------------------- /libc/stdio/fgets.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghaerr/elks/HEAD/libc/stdio/fgets.c -------------------------------------------------------------------------------- /libc/stdio/fopen.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghaerr/elks/HEAD/libc/stdio/fopen.c -------------------------------------------------------------------------------- /libc/stdio/fprintf.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghaerr/elks/HEAD/libc/stdio/fprintf.c -------------------------------------------------------------------------------- /libc/stdio/fputc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghaerr/elks/HEAD/libc/stdio/fputc.c -------------------------------------------------------------------------------- /libc/stdio/fputs.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghaerr/elks/HEAD/libc/stdio/fputs.c -------------------------------------------------------------------------------- /libc/stdio/fread.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghaerr/elks/HEAD/libc/stdio/fread.c -------------------------------------------------------------------------------- /libc/stdio/freopen.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghaerr/elks/HEAD/libc/stdio/freopen.c -------------------------------------------------------------------------------- /libc/stdio/fscanf.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghaerr/elks/HEAD/libc/stdio/fscanf.c -------------------------------------------------------------------------------- /libc/stdio/fseek.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghaerr/elks/HEAD/libc/stdio/fseek.c -------------------------------------------------------------------------------- /libc/stdio/ftell.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghaerr/elks/HEAD/libc/stdio/ftell.c -------------------------------------------------------------------------------- /libc/stdio/fwrite.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghaerr/elks/HEAD/libc/stdio/fwrite.c -------------------------------------------------------------------------------- /libc/stdio/getline.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghaerr/elks/HEAD/libc/stdio/getline.c -------------------------------------------------------------------------------- /libc/stdio/gets.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghaerr/elks/HEAD/libc/stdio/gets.c -------------------------------------------------------------------------------- /libc/stdio/init.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghaerr/elks/HEAD/libc/stdio/init.c -------------------------------------------------------------------------------- /libc/stdio/printf.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghaerr/elks/HEAD/libc/stdio/printf.c -------------------------------------------------------------------------------- /libc/stdio/putchar.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghaerr/elks/HEAD/libc/stdio/putchar.c -------------------------------------------------------------------------------- /libc/stdio/puts.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghaerr/elks/HEAD/libc/stdio/puts.c -------------------------------------------------------------------------------- /libc/stdio/rewind.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghaerr/elks/HEAD/libc/stdio/rewind.c -------------------------------------------------------------------------------- /libc/stdio/scanf.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghaerr/elks/HEAD/libc/stdio/scanf.c -------------------------------------------------------------------------------- /libc/stdio/setvbuf.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghaerr/elks/HEAD/libc/stdio/setvbuf.c -------------------------------------------------------------------------------- /libc/stdio/sprintf.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghaerr/elks/HEAD/libc/stdio/sprintf.c -------------------------------------------------------------------------------- /libc/stdio/sscanf.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghaerr/elks/HEAD/libc/stdio/sscanf.c -------------------------------------------------------------------------------- /libc/stdio/stderr.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghaerr/elks/HEAD/libc/stdio/stderr.c -------------------------------------------------------------------------------- /libc/stdio/stdin.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghaerr/elks/HEAD/libc/stdio/stdin.c -------------------------------------------------------------------------------- /libc/stdio/stdout.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghaerr/elks/HEAD/libc/stdio/stdout.c -------------------------------------------------------------------------------- /libc/stdio/ungetc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghaerr/elks/HEAD/libc/stdio/ungetc.c -------------------------------------------------------------------------------- /libc/stdio/vfscanf.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghaerr/elks/HEAD/libc/stdio/vfscanf.c -------------------------------------------------------------------------------- /libc/stdio/vprintf.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghaerr/elks/HEAD/libc/stdio/vprintf.c -------------------------------------------------------------------------------- /libc/stdio/vscanf.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghaerr/elks/HEAD/libc/stdio/vscanf.c -------------------------------------------------------------------------------- /libc/stdio/vsscanf.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghaerr/elks/HEAD/libc/stdio/vsscanf.c -------------------------------------------------------------------------------- /libc/string/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghaerr/elks/HEAD/libc/string/Makefile -------------------------------------------------------------------------------- /libc/string/bzero.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghaerr/elks/HEAD/libc/string/bzero.c -------------------------------------------------------------------------------- /libc/string/memchr.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghaerr/elks/HEAD/libc/string/memchr.c -------------------------------------------------------------------------------- /libc/string/memcmp.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghaerr/elks/HEAD/libc/string/memcmp.c -------------------------------------------------------------------------------- /libc/string/strcat.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghaerr/elks/HEAD/libc/string/strcat.c -------------------------------------------------------------------------------- /libc/string/strchr.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghaerr/elks/HEAD/libc/string/strchr.c -------------------------------------------------------------------------------- /libc/string/strdup.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghaerr/elks/HEAD/libc/string/strdup.c -------------------------------------------------------------------------------- /libc/string/strlwr.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghaerr/elks/HEAD/libc/string/strlwr.c -------------------------------------------------------------------------------- /libc/string/strspn.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghaerr/elks/HEAD/libc/string/strspn.c -------------------------------------------------------------------------------- /libc/string/strstr.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghaerr/elks/HEAD/libc/string/strstr.c -------------------------------------------------------------------------------- /libc/string/strtok.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghaerr/elks/HEAD/libc/string/strtok.c -------------------------------------------------------------------------------- /libc/string/strupr.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghaerr/elks/HEAD/libc/string/strupr.c -------------------------------------------------------------------------------- /libc/system/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghaerr/elks/HEAD/libc/system/Makefile -------------------------------------------------------------------------------- /libc/system/abort.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghaerr/elks/HEAD/libc/system/abort.c -------------------------------------------------------------------------------- /libc/system/dup.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghaerr/elks/HEAD/libc/system/dup.c -------------------------------------------------------------------------------- /libc/system/dup2.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghaerr/elks/HEAD/libc/system/dup2.c -------------------------------------------------------------------------------- /libc/system/errno.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghaerr/elks/HEAD/libc/system/errno.c -------------------------------------------------------------------------------- /libc/system/execl.S: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghaerr/elks/HEAD/libc/system/execl.S -------------------------------------------------------------------------------- /libc/system/execle.S: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghaerr/elks/HEAD/libc/system/execle.S -------------------------------------------------------------------------------- /libc/system/execlp.S: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghaerr/elks/HEAD/libc/system/execlp.S -------------------------------------------------------------------------------- /libc/system/execv.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghaerr/elks/HEAD/libc/system/execv.c -------------------------------------------------------------------------------- /libc/system/execve.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghaerr/elks/HEAD/libc/system/execve.c -------------------------------------------------------------------------------- /libc/system/execvp.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghaerr/elks/HEAD/libc/system/execvp.c -------------------------------------------------------------------------------- /libc/system/getgid.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghaerr/elks/HEAD/libc/system/getgid.c -------------------------------------------------------------------------------- /libc/system/getpid.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghaerr/elks/HEAD/libc/system/getpid.c -------------------------------------------------------------------------------- /libc/system/getuid.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghaerr/elks/HEAD/libc/system/getuid.c -------------------------------------------------------------------------------- /libc/system/killpg.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghaerr/elks/HEAD/libc/system/killpg.c -------------------------------------------------------------------------------- /libc/system/lseek.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghaerr/elks/HEAD/libc/system/lseek.c -------------------------------------------------------------------------------- /libc/system/mkfifo.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghaerr/elks/HEAD/libc/system/mkfifo.c -------------------------------------------------------------------------------- /libc/system/out.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghaerr/elks/HEAD/libc/system/out.mk -------------------------------------------------------------------------------- /libc/system/setjmp.S: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghaerr/elks/HEAD/libc/system/setjmp.S -------------------------------------------------------------------------------- /libc/system/signal.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghaerr/elks/HEAD/libc/system/signal.c -------------------------------------------------------------------------------- /libc/system/sleep.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghaerr/elks/HEAD/libc/system/sleep.c -------------------------------------------------------------------------------- /libc/system/time.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghaerr/elks/HEAD/libc/system/time.c -------------------------------------------------------------------------------- /libc/system/times.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghaerr/elks/HEAD/libc/system/times.c -------------------------------------------------------------------------------- /libc/system/usleep.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghaerr/elks/HEAD/libc/system/usleep.c -------------------------------------------------------------------------------- /libc/system/wait.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghaerr/elks/HEAD/libc/system/wait.c -------------------------------------------------------------------------------- /libc/system/wait3.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghaerr/elks/HEAD/libc/system/wait3.c -------------------------------------------------------------------------------- /libc/termcap/.gitignore: -------------------------------------------------------------------------------- 1 | termcap 2 | tparam 3 | -------------------------------------------------------------------------------- /libc/termcap/entry.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghaerr/elks/HEAD/libc/termcap/entry.c -------------------------------------------------------------------------------- /libc/termcap/find.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghaerr/elks/HEAD/libc/termcap/find.c -------------------------------------------------------------------------------- /libc/termcap/t.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghaerr/elks/HEAD/libc/termcap/t.h -------------------------------------------------------------------------------- /libc/termcap/tgoto.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghaerr/elks/HEAD/libc/termcap/tgoto.c -------------------------------------------------------------------------------- /libc/termcap/tputs.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghaerr/elks/HEAD/libc/termcap/tputs.c -------------------------------------------------------------------------------- /libc/time/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghaerr/elks/HEAD/libc/time/Makefile -------------------------------------------------------------------------------- /libc/time/asc_conv.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghaerr/elks/HEAD/libc/time/asc_conv.c -------------------------------------------------------------------------------- /libc/time/asctime.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghaerr/elks/HEAD/libc/time/asctime.c -------------------------------------------------------------------------------- /libc/time/ctime.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghaerr/elks/HEAD/libc/time/ctime.c -------------------------------------------------------------------------------- /libc/time/gmtime.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghaerr/elks/HEAD/libc/time/gmtime.c -------------------------------------------------------------------------------- /libc/time/mktime.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghaerr/elks/HEAD/libc/time/mktime.c -------------------------------------------------------------------------------- /libc/time/strftime.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghaerr/elks/HEAD/libc/time/strftime.c -------------------------------------------------------------------------------- /libc/time/tm_conv.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghaerr/elks/HEAD/libc/time/tm_conv.c -------------------------------------------------------------------------------- /libc/time/tzset.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghaerr/elks/HEAD/libc/time/tzset.c -------------------------------------------------------------------------------- /libc/watcom.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghaerr/elks/HEAD/libc/watcom.inc -------------------------------------------------------------------------------- /libc/watcom.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghaerr/elks/HEAD/libc/watcom.mk -------------------------------------------------------------------------------- /libc/watcom.model: -------------------------------------------------------------------------------- 1 | MODEL=l 2 | -------------------------------------------------------------------------------- /libc/watcom/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghaerr/elks/HEAD/libc/watcom/Makefile -------------------------------------------------------------------------------- /libc/wcenv.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghaerr/elks/HEAD/libc/wcenv.sh -------------------------------------------------------------------------------- /necv25.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghaerr/elks/HEAD/necv25.config -------------------------------------------------------------------------------- /pc98-1200.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghaerr/elks/HEAD/pc98-1200.config -------------------------------------------------------------------------------- /pc98-1232-nc.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghaerr/elks/HEAD/pc98-1232-nc.config -------------------------------------------------------------------------------- /pc98-1232.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghaerr/elks/HEAD/pc98-1232.config -------------------------------------------------------------------------------- /pc98-1440.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghaerr/elks/HEAD/pc98-1440.config -------------------------------------------------------------------------------- /qemu.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghaerr/elks/HEAD/qemu.sh -------------------------------------------------------------------------------- /slattach.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghaerr/elks/HEAD/slattach.sh -------------------------------------------------------------------------------- /swan.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghaerr/elks/HEAD/swan.config -------------------------------------------------------------------------------- /tools/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghaerr/elks/HEAD/tools/Makefile -------------------------------------------------------------------------------- /tools/build.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghaerr/elks/HEAD/tools/build.sh -------------------------------------------------------------------------------- /tools/prune.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghaerr/elks/HEAD/tools/prune.sh --------------------------------------------------------------------------------