├── BUILDING.txt ├── COPYING.txt ├── CREDITS.txt ├── Makefile ├── Makefile.include ├── contrib ├── ap0r-jens-spanish │ ├── ports │ │ └── ntfsprogs │ │ │ └── es │ │ │ └── libntfs.po │ └── src │ │ ├── kernel │ │ └── es │ │ │ └── kernel.po │ │ ├── lib │ │ └── libwindow │ │ │ └── es │ │ │ └── libwindow.po │ │ └── programs │ │ └── es │ │ ├── adduser.po │ │ ├── bootmenu.po │ │ ├── cal.po │ │ ├── calc.po │ │ ├── cat.po │ │ ├── cdrom.po │ │ ├── chkdisk.po │ │ ├── clock.po │ │ ├── cmdwin.po │ │ ├── computer.po │ │ ├── confedit.po │ │ ├── console.po │ │ ├── copy-boot.po │ │ ├── copy-mbr.po │ │ ├── cp.po │ │ ├── defrag.po │ │ ├── disks.po │ │ ├── disprops.po │ │ ├── edit.po │ │ ├── file.po │ │ ├── filebrowse.po │ │ ├── filesys.po │ │ ├── fontutil.po │ │ ├── format.po │ │ ├── help.po │ │ ├── hexdump.po │ │ ├── iconwin.po │ │ ├── ifconfig.po │ │ ├── imgboot.po │ │ ├── install.po │ │ ├── keymap.po │ │ ├── kill.po │ │ ├── loadfont.po │ │ ├── login.po │ │ ├── lsdev.po │ │ ├── mem.po │ │ ├── mines.po │ │ ├── mkdir.po │ │ ├── more.po │ │ ├── mount.po │ │ ├── mv.po │ │ ├── nm.po │ │ ├── passwd.po │ │ ├── ping.po │ │ ├── progman.po │ │ ├── ps.po │ │ ├── ramdisk.po │ │ ├── reboot.po │ │ ├── renice.po │ │ ├── rm.po │ │ ├── rmdir.po │ │ ├── screenshot.po │ │ ├── shutdown.po │ │ ├── snake.po │ │ ├── sysdiag.po │ │ ├── telnet.po │ │ ├── touch.po │ │ ├── umount.po │ │ ├── uptime.po │ │ ├── users.po │ │ ├── view.po │ │ ├── vsh.po │ │ └── wallpaper.po ├── ap0r-users │ └── src │ │ └── programs │ │ └── users.c ├── davide-findfree │ └── src │ │ └── kernel │ │ └── kernelMalloc.c ├── davide-fpu │ └── src │ │ ├── include │ │ └── sys │ │ │ └── fpu.h │ │ └── kernel │ │ ├── kernelMultitasker.c │ │ └── kernelMultitasker.h ├── davide-key │ └── src │ │ └── kernel │ │ └── kernelKeyboard.c ├── davide-priv-io │ └── src │ │ ├── include │ │ └── sys │ │ │ └── api.h │ │ ├── kernel │ │ ├── kernelApi.c │ │ ├── kernelKeyboard.c │ │ ├── kernelLoader.c │ │ ├── kernelMultitasker.c │ │ ├── kernelMultitasker.h │ │ ├── kernelPage.c │ │ ├── kernelPage.h │ │ └── kernelParameters.h │ │ └── programs │ │ ├── Makefile │ │ ├── su.c │ │ └── test_port_io.c ├── davide-ramdisk │ └── src │ │ ├── include │ │ ├── stdlib.h │ │ └── sys │ │ │ ├── api.h │ │ │ ├── device.h │ │ │ └── ramdisk.h │ │ ├── kernel │ │ ├── Makefile │ │ ├── kernelApi.c │ │ ├── kernelDevice.c │ │ ├── kernelDisk.c │ │ ├── kernelDisk.h │ │ ├── kernelDriver.h │ │ ├── kernelFilesystem.c │ │ ├── kernelFilesystem.h │ │ ├── kernelFloppyDriver.c │ │ ├── kernelIdeDriver.c │ │ ├── kernelInitialize.c │ │ ├── kernelRamDiskDriver.c │ │ ├── kernelRamDiskDriver.h │ │ └── kernelScsiDiskDriver.c │ │ ├── lib │ │ ├── libc │ │ │ ├── Makefile │ │ │ └── atou.c │ │ ├── libvsh │ │ │ └── vshProgressBar.c │ │ └── libwindow │ │ │ └── windowProgressDialog.c │ │ └── programs │ │ ├── Makefile │ │ ├── computer.c │ │ ├── disk2file.c │ │ ├── file2disk.c │ │ ├── install.c │ │ ├── mount.c │ │ └── ramdisk.c ├── doga-turkish │ ├── dist │ │ └── system │ │ │ ├── config │ │ │ └── tr │ │ │ │ ├── administration.conf │ │ │ │ ├── desktop.conf │ │ │ │ ├── network.conf │ │ │ │ └── programs.conf │ │ │ └── locale │ │ │ └── flag-tr.bmp │ ├── ports │ │ └── ntfsprogs │ │ │ └── tr │ │ │ └── libntfs.po │ └── src │ │ ├── kernel │ │ └── tr │ │ │ ├── Makefile │ │ │ └── kernel.po │ │ ├── lib │ │ └── libwindow │ │ │ └── tr │ │ │ ├── Makefile │ │ │ └── libwindow.po │ │ └── programs │ │ ├── fdisk │ │ └── tr │ │ │ └── fdisk.po │ │ └── tr │ │ ├── Makefile │ │ ├── bootmenu.po │ │ ├── cmdwin.po │ │ ├── computer.po │ │ ├── confedit.po │ │ ├── console.po │ │ ├── disprops.po │ │ ├── edit.po │ │ ├── filebrowse.po │ │ ├── filesys.po │ │ ├── ifconfig.po │ │ ├── keymap.po │ │ ├── lsdev.po │ │ ├── ping.po │ │ ├── progman.po │ │ ├── screenshot.po │ │ ├── shutdown.po │ │ ├── sysdiag.po │ │ └── wallpaper.po ├── giuseppe-calc │ └── src │ │ └── programs │ │ ├── calc.c │ │ └── readme.txt ├── giuseppe-ppm │ └── src │ │ └── kernel │ │ ├── kernelImagePpm.c │ │ └── kernelImagePpm.h ├── greg-fpu │ └── greg.txt ├── jens-german │ ├── ports │ │ └── ntfsprogs │ │ │ └── de │ │ │ └── libntfs.po │ └── src │ │ ├── kernel │ │ └── de │ │ │ └── kernel.po │ │ ├── lib │ │ └── libwindow │ │ │ └── de │ │ │ └── libwindow.po │ │ └── programs │ │ ├── de │ │ ├── adduser.po │ │ ├── bootmenu.po │ │ ├── cal.po │ │ ├── calc.po │ │ ├── cat.po │ │ ├── cdrom.po │ │ ├── chkdisk.po │ │ ├── clock.po │ │ ├── cmdwin.po │ │ ├── computer.po │ │ ├── confedit.po │ │ ├── console.po │ │ ├── copy-boot.po │ │ ├── copy-mbr.po │ │ ├── cp.po │ │ ├── defrag.po │ │ ├── disks.po │ │ ├── disprops.po │ │ ├── edit.po │ │ ├── file.po │ │ ├── filebrowse.po │ │ ├── filesys.po │ │ ├── fontutil.po │ │ ├── format.po │ │ ├── help.po │ │ ├── hexdump.po │ │ ├── iconwin.po │ │ ├── ifconfig.po │ │ ├── imgboot.po │ │ ├── install.po │ │ ├── keymap.po │ │ ├── kill.po │ │ ├── loadfont.po │ │ ├── login.po │ │ ├── lsdev.po │ │ ├── mem.po │ │ ├── mines.po │ │ ├── mkdir.po │ │ ├── more.po │ │ ├── mount.po │ │ ├── mv.po │ │ ├── nm.po │ │ ├── passwd.po │ │ ├── ping.po │ │ ├── progman.po │ │ ├── ps.po │ │ ├── ramdisk.po │ │ ├── reboot.po │ │ ├── renice.po │ │ ├── rm.po │ │ ├── rmdir.po │ │ ├── screenshot.po │ │ ├── shutdown.po │ │ ├── snake.po │ │ ├── sysdiag.po │ │ ├── telnet.po │ │ ├── touch.po │ │ ├── umount.po │ │ ├── uptime.po │ │ ├── users.po │ │ ├── view.po │ │ ├── vsh.po │ │ └── wallpaper.po │ │ └── fdisk │ │ └── de │ │ └── fdisk.po ├── jens-scrollbar │ └── src │ │ └── kernel │ │ └── kernelWindowScrollBar.c ├── jonas-key │ └── de_de_keyboard_layout.patch ├── jonas-net │ └── src │ │ └── kernel │ │ ├── kernelNetwork.c │ │ ├── kernelNetwork.h │ │ ├── kernelNetworkDriver.c │ │ ├── kernelNetworkDriver.h │ │ ├── kernelNetworkDriver_AmdPCNet.c │ │ ├── kernelNetworkDriver_AmdPCNet.h │ │ └── kernelNetworkDriver_AmdPCNetRegisters.h ├── jonas-pci │ ├── README.txt │ └── src │ │ └── kernel │ │ ├── Makefile │ │ ├── kernelBusPCI.c │ │ ├── kernelBusPCI.h │ │ └── kernelHardwareEnumeration.c ├── liss-russian │ ├── ports │ │ └── ntfsprogs │ │ │ └── ru │ │ │ └── libntfs.po │ └── src │ │ ├── kernel │ │ └── ru │ │ │ └── kernel.po │ │ ├── lib │ │ └── libwindow │ │ │ └── ru │ │ │ └── libwindow.po │ │ └── programs │ │ └── ru │ │ ├── adduser.po │ │ ├── bootmenu.po │ │ ├── cal.po │ │ ├── calc.po │ │ ├── cat.po │ │ ├── cdrom.po │ │ ├── chkdisk.po │ │ ├── clock.po │ │ ├── cmdwin.po │ │ ├── computer.po │ │ ├── confedit.po │ │ ├── console.po │ │ ├── copy-boot.po │ │ ├── copy-mbr.po │ │ ├── cp.po │ │ ├── defrag.po │ │ ├── disks.po │ │ ├── disprops.po │ │ ├── edit.po │ │ ├── file.po │ │ ├── filebrowse.po │ │ ├── filesys.po │ │ ├── fontutil.po │ │ ├── format.po │ │ ├── help.po │ │ ├── hexdump.po │ │ ├── iconwin.po │ │ ├── ifconfig.po │ │ ├── imgboot.po │ │ ├── install.po │ │ ├── keymap.po │ │ ├── kill.po │ │ ├── loadfont.po │ │ ├── login.po │ │ ├── lsdev.po │ │ ├── mem.po │ │ ├── mines.po │ │ ├── mkdir.po │ │ ├── more.po │ │ ├── mount.po │ │ ├── mv.po │ │ ├── nm.po │ │ ├── passwd.po │ │ ├── ping.po │ │ ├── progman.po │ │ ├── ps.po │ │ ├── ramdisk.po │ │ ├── reboot.po │ │ ├── renice.po │ │ ├── rm.po │ │ ├── rmdir.po │ │ ├── screenshot.po │ │ ├── shutdown.po │ │ ├── snake.po │ │ ├── sysdiag.po │ │ ├── telnet.po │ │ ├── touch.po │ │ ├── umount.po │ │ ├── uptime.po │ │ ├── users.po │ │ ├── view.po │ │ ├── vsh.po │ │ └── wallpaper.po └── vlad-calendar │ └── src │ └── programs │ └── calendar.c ├── dist ├── Makefile ├── programs │ ├── Makefile │ ├── fontutil.dir │ │ ├── ASCII.txt │ │ ├── ISO-8859-15.txt │ │ ├── ISO-8859-16.txt │ │ ├── ISO-8859-5.txt │ │ ├── ISO-8859-9.txt │ │ └── Makefile │ ├── helpfiles │ │ ├── Makefile │ │ ├── adduser.txt │ │ ├── archman.txt │ │ ├── bootmenu.txt │ │ ├── cal.txt │ │ ├── calc.txt │ │ ├── cat.txt │ │ ├── cd.txt │ │ ├── cdrom.txt │ │ ├── chkdisk.txt │ │ ├── clock.txt │ │ ├── cmdwin.txt │ │ ├── computer.txt │ │ ├── confedit.txt │ │ ├── console.txt │ │ ├── copy-boot.txt │ │ ├── copy-mbr.txt │ │ ├── cp.txt │ │ ├── date.txt │ │ ├── defrag.txt │ │ ├── deluser.txt │ │ ├── disks.txt │ │ ├── disprops.txt │ │ ├── domainname.txt │ │ ├── edit.txt │ │ ├── fdisk.txt │ │ ├── file.txt │ │ ├── filebrowse.txt │ │ ├── filesys.txt │ │ ├── find.txt │ │ ├── fontutil.txt │ │ ├── format.txt │ │ ├── help.txt │ │ ├── hexdump.txt │ │ ├── hostname.txt │ │ ├── iconwin.txt │ │ ├── ifconfig.txt │ │ ├── imgboot.txt │ │ ├── imgedit.txt │ │ ├── install.txt │ │ ├── keyboard.txt │ │ ├── keymap.txt │ │ ├── kill.txt │ │ ├── login.txt │ │ ├── logout.txt │ │ ├── ls.txt │ │ ├── lsdev.txt │ │ ├── md5.txt │ │ ├── mem.txt │ │ ├── mines.txt │ │ ├── mkdir.txt │ │ ├── more.txt │ │ ├── mount.txt │ │ ├── mv.txt │ │ ├── nm.txt │ │ ├── passwd.txt │ │ ├── ping.txt │ │ ├── progman.txt │ │ ├── ps.txt │ │ ├── pwd.txt │ │ ├── ramdisk.txt │ │ ├── reboot.txt │ │ ├── renice.txt │ │ ├── rm.txt │ │ ├── rmdir.txt │ │ ├── screenshot.txt │ │ ├── shutdown.txt │ │ ├── snake.txt │ │ ├── sync.txt │ │ ├── sysdiag.txt │ │ ├── tar.txt │ │ ├── touch.txt │ │ ├── umount.txt │ │ ├── uname.txt │ │ ├── unzip.txt │ │ ├── uptime.txt │ │ ├── users.txt │ │ ├── view.txt │ │ ├── vsh.txt │ │ ├── wallpaper.txt │ │ └── zip.txt │ ├── mines.dir │ │ ├── Makefile │ │ └── mine.bmp │ └── snake.dir │ │ ├── Makefile │ │ ├── body-horiz.bmp │ │ ├── body-vert.bmp │ │ ├── corner-ne.bmp │ │ ├── corner-nw.bmp │ │ ├── corner-se.bmp │ │ ├── corner-sw.bmp │ │ ├── food.bmp │ │ ├── head-e.bmp │ │ ├── head-n.bmp │ │ ├── head-s.bmp │ │ ├── head-w.bmp │ │ ├── tail-e.bmp │ │ ├── tail-n.bmp │ │ ├── tail-s.bmp │ │ ├── tail-w.bmp │ │ └── treat.bmp └── system │ ├── Makefile │ ├── config │ ├── Makefile │ ├── administration-basic.conf │ ├── administration.conf │ ├── charset.conf │ ├── de │ │ ├── administration.conf │ │ ├── desktop.conf │ │ ├── kernel.conf │ │ ├── network.conf │ │ └── programs.conf │ ├── desktop.conf │ ├── environment.conf │ ├── es │ │ ├── administration.conf │ │ ├── desktop.conf │ │ ├── kernel.conf │ │ ├── network.conf │ │ └── programs.conf │ ├── filebrowse.conf │ ├── kernel.conf │ ├── keymap.conf │ ├── mount.conf │ ├── network.conf │ ├── programs-basic.conf │ ├── programs.conf │ ├── ru │ │ ├── administration.conf │ │ ├── desktop.conf │ │ ├── kernel.conf │ │ ├── network.conf │ │ └── programs.conf │ ├── tr │ │ ├── administration.conf │ │ ├── desktop.conf │ │ ├── kernel.conf │ │ ├── network.conf │ │ └── programs.conf │ └── window.conf │ ├── fonts │ ├── Makefile │ ├── arial-bold-10-ascii.vbf │ ├── arial-bold-10-iso-8859-15.vbf │ ├── arial-bold-10-iso-8859-5.vbf │ ├── arial-bold-10-iso-8859-9.vbf │ ├── arial-bold-12-ascii.vbf │ ├── arial-bold-12-iso-8859-15.vbf │ ├── arial-bold-12-iso-8859-5.vbf │ ├── arial-bold-12-iso-8859-9.vbf │ ├── arial-bold-20-ascii.vbf │ ├── arial-bold-20-iso-8859-15.vbf │ ├── arial-bold-20-iso-8859-5.vbf │ ├── arial-bold-20-iso-8859-9.vbf │ ├── libmono-bold-10-ascii.vbf │ ├── libmono-bold-10-iso-8859-15.vbf │ ├── libmono-bold-10-iso-8859-5.vbf │ ├── libmono-bold-10-iso-8859-9.vbf │ ├── libmono-bold-8-ascii.vbf │ ├── libmono-bold-8-iso-8859-15.vbf │ ├── libmono-bold-8-iso-8859-5.vbf │ ├── libmono-bold-8-iso-8859-9.vbf │ ├── libmono-normal-10-ascii.vbf │ ├── libmono-normal-10-iso-8859-15.vbf │ ├── libmono-normal-10-iso-8859-5.vbf │ ├── libmono-normal-10-iso-8859-9.vbf │ ├── libmono-normal-8-ascii.vbf │ ├── libmono-normal-8-iso-8859-15.vbf │ ├── libmono-normal-8-iso-8859-5.vbf │ ├── libmono-normal-8-iso-8859-9.vbf │ ├── xterm-normal-10-ascii.vbf │ ├── xterm-normal-10-iso-8859-15.vbf │ ├── xterm-normal-10-iso-8859-5.vbf │ └── xterm-normal-10-iso-8859-9.vbf │ ├── icons │ ├── Makefile │ ├── admin.ico │ ├── archive.ico │ ├── archman.ico │ ├── arrowup.ico │ ├── audio.ico │ ├── binary.ico │ ├── bootsect.ico │ ├── cal.ico │ ├── calc.ico │ ├── cdrom.ico │ ├── cmdwin.ico │ ├── colrpick.ico │ ├── computer.ico │ ├── config.ico │ ├── console.ico │ ├── diskman.ico │ ├── disprops.ico │ ├── draw.ico │ ├── edit.ico │ ├── error.ico │ ├── execable.ico │ ├── file.ico │ ├── filesys.ico │ ├── floppy.ico │ ├── folder.ico │ ├── font.ico │ ├── fontutil.ico │ ├── game.ico │ ├── gear.ico │ ├── harddisk.ico │ ├── html.ico │ ├── ifconfig.ico │ ├── image.ico │ ├── imgedit.ico │ ├── info.ico │ ├── install.ico │ ├── keyboard.ico │ ├── keymap.ico │ ├── kmapfile.ico │ ├── lsdev.ico │ ├── messages.ico │ ├── mines.ico │ ├── network.ico │ ├── object.ico │ ├── pdf.ico │ ├── ping.ico │ ├── progman.ico │ ├── programs.ico │ ├── question.ico │ ├── reboot.ico │ ├── save.ico │ ├── screenshot.ico │ ├── shutdown.ico │ ├── sysdiag.ico │ ├── text.ico │ ├── usbthumb.ico │ ├── users.ico │ ├── video.ico │ ├── view.ico │ ├── zoomin.ico │ └── zoomout.ico │ ├── install-files.basic │ ├── install-files.full │ ├── keymaps │ ├── BE_BE.map │ ├── DE_DE.map │ ├── EN_UK.map │ ├── EN_US.map │ ├── ES_ES.map │ ├── FR_FR.map │ ├── IT_IT.map │ ├── Makefile │ ├── RU_RU.map │ └── TR_TR.map │ ├── locale │ ├── Makefile │ ├── flag-de.bmp │ ├── flag-en.bmp │ ├── flag-es.bmp │ ├── flag-ru.bmp │ └── flag-tr.bmp │ ├── mouse │ ├── Makefile │ ├── busy.ico │ ├── default.bmp │ ├── resizeh.bmp │ └── resizev.bmp │ ├── password.blank │ ├── visopsys.jpg │ └── wallpaper │ ├── Makefile │ ├── backgrnd.jpg │ ├── madeira.jpg │ ├── pascual.jpg │ └── spirals.jpg ├── docs ├── KERNEL_API.txt ├── VSH_LIBRARY.txt └── WINDOW_LIBRARY.txt ├── ports └── ntfsprogs │ ├── 1.13.1_to_visopsys.patch │ ├── 1.13.1_to_visopsys2.patch │ ├── 1.13.1_to_visopsys3.patch │ ├── 1.13.1_to_visopsys4.patch │ ├── 1.13.1_to_visopsys5.patch │ ├── 1.13.1_to_visopsys6.patch │ ├── AUTHORS │ ├── COPYING │ ├── CREDITS │ ├── Makefile.visopsys │ ├── de │ ├── Makefile │ └── libntfs.po │ ├── es │ ├── Makefile │ └── libntfs.po │ ├── include │ └── ntfs │ │ ├── Makefile.visopsys │ │ ├── attrib.h │ │ ├── attrlist.h │ │ ├── bitmap.h │ │ ├── bootsect.h │ │ ├── collate.h │ │ ├── compat.h │ │ ├── compress.h │ │ ├── config.h │ │ ├── debug.h │ │ ├── device.h │ │ ├── device_io.h │ │ ├── dir.h │ │ ├── endians.h │ │ ├── index.h │ │ ├── inode.h │ │ ├── layout.h │ │ ├── lcnalloc.h │ │ ├── logfile.h │ │ ├── logging.h │ │ ├── mft.h │ │ ├── mst.h │ │ ├── ntfstime.h │ │ ├── runlist.h │ │ ├── support.h │ │ ├── types.h │ │ ├── unistr.h │ │ └── volume.h │ ├── libntfs.pot │ ├── libntfs │ ├── Makefile.visopsys │ ├── attrib.c │ ├── attrlist.c │ ├── bitmap.c │ ├── bootsect.c │ ├── collate.c │ ├── compress.c │ ├── debug.c │ ├── device.c │ ├── device_io.c │ ├── dir.c │ ├── index.c │ ├── inode.c │ ├── lcnalloc.c │ ├── logfile.c │ ├── logging.c │ ├── mft.c │ ├── mst.c │ ├── runlist.c │ ├── unistr.c │ ├── visopsys_io.c │ └── volume.c │ ├── ntfsprogs │ ├── Makefile.visopsys │ ├── attrdef.c │ ├── attrdef.h │ ├── boot.c │ ├── boot.h │ ├── mkntfs.c │ ├── ntfsresize.c │ ├── sd.c │ ├── sd.h │ ├── upcase.c │ └── upcase.h │ ├── ru │ ├── Makefile │ └── libntfs.po │ └── tr │ ├── Makefile │ └── libntfs.po ├── src ├── CHANGELOG.txt ├── Makefile ├── include │ ├── COPYING.TXT │ ├── Makefile │ ├── arpa │ │ ├── Makefile │ │ └── inet.h │ ├── assert.h │ ├── ctype.h │ ├── curses.h │ ├── dirent.h │ ├── dlfcn.h │ ├── endian.h │ ├── errno.h │ ├── fcntl.h │ ├── features.h │ ├── float.h │ ├── iso646.h │ ├── libgen.h │ ├── libintl.h │ ├── limits.h │ ├── locale.h │ ├── math.h │ ├── netdb.h │ ├── netinet │ │ ├── Makefile │ │ └── in.h │ ├── poll.h │ ├── readline.h │ ├── setjmp.h │ ├── signal.h │ ├── stdarg.h │ ├── stddef.h │ ├── stdint.h │ ├── stdio.h │ ├── stdlib.h │ ├── string.h │ ├── sys │ │ ├── Makefile │ │ ├── acpi.h │ │ ├── api.h │ │ ├── ascii.h │ │ ├── bmp.h │ │ ├── cdefs.h │ │ ├── charset.h │ │ ├── color.h │ │ ├── compress.h │ │ ├── debug.h │ │ ├── deflate.h │ │ ├── deskconf.h │ │ ├── desktop.h │ │ ├── device.h │ │ ├── disk.h │ │ ├── elf.h │ │ ├── env.h │ │ ├── errors.h │ │ ├── ext.h │ │ ├── fat.h │ │ ├── file.h │ │ ├── font.h │ │ ├── gpt.h │ │ ├── graphic.h │ │ ├── guid.h │ │ ├── gzip.h │ │ ├── ico.h │ │ ├── image.h │ │ ├── iso.h │ │ ├── jpg.h │ │ ├── kernconf.h │ │ ├── keyboard.h │ │ ├── lang.h │ │ ├── linuxswap.h │ │ ├── loader.h │ │ ├── lock.h │ │ ├── memory.h │ │ ├── message.h │ │ ├── mouse.h │ │ ├── msdos.h │ │ ├── multiproc.h │ │ ├── network.h │ │ ├── ntfs.h │ │ ├── osloader.h │ │ ├── paths.h │ │ ├── png.h │ │ ├── process.h │ │ ├── processor.h │ │ ├── progress.h │ │ ├── sched.h │ │ ├── socket.h │ │ ├── stat.h │ │ ├── stream.h │ │ ├── tar.h │ │ ├── telnet.h │ │ ├── text.h │ │ ├── timer.h │ │ ├── types.h │ │ ├── udf.h │ │ ├── usb.h │ │ ├── user.h │ │ ├── utsname.h │ │ ├── variable.h │ │ ├── vbf.h │ │ ├── vsh.h │ │ ├── winconf.h │ │ └── window.h │ ├── time.h │ ├── unistd.h │ ├── values.h │ ├── wchar.h │ └── wctype.h ├── kernel │ ├── Makefile │ ├── de │ │ ├── Makefile │ │ └── kernel.po │ ├── es │ │ ├── Makefile │ │ └── kernel.po │ ├── kernel.pot │ ├── kernelAcpiDriver.c │ ├── kernelAcpiDriver.h │ ├── kernelApi.c │ ├── kernelApi.h │ ├── kernelApicDriver.c │ ├── kernelApicDriver.h │ ├── kernelAtaDriver.c │ ├── kernelAtaDriver.h │ ├── kernelBus.c │ ├── kernelBus.h │ ├── kernelCharset.c │ ├── kernelCharset.h │ ├── kernelCpu.c │ ├── kernelCpu.h │ ├── kernelCrypt.h │ ├── kernelCryptHashMd5.c │ ├── kernelDebug.c │ ├── kernelDebug.h │ ├── kernelDescriptor.c │ ├── kernelDescriptor.h │ ├── kernelDevice.c │ ├── kernelDevice.h │ ├── kernelDisk.c │ ├── kernelDisk.h │ ├── kernelDma.c │ ├── kernelDma.h │ ├── kernelDmaDriver.c │ ├── kernelDriver.c │ ├── kernelDriver.h │ ├── kernelEncrypt.h │ ├── kernelEncryptMD5.c │ ├── kernelEnvironment.c │ ├── kernelEnvironment.h │ ├── kernelError.c │ ├── kernelError.h │ ├── kernelFile.c │ ├── kernelFile.h │ ├── kernelFileStream.c │ ├── kernelFileStream.h │ ├── kernelFilesystem.c │ ├── kernelFilesystem.h │ ├── kernelFilesystemExt.c │ ├── kernelFilesystemExt.h │ ├── kernelFilesystemFat.c │ ├── kernelFilesystemFat.h │ ├── kernelFilesystemIso.c │ ├── kernelFilesystemIso.h │ ├── kernelFilesystemLinuxSwap.c │ ├── kernelFilesystemNtfs.c │ ├── kernelFilesystemUdf.c │ ├── kernelFilesystemUdf.h │ ├── kernelFloppyDriver.c │ ├── kernelFont.c │ ├── kernelFont.h │ ├── kernelFontTtf.c │ ├── kernelFontTtf.h │ ├── kernelFontVbf.c │ ├── kernelFontVbf.h │ ├── kernelFramebufferGraphicDriver.c │ ├── kernelGraphic.c │ ├── kernelGraphic.h │ ├── kernelGraphicConsoleDriver.c │ ├── kernelIdeDriver.c │ ├── kernelIdeDriver.h │ ├── kernelImage.c │ ├── kernelImage.h │ ├── kernelImageBmp.c │ ├── kernelImageIco.c │ ├── kernelImageJpg.c │ ├── kernelImageJpg.h │ ├── kernelImagePpm.c │ ├── kernelInitialize.c │ ├── kernelInitialize.h │ ├── kernelInterrupt.c │ ├── kernelInterrupt.h │ ├── kernelKeyboard.c │ ├── kernelKeyboard.h │ ├── kernelLinkedList.c │ ├── kernelLinkedList.h │ ├── kernelLoader.c │ ├── kernelLoader.h │ ├── kernelLoaderClass.c │ ├── kernelLoaderElf.c │ ├── kernelLoaderElf.h │ ├── kernelLocale.c │ ├── kernelLocale.h │ ├── kernelLock.c │ ├── kernelLock.h │ ├── kernelLog.c │ ├── kernelLog.h │ ├── kernelMain.c │ ├── kernelMain.h │ ├── kernelMalloc.c │ ├── kernelMalloc.h │ ├── kernelMemory.c │ ├── kernelMemory.h │ ├── kernelMisc.c │ ├── kernelMisc.h │ ├── kernelMouse.c │ ├── kernelMouse.h │ ├── kernelMultitasker.c │ ├── kernelMultitasker.h │ ├── kernelNetwork.c │ ├── kernelNetwork.h │ ├── kernelNetworkArp.c │ ├── kernelNetworkArp.h │ ├── kernelNetworkDevice.c │ ├── kernelNetworkDevice.h │ ├── kernelNetworkDhcp.c │ ├── kernelNetworkDhcp.h │ ├── kernelNetworkEthernet.c │ ├── kernelNetworkEthernet.h │ ├── kernelNetworkIcmp.c │ ├── kernelNetworkIcmp.h │ ├── kernelNetworkIp4.c │ ├── kernelNetworkIp4.h │ ├── kernelNetworkLoopDriver.c │ ├── kernelNetworkLoopDriver.h │ ├── kernelNetworkPcNetDriver.c │ ├── kernelNetworkPcNetDriver.h │ ├── kernelNetworkStream.c │ ├── kernelNetworkStream.h │ ├── kernelNetworkUdp.c │ ├── kernelNetworkUdp.h │ ├── kernelPage.c │ ├── kernelPage.h │ ├── kernelParameters.h │ ├── kernelPciDriver.c │ ├── kernelPciDriver.h │ ├── kernelPic.c │ ├── kernelPic.h │ ├── kernelPicDriver.c │ ├── kernelPower.c │ ├── kernelPower.h │ ├── kernelPs2KeyboardDriver.c │ ├── kernelPs2MouseDriver.c │ ├── kernelRamDiskDriver.c │ ├── kernelRamDiskDriver.h │ ├── kernelRandom.c │ ├── kernelRandom.h │ ├── kernelRtc.c │ ├── kernelRtc.h │ ├── kernelRtcDriver.c │ ├── kernelSataAhciDriver.c │ ├── kernelSataAhciDriver.h │ ├── kernelSataDriver.h │ ├── kernelScsiDiskDriver.c │ ├── kernelScsiDiskDriver.h │ ├── kernelScsiDriver.h │ ├── kernelShutdown.c │ ├── kernelShutdown.h │ ├── kernelStream.c │ ├── kernelStream.h │ ├── kernelSysTimer.c │ ├── kernelSysTimer.h │ ├── kernelSysTimerDriver.c │ ├── kernelSystemDriver.c │ ├── kernelSystemDriver.h │ ├── kernelText.c │ ├── kernelText.h │ ├── kernelTextConsoleDriver.c │ ├── kernelTouch.c │ ├── kernelTouch.h │ ├── kernelUsbAtapiDriver.c │ ├── kernelUsbAtapiDriver.h │ ├── kernelUsbDriver.c │ ├── kernelUsbDriver.h │ ├── kernelUsbEhciDriver.c │ ├── kernelUsbEhciDriver.h │ ├── kernelUsbGenericDriver.c │ ├── kernelUsbHubDriver.c │ ├── kernelUsbKeyboardDriver.c │ ├── kernelUsbKeyboardDriver.h │ ├── kernelUsbMouseDriver.c │ ├── kernelUsbMouseDriver.h │ ├── kernelUsbOhciDriver.c │ ├── kernelUsbOhciDriver.h │ ├── kernelUsbTouchscreenDriver.c │ ├── kernelUsbTouchscreenDriver.h │ ├── kernelUsbUhciDriver.c │ ├── kernelUsbUhciDriver.h │ ├── kernelUsbXhciDriver.c │ ├── kernelUsbXhciDriver.h │ ├── kernelUser.c │ ├── kernelUser.h │ ├── kernelVariableList.c │ ├── kernelVariableList.h │ ├── kernelWindow.c │ ├── kernelWindow.h │ ├── kernelWindowBorder.c │ ├── kernelWindowButton.c │ ├── kernelWindowCanvas.c │ ├── kernelWindowCheckbox.c │ ├── kernelWindowComponent.c │ ├── kernelWindowContainer.c │ ├── kernelWindowDivider.c │ ├── kernelWindowEventStream.c │ ├── kernelWindowEventStream.h │ ├── kernelWindowIcon.c │ ├── kernelWindowImage.c │ ├── kernelWindowList.c │ ├── kernelWindowListItem.c │ ├── kernelWindowMenu.c │ ├── kernelWindowMenuBar.c │ ├── kernelWindowMenuBarIcon.c │ ├── kernelWindowMenuItem.c │ ├── kernelWindowPasswordField.c │ ├── kernelWindowProgressBar.c │ ├── kernelWindowRadioButton.c │ ├── kernelWindowScrollBar.c │ ├── kernelWindowShell.c │ ├── kernelWindowSlider.c │ ├── kernelWindowSysContainer.c │ ├── kernelWindowTextArea.c │ ├── kernelWindowTextField.c │ ├── kernelWindowTextLabel.c │ ├── kernelWindowTitleBar.c │ ├── kernelWindowTree.c │ ├── loaderInfo.h │ ├── ru │ │ ├── Makefile │ │ └── kernel.po │ └── tr │ │ ├── Makefile │ │ └── kernel.po ├── lib │ ├── COPYING.TXT │ ├── Makefile │ ├── libc │ │ ├── Makefile │ │ ├── _dbl2str.c │ │ ├── _digits.c │ │ ├── _fdesc.c │ │ ├── _flt2str.c │ │ ├── _fmtinpt.c │ │ ├── _kernapi.c │ │ ├── _ldigits.c │ │ ├── _lnum2str.c │ │ ├── _num2str.c │ │ ├── _str2num.c │ │ ├── _xpndfmt.c │ │ ├── abort.c │ │ ├── abs.c │ │ ├── accept.c │ │ ├── asctime.c │ │ ├── basename.c │ │ ├── bcopy.c │ │ ├── bind.c │ │ ├── bzero.c │ │ ├── calloc.c │ │ ├── ceil.c │ │ ├── chdir.c │ │ ├── clock.c │ │ ├── close.c │ │ ├── closedir.c │ │ ├── connect.c │ │ ├── cos.c │ │ ├── cosf.c │ │ ├── crt0.c │ │ ├── ctime.c │ │ ├── difftime.c │ │ ├── dirname.c │ │ ├── exit.c │ │ ├── fabs.c │ │ ├── fabsf.c │ │ ├── fclose.c │ │ ├── fdopen.c │ │ ├── fflush.c │ │ ├── ffs.c │ │ ├── fgetpos.c │ │ ├── fgets.c │ │ ├── floor.c │ │ ├── floorf.c │ │ ├── fls.c │ │ ├── fmod.c │ │ ├── fopen.c │ │ ├── fprintf.c │ │ ├── fread.c │ │ ├── fscanf.c │ │ ├── fseek.c │ │ ├── fsetpos.c │ │ ├── ftell.c │ │ ├── ftruncate.c │ │ ├── fwrite.c │ │ ├── getc.c │ │ ├── getchar.c │ │ ├── getcwd.c │ │ ├── getenv.c │ │ ├── getopt.c │ │ ├── getprotobyname.c │ │ ├── getprotobynumber.c │ │ ├── gets.c │ │ ├── getservbyname.c │ │ ├── getservbyport.c │ │ ├── gmtime.c │ │ ├── inet_ntop.c │ │ ├── inet_pton.c │ │ ├── isalnum.c │ │ ├── isalpha.c │ │ ├── isascii.c │ │ ├── isblank.c │ │ ├── iscntrl.c │ │ ├── isdigit.c │ │ ├── isgraph.c │ │ ├── islower.c │ │ ├── isprint.c │ │ ├── ispunct.c │ │ ├── isspace.c │ │ ├── isupper.c │ │ ├── isxdigit.c │ │ ├── labs.c │ │ ├── listen.c │ │ ├── lseek.c │ │ ├── malloc.c │ │ ├── mbstowcs.c │ │ ├── mbtowc.c │ │ ├── memcmp.c │ │ ├── memcpy.c │ │ ├── memmove.c │ │ ├── memset.c │ │ ├── mkdir.c │ │ ├── mkdtemp.c │ │ ├── mkstemp.c │ │ ├── mktime.c │ │ ├── modf.c │ │ ├── open.c │ │ ├── opendir.c │ │ ├── perror.c │ │ ├── poll.c │ │ ├── pow.c │ │ ├── printf.c │ │ ├── putc.c │ │ ├── putchar.c │ │ ├── puts.c │ │ ├── rand.c │ │ ├── read.c │ │ ├── readdir.c │ │ ├── readdir_r.c │ │ ├── readline.c │ │ ├── realloc.c │ │ ├── realpath.c │ │ ├── recv.c │ │ ├── remove.c │ │ ├── rename.c │ │ ├── rewind.c │ │ ├── rewinddir.c │ │ ├── rmdir.c │ │ ├── scanf.c │ │ ├── sched_yield.c │ │ ├── send.c │ │ ├── setenv.c │ │ ├── setlocale.c │ │ ├── shutdown.c │ │ ├── signal.c │ │ ├── sin.c │ │ ├── sinf.c │ │ ├── sleep.c │ │ ├── snprintf.c │ │ ├── socket.c │ │ ├── sprintf.c │ │ ├── sqrt.c │ │ ├── srand.c │ │ ├── sscanf.c │ │ ├── stat.c │ │ ├── strcasecmp.c │ │ ├── strcasestr.c │ │ ├── strcat.c │ │ ├── strchr.c │ │ ├── strcmp.c │ │ ├── strcpy.c │ │ ├── strdup.c │ │ ├── strerror.c │ │ ├── strlen.c │ │ ├── strncasecmp.c │ │ ├── strncat.c │ │ ├── strncmp.c │ │ ├── strncpy.c │ │ ├── strnlen.c │ │ ├── strrchr.c │ │ ├── strspn.c │ │ ├── strstr.c │ │ ├── strtok.c │ │ ├── strtok_r.c │ │ ├── strtol.c │ │ ├── strtoll.c │ │ ├── strtoul.c │ │ ├── strtoull.c │ │ ├── swab.c │ │ ├── system.c │ │ ├── tan.c │ │ ├── tanf.c │ │ ├── time.c │ │ ├── tmpfile.c │ │ ├── tolower.c │ │ ├── toupper.c │ │ ├── truncate.c │ │ ├── uname.c │ │ ├── unlink.c │ │ ├── vfprintf.c │ │ ├── vfscanf.c │ │ ├── vprintf.c │ │ ├── vscanf.c │ │ ├── vsnprintf.c │ │ ├── vsprintf.c │ │ ├── vsscanf.c │ │ ├── wctomb.c │ │ └── write.c │ ├── libcompress │ │ ├── Makefile │ │ ├── deflate.c │ │ ├── deflate_compress.c │ │ ├── deflate_decompress.c │ │ ├── gzip.c │ │ ├── libcompress.c │ │ ├── libcompress.h │ │ └── tar.c │ ├── libdl │ │ ├── Makefile │ │ ├── dlclose.c │ │ ├── dlerror.c │ │ ├── dlopen.c │ │ └── dlsym.c │ ├── libintl │ │ ├── Makefile │ │ ├── bindtextdomain.c │ │ ├── gettext.c │ │ └── textdomain.c │ ├── libtimer │ │ ├── Makefile │ │ └── timer.c │ ├── libvsh │ │ ├── Makefile │ │ ├── vshCompleteFilename.c │ │ ├── vshCursorMenu.c │ │ ├── vshDeleteFile.c │ │ ├── vshDumpFile.c │ │ ├── vshFileList.c │ │ ├── vshMakeAbsolutePath.c │ │ ├── vshMakeDirRecursive.c │ │ ├── vshMoveFile.c │ │ ├── vshParseCommand.c │ │ ├── vshPasswordPrompt.c │ │ ├── vshPrintDate.c │ │ ├── vshPrintTime.c │ │ ├── vshProgressBar.c │ │ └── vshSearchPath.c │ ├── libwindow │ │ ├── Makefile │ │ ├── de │ │ │ ├── Makefile │ │ │ └── libwindow.po │ │ ├── es │ │ │ ├── Makefile │ │ │ └── libwindow.po │ │ ├── libwindow.pot │ │ ├── ru │ │ │ ├── Makefile │ │ │ └── libwindow.po │ │ ├── tr │ │ │ ├── Makefile │ │ │ └── libwindow.po │ │ ├── windowArchiveList.c │ │ ├── windowBannerDialog.c │ │ ├── windowCenterDialog.c │ │ ├── windowChoiceDialog.c │ │ ├── windowColorDialog.c │ │ ├── windowFileDialog.c │ │ ├── windowFileList.c │ │ ├── windowKeyboard.c │ │ ├── windowLanguageDialog.c │ │ ├── windowMain.c │ │ ├── windowNumberDialog.c │ │ ├── windowOkDialog.c │ │ ├── windowPixelEditor.c │ │ ├── windowProgressDialog.c │ │ ├── windowPromptDialog.c │ │ ├── windowQueryDialog.c │ │ ├── windowRadioDialog.c │ │ └── windowThumbImage.c │ └── shared │ │ ├── Makefile │ │ ├── abspath.c │ │ └── srchpath.c ├── osloader │ ├── Makefile │ ├── bootmenu.s │ ├── bootsect-diskparms.s │ ├── bootsect-error.s │ ├── bootsect-fat.s │ ├── bootsect-fatBPB.s │ ├── bootsect-fatnoboot.s │ ├── bootsect-print.s │ ├── bootsect-read.s │ ├── loader.h │ ├── loaderA20.s │ ├── loaderDetectHardware.s │ ├── loaderDiskError.s │ ├── loaderLoadFile.s │ ├── loaderLoadKernel.s │ ├── loaderMain.s │ ├── loaderPrintRoutines.s │ ├── loaderVideo.s │ ├── mbr-bootmenu.s │ └── mbr-simple.s └── programs │ ├── Makefile │ ├── adduser.c │ ├── adduser.pot │ ├── archman.c │ ├── archman.pot │ ├── bootmenu.c │ ├── bootmenu.pot │ ├── cal.c │ ├── cal.pot │ ├── calc.c │ ├── calc.pot │ ├── cat.c │ ├── cat.pot │ ├── cdrom.c │ ├── cdrom.pot │ ├── chkdisk.c │ ├── chkdisk.pot │ ├── clock.c │ ├── clock.pot │ ├── cmdwin.c │ ├── cmdwin.pot │ ├── computer.c │ ├── computer.pot │ ├── confedit.c │ ├── confedit.pot │ ├── console.c │ ├── console.pot │ ├── copy-boot.c │ ├── copy-boot.pot │ ├── copy-mbr.c │ ├── copy-mbr.pot │ ├── cp.c │ ├── cp.pot │ ├── date.c │ ├── de │ ├── Makefile │ ├── adduser.po │ ├── bootmenu.po │ ├── cal.po │ ├── calc.po │ ├── cat.po │ ├── cdrom.po │ ├── chkdisk.po │ ├── clock.po │ ├── cmdwin.po │ ├── computer.po │ ├── confedit.po │ ├── console.po │ ├── copy-boot.po │ ├── copy-mbr.po │ ├── cp.po │ ├── defrag.po │ ├── disks.po │ ├── disprops.po │ ├── edit.po │ ├── file.po │ ├── filebrowse.po │ ├── filesys.po │ ├── fontutil.po │ ├── format.po │ ├── help.po │ ├── hexdump.po │ ├── iconwin.po │ ├── ifconfig.po │ ├── imgboot.po │ ├── imgedit.po │ ├── install.po │ ├── keyboard.po │ ├── keymap.po │ ├── kill.po │ ├── login.po │ ├── lsdev.po │ ├── mem.po │ ├── mines.po │ ├── mkdir.po │ ├── more.po │ ├── mount.po │ ├── mv.po │ ├── nm.po │ ├── passwd.po │ ├── ping.po │ ├── progman.po │ ├── ps.po │ ├── ramdisk.po │ ├── reboot.po │ ├── renice.po │ ├── rm.po │ ├── rmdir.po │ ├── screenshot.po │ ├── shutdown.po │ ├── snake.po │ ├── sysdiag.po │ ├── telnet.po │ ├── touch.po │ ├── umount.po │ ├── uptime.po │ ├── users.po │ ├── view.po │ ├── vsh.po │ └── wallpaper.po │ ├── defrag.c │ ├── defrag.pot │ ├── deluser.c │ ├── deluser.pot │ ├── disks.c │ ├── disks.pot │ ├── disprops.c │ ├── disprops.pot │ ├── domainname.c │ ├── edit.c │ ├── edit.pot │ ├── es │ ├── Makefile │ ├── adduser.po │ ├── bootmenu.po │ ├── cal.po │ ├── calc.po │ ├── cat.po │ ├── cdrom.po │ ├── chkdisk.po │ ├── clock.po │ ├── cmdwin.po │ ├── computer.po │ ├── confedit.po │ ├── console.po │ ├── copy-boot.po │ ├── copy-mbr.po │ ├── cp.po │ ├── defrag.po │ ├── disks.po │ ├── disprops.po │ ├── edit.po │ ├── file.po │ ├── filebrowse.po │ ├── filesys.po │ ├── fontutil.po │ ├── format.po │ ├── help.po │ ├── hexdump.po │ ├── iconwin.po │ ├── ifconfig.po │ ├── imgboot.po │ ├── imgedit.po │ ├── install.po │ ├── keyboard.po │ ├── keymap.po │ ├── kill.po │ ├── login.po │ ├── lsdev.po │ ├── mem.po │ ├── mines.po │ ├── mkdir.po │ ├── more.po │ ├── mount.po │ ├── mv.po │ ├── nm.po │ ├── passwd.po │ ├── ping.po │ ├── progman.po │ ├── ps.po │ ├── ramdisk.po │ ├── reboot.po │ ├── renice.po │ ├── rm.po │ ├── rmdir.po │ ├── screenshot.po │ ├── shutdown.po │ ├── snake.po │ ├── sysdiag.po │ ├── telnet.po │ ├── touch.po │ ├── umount.po │ ├── uptime.po │ ├── users.po │ ├── view.po │ ├── vsh.po │ └── wallpaper.po │ ├── fdisk │ ├── Makefile │ ├── de │ │ ├── Makefile │ │ └── fdisk.po │ ├── fdisk.c │ ├── fdisk.h │ ├── fdisk.pot │ ├── gpt.c │ ├── gpt.h │ ├── msdos.c │ └── msdos.h │ ├── file.c │ ├── file.pot │ ├── filebrowse.c │ ├── filebrowse.pot │ ├── filesys.c │ ├── filesys.pot │ ├── find.c │ ├── fontutil.c │ ├── fontutil.pot │ ├── format.c │ ├── format.pot │ ├── help.c │ ├── help.pot │ ├── hexdump.c │ ├── hexdump.pot │ ├── hostname.c │ ├── iconwin.c │ ├── iconwin.pot │ ├── ifconfig.c │ ├── ifconfig.pot │ ├── imgboot.c │ ├── imgboot.pot │ ├── imgedit.c │ ├── imgedit.pot │ ├── install.c │ ├── install.pot │ ├── keyboard.c │ ├── keyboard.pot │ ├── keymap.c │ ├── keymap.pot │ ├── kill.c │ ├── kill.pot │ ├── login.c │ ├── login.pot │ ├── logout.c │ ├── ls.c │ ├── lsdev.c │ ├── lsdev.pot │ ├── md5.c │ ├── mem.c │ ├── mem.pot │ ├── mines.c │ ├── mines.pot │ ├── mkdir.c │ ├── mkdir.pot │ ├── more.c │ ├── more.pot │ ├── mount.c │ ├── mount.pot │ ├── mv.c │ ├── mv.pot │ ├── nm.c │ ├── nm.pot │ ├── passwd.c │ ├── passwd.pot │ ├── ping.c │ ├── ping.pot │ ├── progman.c │ ├── progman.pot │ ├── ps.c │ ├── ps.pot │ ├── ramdisk.c │ ├── ramdisk.pot │ ├── reboot.c │ ├── reboot.pot │ ├── renice.c │ ├── renice.pot │ ├── rm.c │ ├── rm.pot │ ├── rmdir.c │ ├── rmdir.pot │ ├── ru │ ├── Makefile │ ├── adduser.po │ ├── bootmenu.po │ ├── cal.po │ ├── calc.po │ ├── cat.po │ ├── cdrom.po │ ├── chkdisk.po │ ├── clock.po │ ├── cmdwin.po │ ├── computer.po │ ├── confedit.po │ ├── console.po │ ├── copy-boot.po │ ├── copy-mbr.po │ ├── cp.po │ ├── defrag.po │ ├── disks.po │ ├── disprops.po │ ├── edit.po │ ├── file.po │ ├── filebrowse.po │ ├── filesys.po │ ├── fontutil.po │ ├── format.po │ ├── help.po │ ├── hexdump.po │ ├── iconwin.po │ ├── ifconfig.po │ ├── imgboot.po │ ├── imgedit.po │ ├── install.po │ ├── keyboard.po │ ├── keymap.po │ ├── kill.po │ ├── loadfont.po │ ├── login.po │ ├── lsdev.po │ ├── mem.po │ ├── mines.po │ ├── mkdir.po │ ├── more.po │ ├── mount.po │ ├── mv.po │ ├── nm.po │ ├── passwd.po │ ├── ping.po │ ├── progman.po │ ├── ps.po │ ├── ramdisk.po │ ├── reboot.po │ ├── renice.po │ ├── rm.po │ ├── rmdir.po │ ├── screenshot.po │ ├── shutdown.po │ ├── snake.po │ ├── sysdiag.po │ ├── telnet.po │ ├── touch.po │ ├── umount.po │ ├── uptime.po │ ├── users.po │ ├── view.po │ ├── vsh.po │ └── wallpaper.po │ ├── screenshot.c │ ├── screenshot.pot │ ├── shutdown.c │ ├── shutdown.pot │ ├── snake.c │ ├── snake.pot │ ├── sync.c │ ├── sysdiag.c │ ├── sysdiag.pot │ ├── tar.c │ ├── tar.pot │ ├── telnet.c │ ├── telnet.pot │ ├── test.c │ ├── touch.c │ ├── touch.pot │ ├── tr │ ├── Makefile │ ├── bootmenu.po │ ├── cmdwin.po │ ├── computer.po │ ├── confedit.po │ ├── console.po │ ├── disprops.po │ ├── edit.po │ ├── filebrowse.po │ ├── filesys.po │ ├── ifconfig.po │ ├── keymap.po │ ├── lsdev.po │ ├── ping.po │ ├── progman.po │ ├── screenshot.po │ ├── shutdown.po │ ├── sysdiag.po │ └── wallpaper.po │ ├── umount.c │ ├── umount.pot │ ├── uname.c │ ├── uname.pot │ ├── unzip.c │ ├── unzip.pot │ ├── uptime.c │ ├── uptime.pot │ ├── users.c │ ├── users.pot │ ├── view.c │ ├── view.pot │ ├── vsh.c │ ├── vsh.pot │ ├── wallpaper.c │ ├── wallpaper.pot │ ├── zip.c │ └── zip.pot └── utils ├── Makefile ├── api2html.sh ├── api2txt.sh ├── archive-source.sh ├── blankfloppy.gz ├── blankusb.gz ├── change-year.sh ├── check-tree.sh ├── helpfiles.sh ├── image-cd.sh ├── image-floppy.sh ├── image-usb.sh ├── install.sh ├── langstrings.sh ├── makemsgs.sh ├── makepot.sh ├── mergepot.sh ├── release.sh ├── trim-whitespace.sh └── wget-site.sh /Makefile: -------------------------------------------------------------------------------- 1 | ## 2 | ## Visopsys 3 | ## Copyright (C) 1998-2018 J. Andrew McLaughlin 4 | ## 5 | ## Makefile 6 | ## 7 | 8 | # Top-level Makefile. 9 | 10 | BUILDDIR = build 11 | 12 | all: 13 | mkdir -p ${BUILDDIR}/system 14 | cp COPYING.txt ${BUILDDIR}/system/ 15 | ${MAKE} -C dist 16 | ${MAKE} -C src DEBUG=${DEBUG} 17 | ${MAKE} -C utils DEBUG=${DEBUG} 18 | 19 | debug: 20 | ${MAKE} all DEBUG=1 21 | 22 | clean: 23 | ${MAKE} -C dist clean 24 | ${MAKE} -C src clean 25 | ${MAKE} -C utils clean 26 | rm -f *~ core 27 | rm -Rf ${BUILDDIR} 28 | find -name '*.rej' -exec rm {} \; 29 | find -name '*.orig' -exec rm {} \; 30 | find . -type f -a ! -name '*.sh' -exec chmod -x {} \; 31 | 32 | -------------------------------------------------------------------------------- /contrib/ap0r-jens-spanish/ports/ntfsprogs/es/libntfs.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bbarker/Visopsys/46222ff8736e80712532a54a699ec1408ebcb502/contrib/ap0r-jens-spanish/ports/ntfsprogs/es/libntfs.po -------------------------------------------------------------------------------- /contrib/ap0r-jens-spanish/src/kernel/es/kernel.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bbarker/Visopsys/46222ff8736e80712532a54a699ec1408ebcb502/contrib/ap0r-jens-spanish/src/kernel/es/kernel.po -------------------------------------------------------------------------------- /contrib/ap0r-jens-spanish/src/programs/es/cmdwin.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bbarker/Visopsys/46222ff8736e80712532a54a699ec1408ebcb502/contrib/ap0r-jens-spanish/src/programs/es/cmdwin.po -------------------------------------------------------------------------------- /contrib/ap0r-jens-spanish/src/programs/es/computer.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bbarker/Visopsys/46222ff8736e80712532a54a699ec1408ebcb502/contrib/ap0r-jens-spanish/src/programs/es/computer.po -------------------------------------------------------------------------------- /contrib/ap0r-jens-spanish/src/programs/es/confedit.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bbarker/Visopsys/46222ff8736e80712532a54a699ec1408ebcb502/contrib/ap0r-jens-spanish/src/programs/es/confedit.po -------------------------------------------------------------------------------- /contrib/ap0r-jens-spanish/src/programs/es/console.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bbarker/Visopsys/46222ff8736e80712532a54a699ec1408ebcb502/contrib/ap0r-jens-spanish/src/programs/es/console.po -------------------------------------------------------------------------------- /contrib/ap0r-jens-spanish/src/programs/es/disprops.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bbarker/Visopsys/46222ff8736e80712532a54a699ec1408ebcb502/contrib/ap0r-jens-spanish/src/programs/es/disprops.po -------------------------------------------------------------------------------- /contrib/ap0r-jens-spanish/src/programs/es/edit.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bbarker/Visopsys/46222ff8736e80712532a54a699ec1408ebcb502/contrib/ap0r-jens-spanish/src/programs/es/edit.po -------------------------------------------------------------------------------- /contrib/ap0r-jens-spanish/src/programs/es/filebrowse.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bbarker/Visopsys/46222ff8736e80712532a54a699ec1408ebcb502/contrib/ap0r-jens-spanish/src/programs/es/filebrowse.po -------------------------------------------------------------------------------- /contrib/ap0r-jens-spanish/src/programs/es/filesys.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bbarker/Visopsys/46222ff8736e80712532a54a699ec1408ebcb502/contrib/ap0r-jens-spanish/src/programs/es/filesys.po -------------------------------------------------------------------------------- /contrib/ap0r-jens-spanish/src/programs/es/ifconfig.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bbarker/Visopsys/46222ff8736e80712532a54a699ec1408ebcb502/contrib/ap0r-jens-spanish/src/programs/es/ifconfig.po -------------------------------------------------------------------------------- /contrib/ap0r-jens-spanish/src/programs/es/keymap.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bbarker/Visopsys/46222ff8736e80712532a54a699ec1408ebcb502/contrib/ap0r-jens-spanish/src/programs/es/keymap.po -------------------------------------------------------------------------------- /contrib/ap0r-jens-spanish/src/programs/es/lsdev.po: -------------------------------------------------------------------------------- 1 | # Visopsys 2 | # Copyright (C) 1998-2013 J. Andrew McLaughlin 3 | # 4 | # Spanish Translation - 2013 - marianopbernacki@gmail.com 5 | msgid "" 6 | msgstr "" 7 | "Project-Id-Version: PACKAGE VERSION\n" 8 | "Report-Msgid-Bugs-To: \n" 9 | "POT-Creation-Date: 2009-05-13 02:14+0100\n" 10 | "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" 11 | "Last-Translator: FULL NAME \n" 12 | "Language-Team: LANGUAGE \n" 13 | "MIME-Version: 1.0\n" 14 | "Content-Type: text/plain; charset=ISO-8859-15\n" 15 | "Content-Transfer-Encoding: 8bit\n" 16 | 17 | #: lsdev.c:152 18 | msgid "System Device Information" 19 | msgstr "Informacion de dispositivos del sistema" 20 | -------------------------------------------------------------------------------- /contrib/ap0r-jens-spanish/src/programs/es/ping.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bbarker/Visopsys/46222ff8736e80712532a54a699ec1408ebcb502/contrib/ap0r-jens-spanish/src/programs/es/ping.po -------------------------------------------------------------------------------- /contrib/davide-fpu/src/include/sys/fpu.h: -------------------------------------------------------------------------------- 1 | # created by Davide Airaghi for FPU-state handling 2 | 3 | #if !defined(_FPU_H) 4 | 5 | #define FPU_STATE_LEN 108 6 | 7 | typedef struct { 8 | char state[FPU_STATE_LEN]; 9 | } __attribute__((packed)) fpu_state; 10 | 11 | #define FPU_STATUS_SAVE(fstat) asm volatile("fsave %0\n\t" : "=m" (*(fstat.state))); 12 | 13 | #define FPU_STATUS_RESTORE(fstat) __asm__("frstor %0\n\t" : "=m" (*(fstat.state))); 14 | 15 | #define FPU_STATUS_ZERO(fstat,i_fpu) for (i_fpu=0;i_fpu\n" 12 | "MIME-Version: 1.0\n" 13 | "Content-Type: text/plain; charset=iso-8859-5\n" 14 | "Content-Transfer-Encoding: 8bit\n" 15 | "X-Generator: Poedit 1.7.6\n" 16 | "Language-Team: \n" 17 | "Language: ru\n" 18 | 19 | #: lsdev.c:152 20 | #, fuzzy 21 | msgid "System Device Information" 22 | msgstr "System Device Information" 23 | -------------------------------------------------------------------------------- /contrib/liss-russian/src/programs/ru/mem.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bbarker/Visopsys/46222ff8736e80712532a54a699ec1408ebcb502/contrib/liss-russian/src/programs/ru/mem.po -------------------------------------------------------------------------------- /contrib/liss-russian/src/programs/ru/mines.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bbarker/Visopsys/46222ff8736e80712532a54a699ec1408ebcb502/contrib/liss-russian/src/programs/ru/mines.po -------------------------------------------------------------------------------- /contrib/liss-russian/src/programs/ru/mkdir.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bbarker/Visopsys/46222ff8736e80712532a54a699ec1408ebcb502/contrib/liss-russian/src/programs/ru/mkdir.po -------------------------------------------------------------------------------- /contrib/liss-russian/src/programs/ru/more.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bbarker/Visopsys/46222ff8736e80712532a54a699ec1408ebcb502/contrib/liss-russian/src/programs/ru/more.po -------------------------------------------------------------------------------- /contrib/liss-russian/src/programs/ru/mount.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bbarker/Visopsys/46222ff8736e80712532a54a699ec1408ebcb502/contrib/liss-russian/src/programs/ru/mount.po -------------------------------------------------------------------------------- /contrib/liss-russian/src/programs/ru/mv.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bbarker/Visopsys/46222ff8736e80712532a54a699ec1408ebcb502/contrib/liss-russian/src/programs/ru/mv.po -------------------------------------------------------------------------------- /contrib/liss-russian/src/programs/ru/nm.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bbarker/Visopsys/46222ff8736e80712532a54a699ec1408ebcb502/contrib/liss-russian/src/programs/ru/nm.po -------------------------------------------------------------------------------- /contrib/liss-russian/src/programs/ru/passwd.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bbarker/Visopsys/46222ff8736e80712532a54a699ec1408ebcb502/contrib/liss-russian/src/programs/ru/passwd.po -------------------------------------------------------------------------------- /contrib/liss-russian/src/programs/ru/ping.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bbarker/Visopsys/46222ff8736e80712532a54a699ec1408ebcb502/contrib/liss-russian/src/programs/ru/ping.po -------------------------------------------------------------------------------- /contrib/liss-russian/src/programs/ru/progman.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bbarker/Visopsys/46222ff8736e80712532a54a699ec1408ebcb502/contrib/liss-russian/src/programs/ru/progman.po -------------------------------------------------------------------------------- /contrib/liss-russian/src/programs/ru/ps.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bbarker/Visopsys/46222ff8736e80712532a54a699ec1408ebcb502/contrib/liss-russian/src/programs/ru/ps.po -------------------------------------------------------------------------------- /contrib/liss-russian/src/programs/ru/ramdisk.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bbarker/Visopsys/46222ff8736e80712532a54a699ec1408ebcb502/contrib/liss-russian/src/programs/ru/ramdisk.po -------------------------------------------------------------------------------- /contrib/liss-russian/src/programs/ru/reboot.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bbarker/Visopsys/46222ff8736e80712532a54a699ec1408ebcb502/contrib/liss-russian/src/programs/ru/reboot.po -------------------------------------------------------------------------------- /contrib/liss-russian/src/programs/ru/renice.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bbarker/Visopsys/46222ff8736e80712532a54a699ec1408ebcb502/contrib/liss-russian/src/programs/ru/renice.po -------------------------------------------------------------------------------- /contrib/liss-russian/src/programs/ru/rm.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bbarker/Visopsys/46222ff8736e80712532a54a699ec1408ebcb502/contrib/liss-russian/src/programs/ru/rm.po -------------------------------------------------------------------------------- /contrib/liss-russian/src/programs/ru/rmdir.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bbarker/Visopsys/46222ff8736e80712532a54a699ec1408ebcb502/contrib/liss-russian/src/programs/ru/rmdir.po -------------------------------------------------------------------------------- /contrib/liss-russian/src/programs/ru/screenshot.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bbarker/Visopsys/46222ff8736e80712532a54a699ec1408ebcb502/contrib/liss-russian/src/programs/ru/screenshot.po -------------------------------------------------------------------------------- /contrib/liss-russian/src/programs/ru/shutdown.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bbarker/Visopsys/46222ff8736e80712532a54a699ec1408ebcb502/contrib/liss-russian/src/programs/ru/shutdown.po -------------------------------------------------------------------------------- /contrib/liss-russian/src/programs/ru/snake.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bbarker/Visopsys/46222ff8736e80712532a54a699ec1408ebcb502/contrib/liss-russian/src/programs/ru/snake.po -------------------------------------------------------------------------------- /contrib/liss-russian/src/programs/ru/sysdiag.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bbarker/Visopsys/46222ff8736e80712532a54a699ec1408ebcb502/contrib/liss-russian/src/programs/ru/sysdiag.po -------------------------------------------------------------------------------- /contrib/liss-russian/src/programs/ru/telnet.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bbarker/Visopsys/46222ff8736e80712532a54a699ec1408ebcb502/contrib/liss-russian/src/programs/ru/telnet.po -------------------------------------------------------------------------------- /contrib/liss-russian/src/programs/ru/touch.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bbarker/Visopsys/46222ff8736e80712532a54a699ec1408ebcb502/contrib/liss-russian/src/programs/ru/touch.po -------------------------------------------------------------------------------- /contrib/liss-russian/src/programs/ru/umount.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bbarker/Visopsys/46222ff8736e80712532a54a699ec1408ebcb502/contrib/liss-russian/src/programs/ru/umount.po -------------------------------------------------------------------------------- /contrib/liss-russian/src/programs/ru/uptime.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bbarker/Visopsys/46222ff8736e80712532a54a699ec1408ebcb502/contrib/liss-russian/src/programs/ru/uptime.po -------------------------------------------------------------------------------- /contrib/liss-russian/src/programs/ru/users.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bbarker/Visopsys/46222ff8736e80712532a54a699ec1408ebcb502/contrib/liss-russian/src/programs/ru/users.po -------------------------------------------------------------------------------- /contrib/liss-russian/src/programs/ru/view.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bbarker/Visopsys/46222ff8736e80712532a54a699ec1408ebcb502/contrib/liss-russian/src/programs/ru/view.po -------------------------------------------------------------------------------- /contrib/liss-russian/src/programs/ru/vsh.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bbarker/Visopsys/46222ff8736e80712532a54a699ec1408ebcb502/contrib/liss-russian/src/programs/ru/vsh.po -------------------------------------------------------------------------------- /contrib/liss-russian/src/programs/ru/wallpaper.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bbarker/Visopsys/46222ff8736e80712532a54a699ec1408ebcb502/contrib/liss-russian/src/programs/ru/wallpaper.po -------------------------------------------------------------------------------- /dist/Makefile: -------------------------------------------------------------------------------- 1 | ## 2 | ## Visopsys 3 | ## Copyright (C) 1998-2018 J. Andrew McLaughlin 4 | ## 5 | ## Makefile 6 | ## 7 | 8 | BUILDDIR = ../build 9 | 10 | all: 11 | mkdir -p ${BUILDDIR}/temp 12 | mkdir -p ${BUILDDIR}/users 13 | ${MAKE} -C programs 14 | ${MAKE} -C system 15 | 16 | clean: 17 | ${MAKE} -C programs clean 18 | ${MAKE} -C system clean 19 | rm -f *~ core 20 | rm -Rf ${BUILDDIR}/temp 21 | rm -Rf ${BUILDDIR}/users 22 | 23 | -------------------------------------------------------------------------------- /dist/programs/Makefile: -------------------------------------------------------------------------------- 1 | ## 2 | ## Visopsys 3 | ## Copyright (C) 1998-2018 J. Andrew McLaughlin 4 | ## 5 | ## Makefile 6 | ## 7 | 8 | BUILDDIR = ../../build/programs 9 | 10 | all: 11 | ${MAKE} -C fontutil.dir 12 | ${MAKE} -C helpfiles 13 | ${MAKE} -C mines.dir 14 | ${MAKE} -C snake.dir 15 | 16 | clean: 17 | ${MAKE} -C fontutil.dir clean 18 | ${MAKE} -C helpfiles clean 19 | ${MAKE} -C mines.dir clean 20 | ${MAKE} -C snake.dir clean 21 | rm -f *~ core 22 | 23 | -------------------------------------------------------------------------------- /dist/programs/fontutil.dir/ASCII.txt: -------------------------------------------------------------------------------- 1 | !"#$%&'()*+,-./ 2 | 0123456789:;<=>? 3 | @ABCDEFGHIJKLMNO 4 | PQRSTUVWXYZ[\]^_ 5 | `abcdefghijklmno 6 | pqrstuvwxyz{|}~ 7 | 8 | -------------------------------------------------------------------------------- /dist/programs/fontutil.dir/ISO-8859-15.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bbarker/Visopsys/46222ff8736e80712532a54a699ec1408ebcb502/dist/programs/fontutil.dir/ISO-8859-15.txt -------------------------------------------------------------------------------- /dist/programs/fontutil.dir/ISO-8859-16.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bbarker/Visopsys/46222ff8736e80712532a54a699ec1408ebcb502/dist/programs/fontutil.dir/ISO-8859-16.txt -------------------------------------------------------------------------------- /dist/programs/fontutil.dir/ISO-8859-5.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bbarker/Visopsys/46222ff8736e80712532a54a699ec1408ebcb502/dist/programs/fontutil.dir/ISO-8859-5.txt -------------------------------------------------------------------------------- /dist/programs/fontutil.dir/ISO-8859-9.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bbarker/Visopsys/46222ff8736e80712532a54a699ec1408ebcb502/dist/programs/fontutil.dir/ISO-8859-9.txt -------------------------------------------------------------------------------- /dist/programs/fontutil.dir/Makefile: -------------------------------------------------------------------------------- 1 | ## 2 | ## Visopsys 3 | ## Copyright (C) 1998-2018 J. Andrew McLaughlin 4 | ## 5 | ## Makefile 6 | ## 7 | 8 | BUILDDIR = ../../../build/programs/fontutil.dir 9 | 10 | FONTDIRS = $(addprefix ${BUILDDIR}/, ${DIRNAMES}) 11 | 12 | all: 13 | mkdir -p ${BUILDDIR} 14 | cp *.txt ${BUILDDIR} 15 | 16 | clean: 17 | rm -f *~ core 18 | rm -Rf ${BUILDDIR} 19 | 20 | -------------------------------------------------------------------------------- /dist/programs/helpfiles/Makefile: -------------------------------------------------------------------------------- 1 | ## 2 | ## Visopsys 3 | ## Copyright (C) 1998-2018 J. Andrew McLaughlin 4 | ## 5 | ## Makefile 6 | ## 7 | 8 | BUILDDIR = ../../../build/programs/helpfiles 9 | 10 | all: 11 | mkdir -p ${BUILDDIR} 12 | cp *.txt ${BUILDDIR} 13 | 14 | clean: 15 | rm -f *~ core 16 | rm -Rf ${BUILDDIR} 17 | 18 | -------------------------------------------------------------------------------- /dist/programs/helpfiles/adduser.txt: -------------------------------------------------------------------------------- 1 | 2 | -- adduser -- 3 | 4 | Add a user account to the system 5 | 6 | Usage: 7 | adduser 8 | 9 | The adduser program is a very simple method of adding a user account. The 10 | resulting account has no password assigned (you can use the passwd command 11 | to set the password). 12 | 13 | -------------------------------------------------------------------------------- /dist/programs/helpfiles/archman.txt: -------------------------------------------------------------------------------- 1 | 2 | -- archman -- 3 | 4 | A graphical program for managing archive files. 5 | 6 | Usage: 7 | archman [archive] 8 | 9 | The archman program is interactive, and may only be used in graphics 10 | mode. It displays a window with icons representing archive menbers. 11 | 12 | -------------------------------------------------------------------------------- /dist/programs/helpfiles/bootmenu.txt: -------------------------------------------------------------------------------- 1 | 2 | -- bootmenu -- 3 | 4 | This program will install or edit the boot loader menu. 5 | 6 | Usage: 7 | bootmenu 8 | 9 | The 'bootmenu' program is interactive, and operates in both text and 10 | graphics modes. It allows the 'admin' user to install the Visopsys boot 11 | loader program on a hard disk, and edit the menu options that appear. 12 | 13 | Example: 14 | bootmenu hd0 15 | 16 | This example will launch the bootmenu program to install or edit the boot 17 | choices for the first hard disk, hd0. 18 | 19 | -------------------------------------------------------------------------------- /dist/programs/helpfiles/cal.txt: -------------------------------------------------------------------------------- 1 | 2 | -- cal -- 3 | 4 | Display the days of the current calendar month. 5 | 6 | Usage: 7 | cal [-T] 8 | 9 | In graphics mode, the program is interactive and allows the user to change 10 | the month and year to display. 11 | 12 | Options: 13 | -T : Force text mode operation 14 | 15 | -------------------------------------------------------------------------------- /dist/programs/helpfiles/calc.txt: -------------------------------------------------------------------------------- 1 | 2 | -- calc -- 3 | 4 | A calculator program. 5 | 6 | The button labelled "dec" changes the current numeric base, if you press it 7 | once, the current numeric base will be hexadecimal and the button will now be 8 | labelled "hex". If you press it twice the base will be octal and the button 9 | labelled "oct". Pressing it three times restarts the cycle with "dec" and so 10 | on. 11 | 12 | Floating point behavior might look a bit strange to people not accustomed to 13 | binary floating point operation: in fact, after typing some floating number, 14 | you might see it gets turned into another number. This happens due to the 15 | structure of binary floating pointer numbers. 16 | 17 | Usage: 18 | calc 19 | 20 | (Only available in graphics mode) 21 | 22 | -------------------------------------------------------------------------------- /dist/programs/helpfiles/cat.txt: -------------------------------------------------------------------------------- 1 | 2 | -- cat -- 3 | 4 | Print a file's contents on the screen. 5 | 6 | Synonym: 7 | type 8 | 9 | Usage: 10 | cat [file2] [file3] [...] 11 | 12 | Each file name listed after the command name will be printed in sequence. 13 | 14 | -------------------------------------------------------------------------------- /dist/programs/helpfiles/cd.txt: -------------------------------------------------------------------------------- 1 | 2 | -- cd -- 3 | 4 | Change the current directory. 5 | 6 | Usage: 7 | cd [directory_name] 8 | 9 | The (optional) directory name can be either an absolute pathname, or a 10 | relative one. If no directory name is specified, the user's 'default' 11 | directory will be used 12 | 13 | -------------------------------------------------------------------------------- /dist/programs/helpfiles/cdrom.txt: -------------------------------------------------------------------------------- 1 | 2 | -- cdrom -- 3 | 4 | This command can be used to control operations of CD-ROM devices. 5 | 6 | Usage: 7 | cdrom [disk_name] [operation] 8 | 9 | where 'operation' is one of: open, eject, close, lock, unlock 10 | 11 | The first (optional) parameter is the name of a CD-ROM disk. If no disk 12 | name is specified, the cdrom command will attempt to guess the most likely 13 | device (the first CD-ROM device identified by the system). The second 14 | (optional) argument tells the CD-ROM which operation to perform. 15 | 16 | If no disk name or operation are specified, the program prints out the names 17 | of CD-ROM devices it thinks are available to the system. Use the 'disks' 18 | command to print out the names of all disks. 19 | 20 | -------------------------------------------------------------------------------- /dist/programs/helpfiles/chkdisk.txt: -------------------------------------------------------------------------------- 1 | 2 | -- chkdisk -- 3 | 4 | This command can be used to perform a filesystem integrity check on a 5 | logical disk. 6 | 7 | Usage: 8 | chkdisk 9 | 10 | The first parameter is the name of a disk (use the 'disks' command to list 11 | the disks). A check will be performed if the disk's filesystem is of a 12 | recognized type, and the applicable filesystem driver supports a checking 13 | function. 14 | 15 | -------------------------------------------------------------------------------- /dist/programs/helpfiles/clock.txt: -------------------------------------------------------------------------------- 1 | 2 | -- clock -- 3 | 4 | Show a simple clock in the taskbar menu of the window shell. 5 | 6 | Usage: 7 | clock 8 | 9 | (Only available in graphics mode) 10 | 11 | -------------------------------------------------------------------------------- /dist/programs/helpfiles/cmdwin.txt: -------------------------------------------------------------------------------- 1 | 2 | -- cmdwin -- 3 | 4 | Open a new command window. 5 | 6 | Usage: 7 | cmdwin 8 | 9 | (Only available in graphics mode) 10 | 11 | This command will open a new text window running a new instance of the 12 | 'vsh' command shell. 13 | 14 | -------------------------------------------------------------------------------- /dist/programs/helpfiles/computer.txt: -------------------------------------------------------------------------------- 1 | 2 | -- computer -- 3 | 4 | A graphical program for navigating the resources of the computer. 5 | 6 | Usage: 7 | computer 8 | 9 | The computer program is interactive, and may only be used in graphics mode. 10 | It displays a window with icons representing media resources such as floppy 11 | disks, hard disks, CD-ROMs, and flash disks. Clicking on an icon will cause 12 | the system to attempt to mount (if necessary) the volume and open a file 13 | browser window for that filesystem. 14 | 15 | -------------------------------------------------------------------------------- /dist/programs/helpfiles/confedit.txt: -------------------------------------------------------------------------------- 1 | 2 | -- confedit -- 3 | 4 | Edit Visopsys configuration files 5 | 6 | Usage: 7 | confedit [file_name] 8 | 9 | (Only available in graphics mode) 10 | 11 | The confedit (Configuration Editor) program is interactive. The name of the 12 | file to edit can (optionally) be specified on the command line; otherwise 13 | the program will prompt for the name of the file. You can add, delete, and 14 | modify variables. 15 | 16 | Examples of configuration files include the kernel configuration, 17 | kernel.conf, and the window manager configuration, window.conf. 18 | 19 | -------------------------------------------------------------------------------- /dist/programs/helpfiles/console.txt: -------------------------------------------------------------------------------- 1 | 2 | -- console -- 3 | 4 | Launch a console window. 5 | 6 | Usage: 7 | console 8 | 9 | (Only available in graphics mode) 10 | 11 | This command will launch a window in which console messages are displayed. 12 | This is useful for viewing logging or error messages that do not appear 13 | in other windows. 14 | 15 | -------------------------------------------------------------------------------- /dist/programs/helpfiles/copy-boot.txt: -------------------------------------------------------------------------------- 1 | 2 | -- copy-boot -- 3 | 4 | Write a Visopsys boot sector. 5 | 6 | Usage: 7 | copy-boot 8 | 9 | The copy-boot command copies the named boot sector image to the named 10 | physical disk. Not useful to most users under normal circumstances. It 11 | is used, for example, by the installation program. It could also be useful 12 | in a system rescue situation. 13 | 14 | Example: 15 | copy-boot /system/boot/bootsect.fat32 hd0 16 | 17 | -------------------------------------------------------------------------------- /dist/programs/helpfiles/copy-mbr.txt: -------------------------------------------------------------------------------- 1 | 2 | -- copy-mbr -- 3 | 4 | Write a Visopsys MBR sector. 5 | 6 | Usage: 7 | copy-mbr 8 | 9 | The copy-mbr command copies the MBR (master boot record) image to the 10 | named physical disk. Not useful to most users under normal circumstances; 11 | Rather more useful in a system rescue situation, where a DOS-like automatic 12 | booting of the 'active' partition is desired. 13 | 14 | Example: 15 | copy-mbr /system/boot/mbr.simple hd0 16 | 17 | -------------------------------------------------------------------------------- /dist/programs/helpfiles/date.txt: -------------------------------------------------------------------------------- 1 | 2 | -- date -- 3 | 4 | Print the date and time. 5 | 6 | Usage: 7 | date 8 | 9 | -------------------------------------------------------------------------------- /dist/programs/helpfiles/defrag.txt: -------------------------------------------------------------------------------- 1 | 2 | -- defrag -- 3 | 4 | This command will defragment a filesystem. 5 | 6 | Usage: 7 | defrag [-s] [-T] [disk_name] 8 | 9 | The 'defrag' program is interactive, and operates in both text and graphics 10 | modes. The -T option forces defrag to operate in text-only mode. The -s 11 | option forces 'silent' mode (i.e. no unnecessary output or status messages 12 | are printed/displayed). 13 | 14 | The last (optional) parameter is the name of a (logical) disk to defragment 15 | (use the 'disks' command to list the disks). A defrag can only proceed if 16 | the driver for the requested filesystem type supports this functionality. 17 | 18 | Options: 19 | -s : Silent mode 20 | -T : Force text mode operation 21 | 22 | -------------------------------------------------------------------------------- /dist/programs/helpfiles/deluser.txt: -------------------------------------------------------------------------------- 1 | 2 | -- deluser -- 3 | 4 | Delete a user account from the system 5 | 6 | Usage: 7 | deluser 8 | 9 | The deluser program is a very simple method of deleting a user account. 10 | 11 | -------------------------------------------------------------------------------- /dist/programs/helpfiles/disks.txt: -------------------------------------------------------------------------------- 1 | 2 | -- disks -- 3 | 4 | Print all of the logical disks attached to the system. 5 | 6 | Usage: 7 | disks 8 | 9 | This command will print all of the disks by name, along with any device, 10 | filesystem, or logical partition information that is appropriate. 11 | 12 | Disk names start with certain combinations of letters which tend to indicate 13 | the type of disk. Examples 14 | 15 | cd0 - First CD-ROM disk 16 | fd1 - Second floppy disk 17 | hd0b - Second logical partition on the first hard disk. 18 | 19 | Note in the third example above, the physical device is the first hard disk, 20 | hd0. Logical partitions are specified with letters, in partition table order 21 | (a = first partition, b = second partition, etc.). 22 | 23 | -------------------------------------------------------------------------------- /dist/programs/helpfiles/disprops.txt: -------------------------------------------------------------------------------- 1 | 2 | -- disprops -- 3 | 4 | Control the display properties 5 | 6 | Usage: 7 | disprops 8 | 9 | The disprops program is interactive, and may only be used in graphics mode. 10 | It can be used to change display settings, such as the screen resolution, 11 | the background wallpaper, and the base colors used by the window manager. 12 | 13 | -------------------------------------------------------------------------------- /dist/programs/helpfiles/domainname.txt: -------------------------------------------------------------------------------- 1 | 2 | -- domainname -- 3 | 4 | Prints or sets the system's network domain name. 5 | 6 | Usage: 7 | domainname [name] 8 | 9 | If a name parameter is supplied, the domain name will be set to that name. 10 | Otherwise, the program prints out the current domain name. If networking 11 | has not been enabled, this command has no effect. 12 | 13 | -------------------------------------------------------------------------------- /dist/programs/helpfiles/edit.txt: -------------------------------------------------------------------------------- 1 | 2 | -- edit -- 3 | 4 | Simple, interactive text editor. 5 | 6 | Usage: 7 | edit [-T] [file] 8 | 9 | (Only available in graphics mode) 10 | 11 | Options: 12 | -T : Force text mode operation 13 | 14 | -------------------------------------------------------------------------------- /dist/programs/helpfiles/fdisk.txt: -------------------------------------------------------------------------------- 1 | 2 | -- fdisk -- 3 | 4 | Also known as the "Disk Manager", fdisk is a hard disk partitioning tool. 5 | It can create, delete, format, resize, and move partitions and modify their 6 | attributes. It can copy entire hard disks from one to another. 7 | 8 | Usage: 9 | fdisk [-T] [disk_name] 10 | 11 | The fdisk program is interactive, and can be used in either text or graphics 12 | mode. It provides the same functionality in both modes; text mode operation 13 | is menu-driven. 14 | 15 | The disk can be automatically selected by specifying its name (as listed by 16 | the 'disks' command) as the last argument. 17 | 18 | Options: 19 | -T : Force text mode operation 20 | 21 | -------------------------------------------------------------------------------- /dist/programs/helpfiles/file.txt: -------------------------------------------------------------------------------- 1 | 2 | -- file -- 3 | 4 | Show the type of a file. 5 | 6 | Usage: 7 | file [file2] [...] 8 | 9 | The file command queries the system about its idea of the data type(s) of 10 | the named file(s). 11 | 12 | Example: 13 | file /visopsys 14 | 15 | Will produce the output: 16 | visopsys: ELF binary executable 17 | 18 | -------------------------------------------------------------------------------- /dist/programs/helpfiles/filesys.txt: -------------------------------------------------------------------------------- 1 | 2 | -- filesys -- 3 | 4 | Program for specifying mounting characteristics of file systems. 5 | 6 | Usage: 7 | filesys 8 | 9 | The 'filesys' (File Systems) program is interactive, and may only be used 10 | in graphics mode. It can be used to edit the mount configuration file to 11 | specify mount points of file systems, and whether or not to auto-mount 12 | them at boot time. 13 | 14 | -------------------------------------------------------------------------------- /dist/programs/helpfiles/find.txt: -------------------------------------------------------------------------------- 1 | 2 | -- find -- 3 | 4 | A command for traversing directory trees. 5 | 6 | Usage: 7 | find [start_dir] 8 | 9 | This command is designed to recursively descend through directory trees. 10 | The (optional) starting directory parameter can be supplied, or else the 11 | current directory will be used. 12 | 13 | This command is very limited at the moment, and has no filtering ability, 14 | execution ability, or anything really. It will be developed more fully in 15 | the future, but was added at the present time to facilitate the development 16 | of filesystem drivers (as a testing mechanism) 17 | 18 | -------------------------------------------------------------------------------- /dist/programs/helpfiles/hexdump.txt: -------------------------------------------------------------------------------- 1 | 2 | -- hexdump -- 3 | 4 | A program for viewing files as hexadecimal listings. 5 | 6 | Usage: 7 | hexdump 8 | 9 | Example: 10 | 11 | This command is of only marginal usefulness to most users. It is primarily 12 | intended for developers who want to look at binary files in detail. 13 | 14 | -------------------------------------------------------------------------------- /dist/programs/helpfiles/hostname.txt: -------------------------------------------------------------------------------- 1 | 2 | -- hostname -- 3 | 4 | Prints or sets the system's network host name. 5 | 6 | Usage: 7 | hostname [name] 8 | 9 | If a name parameter is supplied, the host name will be set to that name. 10 | Otherwise, the program prints out the current host name. If networking 11 | has not been enabled, this command has no effect. 12 | 13 | -------------------------------------------------------------------------------- /dist/programs/helpfiles/iconwin.txt: -------------------------------------------------------------------------------- 1 | 2 | -- iconwin -- 3 | 4 | A program for displaying custom icon windows. 5 | 6 | Usage: 7 | iconwin 8 | 9 | The iconwin program is interactive, and may only be used in graphics mode. 10 | It creates a window with icons, as specified in the named configuration file. 11 | The 'Administration' icon, for example, on the default Visopsys desktop 12 | uses the iconwin program to display the relevant administration tasks with 13 | custom icons for each. 14 | 15 | -------------------------------------------------------------------------------- /dist/programs/helpfiles/ifconfig.txt: -------------------------------------------------------------------------------- 1 | 2 | -- ifconfig -- 3 | 4 | Network device control. 5 | 6 | Usage: 7 | ifconfig [-T] [-e] [-d] [device_name] 8 | 9 | This command will show information about the system's network devices, and 10 | allow a privileged user to perform various network administration tasks. 11 | 12 | In text mode: 13 | 14 | The -d option will will disable networking, de-configuring network devices. 15 | 16 | The -e option will enable networking, causing network devices to be 17 | configured. 18 | 19 | In graphics mode, the program is interactive and the user can view network 20 | device status and perform tasks visually. 21 | 22 | Options: 23 | -d : Disable networking (text mode). 24 | -e : Enable networking (text mode). 25 | -T : Force text mode operation 26 | 27 | -------------------------------------------------------------------------------- /dist/programs/helpfiles/imgboot.txt: -------------------------------------------------------------------------------- 1 | 2 | -- imgboot -- 3 | 4 | The program launched at first system boot. 5 | 6 | Usage: 7 | imgboot [-T] 8 | 9 | This program is the default 'first boot' program on Visopsys floppy or 10 | CD-ROM image files that asks if you want to 'install' or 'run now'. 11 | 12 | Options: 13 | -T : Force text mode operation 14 | 15 | -------------------------------------------------------------------------------- /dist/programs/helpfiles/imgedit.txt: -------------------------------------------------------------------------------- 1 | 2 | -- imgedit -- 3 | 4 | Simple image editor 5 | 6 | Usage: 7 | imgedit [options] [file] 8 | 9 | Options: 10 | -s : Save as same file name (don't prompt) 11 | 12 | -------------------------------------------------------------------------------- /dist/programs/helpfiles/install.txt: -------------------------------------------------------------------------------- 1 | 2 | -- install -- 3 | 4 | This program will install a copy of Visopsys on another disk. 5 | 6 | Usage: 7 | install [-T] [disk_name] 8 | 9 | The 'install' program is interactive, but a logical disk parameter can 10 | (optionally) be specified on the command line. If no disk is specified, 11 | then the user will be prompted to choose from a menu. Use the 'disks' 12 | command to list the available disks. 13 | 14 | Options: 15 | -T : Force text mode operation 16 | 17 | -------------------------------------------------------------------------------- /dist/programs/helpfiles/keyboard.txt: -------------------------------------------------------------------------------- 1 | 2 | -- keyboard -- 3 | 4 | Display a virtual keyboard 5 | 6 | Usage: 7 | keyboard [-i] 8 | 9 | The -i flag means run in an 'iconified' mode. 10 | 11 | -------------------------------------------------------------------------------- /dist/programs/helpfiles/kill.txt: -------------------------------------------------------------------------------- 1 | 2 | -- kill -- 3 | 4 | Kill (stop) programs or processes. 5 | 6 | Usage: 7 | kill [-f] [process2] [...] 8 | 9 | The 'kill' command can be used to stop and eliminate one or more programs or 10 | processes. The '-f' option means 'force' (i.e., stop the program even if it 11 | is not responding, or if there are errors of various types). If no -f option 12 | is specified, the kill operation will tend to quit if errors are encountered 13 | while dismantling a process. The only mandatory parameter is a process ID 14 | number (and, optionally, any number of additional process ID numbers). To 15 | see a list of running processes, use the 'ps' command. 16 | 17 | Options: 18 | -f : Force kill -- ignore errors. 19 | 20 | -------------------------------------------------------------------------------- /dist/programs/helpfiles/logout.txt: -------------------------------------------------------------------------------- 1 | 2 | -- logout -- 3 | 4 | End the current login session. 5 | 6 | Synonym: 7 | exit 8 | 9 | Usage: 10 | logout 11 | 12 | -------------------------------------------------------------------------------- /dist/programs/helpfiles/ls.txt: -------------------------------------------------------------------------------- 1 | 2 | -- ls -- 3 | 4 | List files. 5 | 6 | Synonym: 7 | dir 8 | 9 | Usage: 10 | ls [name1] [name2] [...] 11 | 12 | This command will list (show information about) one or more files or 13 | directories. If no parameters are specified, 'ls' will display the contents 14 | of the current directory. If any of the parameters specify directories, 15 | all of the files in those directories are displayed. If any of the parameters 16 | are the names of individual files, then information about those specific 17 | files are displayed. 18 | 19 | -------------------------------------------------------------------------------- /dist/programs/helpfiles/lsdev.txt: -------------------------------------------------------------------------------- 1 | 2 | -- lsdev -- 3 | 4 | Display devices. 5 | 6 | Usage: 7 | lsdev [-T] 8 | 9 | This command will show a listing of the system's hardware devices. 10 | 11 | Options: 12 | -T : Force text mode operation 13 | 14 | -------------------------------------------------------------------------------- /dist/programs/helpfiles/md5.txt: -------------------------------------------------------------------------------- 1 | 2 | -- md5 -- 3 | 4 | Calculate and print one or more MD5 digests. MD5 is a one-way hashing 5 | algorithm which can be used to calculate checksums or hash passwords. 6 | 7 | Usage: 8 | md5 [string1] [string2] [...] 9 | 10 | This command will print one line of MD5 digest for each string parameter 11 | supplied. If no parameter is supplied, the digest will still be created, 12 | but for an empty string (which is "d41d8cd98f00b204e9800998ecf8427e"). 13 | 14 | -------------------------------------------------------------------------------- /dist/programs/helpfiles/mem.txt: -------------------------------------------------------------------------------- 1 | 2 | -- mem -- 3 | 4 | A command to display current memory utilization 5 | 6 | Usage: 7 | mem [-k] 8 | 9 | This command prints a listing of memory allocations, plus a summary at the 10 | end. If the (optional) '-k' parameter is supplied, then 'mem' will display 11 | system (kernel) memory usage instead. 12 | 13 | Options: 14 | -k : Show kernel memory usage 15 | 16 | -------------------------------------------------------------------------------- /dist/programs/helpfiles/mines.txt: -------------------------------------------------------------------------------- 1 | 2 | -- mines -- 3 | 4 | A mine sweeper game. 5 | 6 | Usage: 7 | mines 8 | 9 | -------------------------------------------------------------------------------- /dist/programs/helpfiles/mkdir.txt: -------------------------------------------------------------------------------- 1 | 2 | -- mkdir -- 3 | 4 | Create one or more new directories. 5 | 6 | Usage: 7 | mkdir [-p] [directory2] [...] 8 | 9 | This command can be used to create one or more new directories. The first 10 | parameter is the name of a new directory to create. Any number of other 11 | (optional) directories to create can be specified at the same time. 12 | 13 | Options: 14 | -p : Create parent directories, if necessary. 15 | 16 | -------------------------------------------------------------------------------- /dist/programs/helpfiles/more.txt: -------------------------------------------------------------------------------- 1 | 2 | -- more -- 3 | 4 | Display file's contents, one screenfull at a time. 5 | 6 | Usage: 7 | more [file2] [...] 8 | 9 | Each file name listed after the command name will be printed in sequence. 10 | This is similar to the 'cat' command, except that the file contents are 11 | displayed one screenfull at a time. To page forward to the next screenfull, 12 | press the [SPACE] key. To quit, press the [Q] key. To advance by a single 13 | line, press any other key. 14 | 15 | -------------------------------------------------------------------------------- /dist/programs/helpfiles/mv.txt: -------------------------------------------------------------------------------- 1 | 2 | -- mv -- 3 | 4 | Move (rename) files. 5 | 6 | Synonym: 7 | move, ren, rename 8 | 9 | Usage: 10 | mv [item2] [...] 11 | 12 | This command will move one or more files or directories. If one item is 13 | being moved, then the last argument can be either the new name, or else can 14 | be a destination directory -- in which case the moved file will retain the 15 | same name as before. If multiple items are being moved, then the last 16 | argument must be a directory name and all moved items will retain the same 17 | names. 18 | 19 | -------------------------------------------------------------------------------- /dist/programs/helpfiles/nm.txt: -------------------------------------------------------------------------------- 1 | 2 | -- nm -- 3 | 4 | Show information about a dynamic library file. 5 | 6 | Usage: 7 | nm [file2] [...] 8 | 9 | This command is useful to software developers. For each name listed after 10 | the command, representing a shared library file (usually ending with a .so 11 | extension) or dynamically-linked executable, nm will print a catalogue of 12 | information about its symbols. Data symbols, functions, sections, and other 13 | items are shown, along with their bindings (such as 'local', 'global', or 14 | 'weak'). 15 | 16 | -------------------------------------------------------------------------------- /dist/programs/helpfiles/passwd.txt: -------------------------------------------------------------------------------- 1 | 2 | -- passwd -- 3 | 4 | Set the password on a user account. 5 | 6 | Usage: 7 | passwd [user_name] 8 | 9 | The passwd program is a very simple method of setting a password for an 10 | account. The program operates in either text or graphics mode, is 11 | interactive, and requires the password to be entered twice at a prompt. 12 | 13 | If no user name is specified, the program will assume the current user. 14 | 15 | If the user does not have administrator privileges, they will be prompted 16 | to enter the old password (if one exists). 17 | 18 | -------------------------------------------------------------------------------- /dist/programs/helpfiles/ping.txt: -------------------------------------------------------------------------------- 1 | 2 | -- ping -- 3 | 4 | 'Ping' a host on the network. 5 | 6 | Usage: 7 | ping [-T]
8 | 9 | This command will send 'echo request' (ping) packets across the network to 10 | the requested host, and show information about any response acquired from 11 | that host. The most common usage of this command is to test network 12 | connectivity. 13 | 14 | Options: 15 | -T : Force text mode operation 16 | 17 | -------------------------------------------------------------------------------- /dist/programs/helpfiles/progman.txt: -------------------------------------------------------------------------------- 1 | 2 | -- progman -- 3 | 4 | Also known as the "Program Manager", progman is used to manage processes. 5 | 6 | Usage: 7 | progman 8 | 9 | (Only available in graphics mode) 10 | 11 | The progman program is interactive, and shows a constantly-updated list of 12 | running processes and threads, including statistics such as CPU and memory 13 | usage. It is a graphical utility combining the same functionalities as the 14 | 'ps', 'mem', 'kill', and 'renice' command-line programs. 15 | 16 | -------------------------------------------------------------------------------- /dist/programs/helpfiles/ps.txt: -------------------------------------------------------------------------------- 1 | 2 | -- ps -- 3 | 4 | Print all of the running processes 5 | 6 | Usage: 7 | ps 8 | 9 | This command will print all of the running processes, their process IDs, 10 | privilege level, priority level, CPU utilization and other statistics. 11 | 12 | -------------------------------------------------------------------------------- /dist/programs/helpfiles/pwd.txt: -------------------------------------------------------------------------------- 1 | 2 | -- pwd -- 3 | 4 | Print the current directory. 5 | 6 | Usage: 7 | pwd 8 | 9 | -------------------------------------------------------------------------------- /dist/programs/helpfiles/reboot.txt: -------------------------------------------------------------------------------- 1 | 2 | -- reboot -- 3 | 4 | A command for rebooting the computer. 5 | 6 | Usage: 7 | reboot [-e] [-f] 8 | 9 | This command causes the system to reboot. If the (optional) '-e' parameter 10 | is supplied, then 'reboot' will attempt to eject the boot medium (if 11 | applicable, such as a CD-ROM). If the (optional) '-f' parameter is 12 | supplied, then it will attempt to ignore errors and reboot regardless. 13 | Use this flag with caution if filesystems do not appear to be unmounting 14 | correctly; you may need to back up unsaved data before rebooting. 15 | 16 | Options: 17 | -e : Eject the boot medium. 18 | -f : Force reboot and ignore errors. 19 | 20 | -------------------------------------------------------------------------------- /dist/programs/helpfiles/renice.txt: -------------------------------------------------------------------------------- 1 | 2 | -- renice -- 3 | 4 | Change the priority level(s) of one or more processes. 5 | 6 | Usage: 7 | renice [process2] [...] 8 | 9 | The 'renice' command can be used to change the priority level(s) of one or 10 | more processes. The first parameter is the new priority level for the 11 | process(es). Priority level can be from 0-7, with 0 being highest (real time) 12 | priority and 7 being lowest. The second parameter (and, optionally, any 13 | number of additional parameters) is the process ID of the process to change. 14 | To see a list of running processes, use the 'ps' command. 15 | 16 | -------------------------------------------------------------------------------- /dist/programs/helpfiles/rm.txt: -------------------------------------------------------------------------------- 1 | 2 | -- rm -- 3 | 4 | Remove (delete) one or more files. 5 | 6 | Synonym: 7 | del 8 | 9 | Usage: 10 | rm [-R] [-S#] [file2] [...] 11 | 12 | This command will remove one or more files. Normally it will not remove 13 | directories. To remove a directory, use the 'rmdir' command. 14 | 15 | Options: 16 | -R : Force recursive deletion, including directories. 17 | -S[number] : Securely delete the file by overwriting it with random 18 | : data (number minus 1 times) and then NULLs, and then 19 | : deleting the file. The default number value is 5 if no 20 | : value is supplied. 21 | 22 | Note the -S option is not allowed if the -R option is used. 23 | 24 | -------------------------------------------------------------------------------- /dist/programs/helpfiles/rmdir.txt: -------------------------------------------------------------------------------- 1 | 2 | -- rmdir -- 3 | 4 | Remove (delete) one or more empty directories. 5 | 6 | Usage: 7 | rmdir [directory2] [...] 8 | 9 | This command will remove one or more empty directories. It will not remove 10 | regular files. To remove a file, use the 'rm' command. 11 | 12 | -------------------------------------------------------------------------------- /dist/programs/helpfiles/screenshot.txt: -------------------------------------------------------------------------------- 1 | 2 | -- screenshot -- 3 | 4 | Save the current screen to an image file. 5 | 6 | Usage: 7 | screenshot [file_name] 8 | 9 | (Only available in graphics mode) 10 | 11 | The (optional) file name can be an absolute pathname under which the 12 | screenshot should be saved. If no file name is specified, the program 13 | will present a dialog box asking for one. 14 | 15 | Currently only the uncompressed, 24-bit bitmap format is supported. 16 | 17 | -------------------------------------------------------------------------------- /dist/programs/helpfiles/snake.txt: -------------------------------------------------------------------------------- 1 | 2 | -- snake -- 3 | 4 | A 'Snake' game. 5 | 6 | Usage: 7 | snake 8 | 9 | -------------------------------------------------------------------------------- /dist/programs/helpfiles/sync.txt: -------------------------------------------------------------------------------- 1 | 2 | -- sync -- 3 | 4 | Synchronize (commit) data to all disks. 5 | 6 | Usage: 7 | sync 8 | 9 | This command will cause all pending disk data in memory to be written out 10 | to the disk. 11 | 12 | Disk I/O in Visopsys is usually ansynchronous -- i.e. changes are first 13 | made in memory, and then committed to disk at an opportune time. This 14 | command causes all such data to be committed at once. 15 | 16 | -------------------------------------------------------------------------------- /dist/programs/helpfiles/sysdiag.txt: -------------------------------------------------------------------------------- 1 | 2 | -- sysdiag -- 3 | 4 | Perform system diagnostics 5 | 6 | Usage: 7 | sysdiag 8 | 9 | The sysdiag program is interactive, and can be used to perform diagnostic 10 | functions on hardware such as the RAM memory or hard disks. 11 | 12 | -------------------------------------------------------------------------------- /dist/programs/helpfiles/tar.txt: -------------------------------------------------------------------------------- 1 | 2 | -- tar -- 3 | 4 | Create or manage archive files using TAR format. 5 | 6 | Usage: 7 | tar [-p] -a [file2] [...] 8 | Each file name listed will be added to the archive file. 9 | 10 | tar [-p] -d [member2] [...] 11 | Each member name listed will be deleted from the archive file. 12 | 13 | tar [-p] -i 14 | Print info about the members of the archive file. 15 | 16 | Options: 17 | -a : Add files to an archive 18 | -d : Delete members from an archive 19 | -i : Print info about the archive members 20 | -p : Show a progress indicator 21 | -x : Extract all files from the archive 22 | 23 | -------------------------------------------------------------------------------- /dist/programs/helpfiles/touch.txt: -------------------------------------------------------------------------------- 1 | 2 | -- touch -- 3 | 4 | Timestamp a file or directory. 5 | 6 | Usage: 7 | touch [file2] [...] 8 | 9 | This command has a dual purpose; it is used either to create one or more new, 10 | empty files, or to update the time/date stamp on one or more existing files 11 | or directories. 12 | 13 | -------------------------------------------------------------------------------- /dist/programs/helpfiles/umount.txt: -------------------------------------------------------------------------------- 1 | 2 | -- umount -- 3 | 4 | Unmount a filesystem. 5 | 6 | Usage: 7 | umount 8 | 9 | This command will unmount (disconnect, make unusable) the filesystem mounted 10 | at the mount point specified as a parameter. 11 | 12 | Example: 13 | umount /C 14 | 15 | This will synchronize and unmount the logical disk mounted at /C. 16 | 17 | -------------------------------------------------------------------------------- /dist/programs/helpfiles/uname.txt: -------------------------------------------------------------------------------- 1 | 2 | -- uname -- 3 | 4 | Prints system information. 5 | 6 | Usage: 7 | uname [-a] [-i] [-m] [-n] [-o] [-p] [-r] [-s] [-v] 8 | 9 | Options: 10 | -a : Show all information 11 | -i : Show the hardware platform 12 | -m : Show the machine hardware name 13 | -n : Show the network host name 14 | -o : Show the operating system 15 | -p : Show the processor type 16 | -r : Show the kernel release 17 | -s : Show the kernel name 18 | -v : Show the kernel version 19 | 20 | -------------------------------------------------------------------------------- /dist/programs/helpfiles/unzip.txt: -------------------------------------------------------------------------------- 1 | 2 | -- unzip -- 3 | 4 | Decompress and extract files from a compressed archive file. 5 | 6 | Usage: 7 | unzip [-p] [file2] [...] 8 | 9 | Each archive file name listed after the command name will be extracted in 10 | sequence. 11 | 12 | Options: 13 | -p : Show a progress indicator 14 | 15 | -------------------------------------------------------------------------------- /dist/programs/helpfiles/uptime.txt: -------------------------------------------------------------------------------- 1 | 2 | -- uptime -- 3 | 4 | Prints the number of days, minutes, and seconds since the system was 5 | booted. 6 | 7 | Usage: 8 | uptime 9 | 10 | -------------------------------------------------------------------------------- /dist/programs/helpfiles/users.txt: -------------------------------------------------------------------------------- 1 | 2 | -- users -- 3 | 4 | User manager for creating/deleting user accounts 5 | 6 | Usage: 7 | users [-p user_name] 8 | 9 | The users (User Manager) program is interactive, and may only be used in 10 | graphics mode. It can be used to add and delete user accounts, and set 11 | account passwords. If '-p user_name' is specified on the command line, 12 | this command will prompt the user to set the password for the named user. 13 | 14 | Options: 15 | -p : Set the user's password 16 | 17 | -------------------------------------------------------------------------------- /dist/programs/helpfiles/view.txt: -------------------------------------------------------------------------------- 1 | 2 | -- view -- 3 | 4 | View a file. 5 | 6 | Usage: 7 | view [file] 8 | 9 | (Only available in graphics mode) 10 | 11 | This command will launch a window in which the requested file is displayed. 12 | If no file name is supplied on the command line (or for example if the 13 | program is launched by clicking on its icon), the user will be prompted for 14 | the file to display. 15 | 16 | The currently-supported file formats are: 17 | 18 | - Images (currently only uncompressed, 8-bit and 24-bit bitmap images) 19 | - Text files 20 | 21 | -------------------------------------------------------------------------------- /dist/programs/helpfiles/wallpaper.txt: -------------------------------------------------------------------------------- 1 | 2 | -- wallpaper -- 3 | 4 | Set the background wallpaper image. 5 | 6 | Usage: 7 | wallpaper [image_file] 8 | 9 | (Only available in graphics mode) 10 | 11 | This command will set the background wallpaper image from the (optional) 12 | image file name parameter or, if no image file name is supplied, the program 13 | will prompt the user. 14 | 15 | Currently, bitmap (.bmp) and JPEG (.jpg) image formats are supported. 16 | 17 | -------------------------------------------------------------------------------- /dist/programs/helpfiles/zip.txt: -------------------------------------------------------------------------------- 1 | 2 | -- zip -- 3 | 4 | Compress and archive files, and manage archives. 5 | 6 | Usage: 7 | zip [-p] [file2] [...] 8 | Each file name listed will be packed in its own archive file. 9 | 10 | zip [-p] -a [file2] [...] 11 | Each file name listed will be added to the archive file. 12 | 13 | zip [-p] -d [member2] [...] 14 | Each member name listed will be deleted from the archive file. 15 | 16 | zip [-p] -i 17 | Print info about the members of the archive file. 18 | 19 | Options: 20 | -a : Add files to an archive 21 | -d : Delete members from an archive 22 | -i : Print info about the archive members 23 | -p : Show a progress indicator 24 | 25 | -------------------------------------------------------------------------------- /dist/programs/mines.dir/Makefile: -------------------------------------------------------------------------------- 1 | ## 2 | ## Visopsys 3 | ## Copyright (C) 1998-2018 J. Andrew McLaughlin 4 | ## 5 | ## Makefile 6 | ## 7 | 8 | BUILDDIR = ../../../build/programs/mines.dir 9 | 10 | all: 11 | mkdir -p ${BUILDDIR} 12 | cp *.bmp ${BUILDDIR} 13 | 14 | clean: 15 | rm -f *~ core 16 | rm -Rf ${BUILDDIR} 17 | 18 | -------------------------------------------------------------------------------- /dist/programs/mines.dir/mine.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bbarker/Visopsys/46222ff8736e80712532a54a699ec1408ebcb502/dist/programs/mines.dir/mine.bmp -------------------------------------------------------------------------------- /dist/programs/snake.dir/Makefile: -------------------------------------------------------------------------------- 1 | ## 2 | ## Visopsys 3 | ## Copyright (C) 1998-2018 J. Andrew McLaughlin 4 | ## 5 | ## Makefile 6 | ## 7 | 8 | BUILDDIR = ../../../build/programs/snake.dir 9 | 10 | all: 11 | mkdir -p ${BUILDDIR} 12 | cp *.bmp ${BUILDDIR} 13 | 14 | clean: 15 | rm -f *~ core 16 | rm -Rf ${BUILDDIR} 17 | 18 | -------------------------------------------------------------------------------- /dist/programs/snake.dir/body-horiz.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bbarker/Visopsys/46222ff8736e80712532a54a699ec1408ebcb502/dist/programs/snake.dir/body-horiz.bmp -------------------------------------------------------------------------------- /dist/programs/snake.dir/body-vert.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bbarker/Visopsys/46222ff8736e80712532a54a699ec1408ebcb502/dist/programs/snake.dir/body-vert.bmp -------------------------------------------------------------------------------- /dist/programs/snake.dir/corner-ne.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bbarker/Visopsys/46222ff8736e80712532a54a699ec1408ebcb502/dist/programs/snake.dir/corner-ne.bmp -------------------------------------------------------------------------------- /dist/programs/snake.dir/corner-nw.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bbarker/Visopsys/46222ff8736e80712532a54a699ec1408ebcb502/dist/programs/snake.dir/corner-nw.bmp -------------------------------------------------------------------------------- /dist/programs/snake.dir/corner-se.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bbarker/Visopsys/46222ff8736e80712532a54a699ec1408ebcb502/dist/programs/snake.dir/corner-se.bmp -------------------------------------------------------------------------------- /dist/programs/snake.dir/corner-sw.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bbarker/Visopsys/46222ff8736e80712532a54a699ec1408ebcb502/dist/programs/snake.dir/corner-sw.bmp -------------------------------------------------------------------------------- /dist/programs/snake.dir/food.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bbarker/Visopsys/46222ff8736e80712532a54a699ec1408ebcb502/dist/programs/snake.dir/food.bmp -------------------------------------------------------------------------------- /dist/programs/snake.dir/head-e.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bbarker/Visopsys/46222ff8736e80712532a54a699ec1408ebcb502/dist/programs/snake.dir/head-e.bmp -------------------------------------------------------------------------------- /dist/programs/snake.dir/head-n.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bbarker/Visopsys/46222ff8736e80712532a54a699ec1408ebcb502/dist/programs/snake.dir/head-n.bmp -------------------------------------------------------------------------------- /dist/programs/snake.dir/head-s.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bbarker/Visopsys/46222ff8736e80712532a54a699ec1408ebcb502/dist/programs/snake.dir/head-s.bmp -------------------------------------------------------------------------------- /dist/programs/snake.dir/head-w.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bbarker/Visopsys/46222ff8736e80712532a54a699ec1408ebcb502/dist/programs/snake.dir/head-w.bmp -------------------------------------------------------------------------------- /dist/programs/snake.dir/tail-e.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bbarker/Visopsys/46222ff8736e80712532a54a699ec1408ebcb502/dist/programs/snake.dir/tail-e.bmp -------------------------------------------------------------------------------- /dist/programs/snake.dir/tail-n.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bbarker/Visopsys/46222ff8736e80712532a54a699ec1408ebcb502/dist/programs/snake.dir/tail-n.bmp -------------------------------------------------------------------------------- /dist/programs/snake.dir/tail-s.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bbarker/Visopsys/46222ff8736e80712532a54a699ec1408ebcb502/dist/programs/snake.dir/tail-s.bmp -------------------------------------------------------------------------------- /dist/programs/snake.dir/tail-w.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bbarker/Visopsys/46222ff8736e80712532a54a699ec1408ebcb502/dist/programs/snake.dir/tail-w.bmp -------------------------------------------------------------------------------- /dist/programs/snake.dir/treat.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bbarker/Visopsys/46222ff8736e80712532a54a699ec1408ebcb502/dist/programs/snake.dir/treat.bmp -------------------------------------------------------------------------------- /dist/system/Makefile: -------------------------------------------------------------------------------- 1 | ## 2 | ## Visopsys 3 | ## Copyright (C) 1998-2018 J. Andrew McLaughlin 4 | ## 5 | ## Makefile 6 | ## 7 | 8 | BUILDDIR = ../../build/system 9 | FILES = visopsys.jpg install-files.* password.blank 10 | DESTFILES = $(addprefix ${BUILDDIR}/, ${FILES}) 11 | 12 | all: 13 | mkdir -p ${BUILDDIR} 14 | cp ${FILES} ${BUILDDIR} 15 | ${MAKE} -C config 16 | ${MAKE} -C fonts 17 | ${MAKE} -C icons 18 | ${MAKE} -C keymaps 19 | ${MAKE} -C locale 20 | ${MAKE} -C mouse 21 | ${MAKE} -C wallpaper 22 | 23 | 24 | clean: 25 | ${MAKE} -C config clean 26 | ${MAKE} -C fonts clean 27 | ${MAKE} -C icons clean 28 | ${MAKE} -C keymaps clean 29 | ${MAKE} -C locale clean 30 | ${MAKE} -C mouse clean 31 | ${MAKE} -C wallpaper clean 32 | rm -f *~ core 33 | rm -f ${DESTFILES} 34 | 35 | -------------------------------------------------------------------------------- /dist/system/config/Makefile: -------------------------------------------------------------------------------- 1 | ## 2 | ## Visopsys 3 | ## Copyright (C) 1998-2018 J. Andrew McLaughlin 4 | ## 5 | ## Makefile 6 | ## 7 | 8 | BUILDDIR = ../../../build/system/config 9 | 10 | all: 11 | mkdir -p ${BUILDDIR} 12 | cp *.conf ${BUILDDIR} 13 | mkdir -p ${BUILDDIR}/de 14 | cp de/*.conf ${BUILDDIR}/de 15 | mkdir -p ${BUILDDIR}/es 16 | cp es/*.conf ${BUILDDIR}/es 17 | mkdir -p ${BUILDDIR}/ru 18 | cp ru/*.conf ${BUILDDIR}/ru 19 | mkdir -p ${BUILDDIR}/tr 20 | cp tr/*.conf ${BUILDDIR}/tr 21 | 22 | clean: 23 | rm -f *~ core 24 | rm -Rf ${BUILDDIR} 25 | 26 | -------------------------------------------------------------------------------- /dist/system/config/de/administration.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bbarker/Visopsys/46222ff8736e80712532a54a699ec1408ebcb502/dist/system/config/de/administration.conf -------------------------------------------------------------------------------- /dist/system/config/de/desktop.conf: -------------------------------------------------------------------------------- 1 | # This file contains variables for describing desktop settings (such as the 2 | # taskbar, icons, etc.) read by the window manager at startup. In general, 3 | # changes will require a reboot to take effect. 4 | 5 | taskBar.menu.window=Fenster 6 | taskBar.menu.exit=Beenden 7 | taskBar.exit.item.logout=Logout 8 | taskBar.exit.item.shutdown=Herunterfahren 9 | icon.name.computer=Computer 10 | icon.name.fileBrowser=Datei-Browser 11 | icon.name.commandWindow=Kommandozeile 12 | icon.name.programs=Programs 13 | icon.name.admin=Verwaltung 14 | 15 | -------------------------------------------------------------------------------- /dist/system/config/de/kernel.conf: -------------------------------------------------------------------------------- 1 | # This file contains variables read by the kernel at startup. Any changes 2 | # will require a reboot to take effect. 3 | 4 | keyboard.map=/system/keymaps/DE_DE.map 5 | 6 | -------------------------------------------------------------------------------- /dist/system/config/de/network.conf: -------------------------------------------------------------------------------- 1 | # This file is used by the iconwin program to describe the 'Network Settings' 2 | # window. 3 | 4 | window.title=Netzwerk-Verwaltung 5 | icon.name.devices=Netzlaufwerke 6 | icon.name.ping=Ping 7 | 8 | -------------------------------------------------------------------------------- /dist/system/config/de/programs.conf: -------------------------------------------------------------------------------- 1 | # This file is used by the iconwin program to describe the 'Programs' window. 2 | 3 | window.title=Programs 4 | icon.name.calc=Taschenrechner 5 | icon.name.cal=Kalender 6 | icon.name.imgedit=Bildbearbeitungsprogramm 7 | icon.name.mines=Mines! 8 | icon.name.screenshot=Screenshot 9 | icon.name.snake=Snake! 10 | icon.name.edit=Bearbeiten 11 | icon.name.view=View 12 | 13 | -------------------------------------------------------------------------------- /dist/system/config/environment.conf: -------------------------------------------------------------------------------- 1 | # This file contains environment variables that are loaded when a user logs 2 | # in. 3 | 4 | PATH=/programs 5 | 6 | -------------------------------------------------------------------------------- /dist/system/config/es/administration.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bbarker/Visopsys/46222ff8736e80712532a54a699ec1408ebcb502/dist/system/config/es/administration.conf -------------------------------------------------------------------------------- /dist/system/config/es/desktop.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bbarker/Visopsys/46222ff8736e80712532a54a699ec1408ebcb502/dist/system/config/es/desktop.conf -------------------------------------------------------------------------------- /dist/system/config/es/kernel.conf: -------------------------------------------------------------------------------- 1 | # This file contains variables read by the kernel at startup. Any changes 2 | # will require a reboot to take effect. 3 | 4 | keyboard.map=/system/keymaps/ES_ES.map 5 | 6 | -------------------------------------------------------------------------------- /dist/system/config/es/network.conf: -------------------------------------------------------------------------------- 1 | # This file is used by the iconwin program to describe the 'Network Settings' 2 | # window. 3 | 4 | window.title=Network Administration 5 | icon.name.devices=Dispositivos de Red 6 | icon.name.ping=Ping 7 | 8 | -------------------------------------------------------------------------------- /dist/system/config/es/programs.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bbarker/Visopsys/46222ff8736e80712532a54a699ec1408ebcb502/dist/system/config/es/programs.conf -------------------------------------------------------------------------------- /dist/system/config/kernel.conf: -------------------------------------------------------------------------------- 1 | # This file contains variables read by the kernel at startup. Any changes 2 | # will require a reboot to take effect. 3 | 4 | color.foreground.red=9 5 | color.foreground.green=56 6 | color.foreground.blue=89 7 | color.background.red=165 8 | color.background.green=165 9 | color.background.blue=180 10 | color.desktop.red=14 11 | color.desktop.green=83 12 | color.desktop.blue=133 13 | mouse.pointer.default=/system/mouse/default.bmp 14 | mouse.pointer.busy=/system/mouse/busy.ico 15 | mouse.pointer.resizeh=/system/mouse/resizeh.bmp 16 | mouse.pointer.resizev=/system/mouse/resizev.bmp 17 | start.program=/programs/imgboot 18 | network=no 19 | network.hostname=visopsys 20 | network.domainname= 21 | 22 | -------------------------------------------------------------------------------- /dist/system/config/keymap.conf: -------------------------------------------------------------------------------- 1 | # This file is used to define default keymaps for languages. 2 | 3 | # Belgian 4 | be=BE_BE 5 | 6 | # English 7 | en=EN_US 8 | 9 | # French 10 | fr=FR_FR 11 | 12 | # German 13 | de=DE_DE 14 | 15 | # Italian 16 | it=IT_IT 17 | 18 | # Russian 19 | ru=RU_RU 20 | 21 | # Spanish 22 | es=ES_ES 23 | 24 | # Turkish 25 | tr=TR_TR 26 | 27 | -------------------------------------------------------------------------------- /dist/system/config/mount.conf: -------------------------------------------------------------------------------- 1 | # This file contains variables for specifying mount points for filesystems, 2 | # and whether or not to automatically mount them at boot time. 3 | # 4 | # Example: 5 | # fd0.mountpoint=/floppy 6 | # fd0.automount=no 7 | # hd0a.mountpoint=/linux 8 | # hd0a.automount=yes 9 | 10 | -------------------------------------------------------------------------------- /dist/system/config/network.conf: -------------------------------------------------------------------------------- 1 | # This file is used by the iconwin program to describe the 'Network Settings' 2 | # window. 3 | 4 | window.title=Network Administration 5 | list.rows=2 6 | list.columns=5 7 | icon.name.devices=Network Devices 8 | icon.devices.image=/system/icons/ifconfig.ico 9 | icon.devices.command=/programs/ifconfig 10 | icon.name.ping=Ping 11 | icon.ping.image=/system/icons/ping.ico 12 | icon.ping.command=/programs/ping 13 | 14 | -------------------------------------------------------------------------------- /dist/system/config/programs-basic.conf: -------------------------------------------------------------------------------- 1 | # This file is used by the iconwin program to describe the 'Programs' window. 2 | 3 | window.title=Programs 4 | list.rows=2 5 | list.columns=3 6 | icon.name.edit=Text Editor 7 | icon.edit.image=/system/icons/execable.ico 8 | icon.edit.command=/programs/edit 9 | icon.name.view=View 10 | icon.view.image=/system/icons/execable.ico 11 | icon.view.command=/programs/view 12 | 13 | -------------------------------------------------------------------------------- /dist/system/config/ru/administration.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bbarker/Visopsys/46222ff8736e80712532a54a699ec1408ebcb502/dist/system/config/ru/administration.conf -------------------------------------------------------------------------------- /dist/system/config/ru/desktop.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bbarker/Visopsys/46222ff8736e80712532a54a699ec1408ebcb502/dist/system/config/ru/desktop.conf -------------------------------------------------------------------------------- /dist/system/config/ru/kernel.conf: -------------------------------------------------------------------------------- 1 | # This file contains variables read by the kernel at startup. Any changes 2 | # will require a reboot to take effect. 3 | 4 | keyboard.map=/system/keymaps/RU_RU.map 5 | 6 | -------------------------------------------------------------------------------- /dist/system/config/ru/network.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bbarker/Visopsys/46222ff8736e80712532a54a699ec1408ebcb502/dist/system/config/ru/network.conf -------------------------------------------------------------------------------- /dist/system/config/ru/programs.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bbarker/Visopsys/46222ff8736e80712532a54a699ec1408ebcb502/dist/system/config/ru/programs.conf -------------------------------------------------------------------------------- /dist/system/config/tr/administration.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bbarker/Visopsys/46222ff8736e80712532a54a699ec1408ebcb502/dist/system/config/tr/administration.conf -------------------------------------------------------------------------------- /dist/system/config/tr/desktop.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bbarker/Visopsys/46222ff8736e80712532a54a699ec1408ebcb502/dist/system/config/tr/desktop.conf -------------------------------------------------------------------------------- /dist/system/config/tr/kernel.conf: -------------------------------------------------------------------------------- 1 | # This file contains variables read by the kernel at startup. Any changes 2 | # will require a reboot to take effect. 3 | 4 | keyboard.map=/system/keymaps/TR_TR.map 5 | 6 | -------------------------------------------------------------------------------- /dist/system/config/tr/network.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bbarker/Visopsys/46222ff8736e80712532a54a699ec1408ebcb502/dist/system/config/tr/network.conf -------------------------------------------------------------------------------- /dist/system/config/tr/programs.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bbarker/Visopsys/46222ff8736e80712532a54a699ec1408ebcb502/dist/system/config/tr/programs.conf -------------------------------------------------------------------------------- /dist/system/fonts/Makefile: -------------------------------------------------------------------------------- 1 | ## 2 | ## Visopsys 3 | ## Copyright (C) 1998-2018 J. Andrew McLaughlin 4 | ## 5 | ## Makefile 6 | ## 7 | 8 | BUILDDIR = ../../../build/system/fonts 9 | 10 | all: 11 | mkdir -p ${BUILDDIR} 12 | cp *.vbf ${BUILDDIR} 13 | 14 | clean: 15 | rm -f *~ core 16 | rm -Rf ${BUILDDIR} 17 | 18 | -------------------------------------------------------------------------------- /dist/system/fonts/arial-bold-10-ascii.vbf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bbarker/Visopsys/46222ff8736e80712532a54a699ec1408ebcb502/dist/system/fonts/arial-bold-10-ascii.vbf -------------------------------------------------------------------------------- /dist/system/fonts/arial-bold-10-iso-8859-15.vbf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bbarker/Visopsys/46222ff8736e80712532a54a699ec1408ebcb502/dist/system/fonts/arial-bold-10-iso-8859-15.vbf -------------------------------------------------------------------------------- /dist/system/fonts/arial-bold-10-iso-8859-5.vbf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bbarker/Visopsys/46222ff8736e80712532a54a699ec1408ebcb502/dist/system/fonts/arial-bold-10-iso-8859-5.vbf -------------------------------------------------------------------------------- /dist/system/fonts/arial-bold-10-iso-8859-9.vbf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bbarker/Visopsys/46222ff8736e80712532a54a699ec1408ebcb502/dist/system/fonts/arial-bold-10-iso-8859-9.vbf -------------------------------------------------------------------------------- /dist/system/fonts/arial-bold-12-ascii.vbf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bbarker/Visopsys/46222ff8736e80712532a54a699ec1408ebcb502/dist/system/fonts/arial-bold-12-ascii.vbf -------------------------------------------------------------------------------- /dist/system/fonts/arial-bold-12-iso-8859-15.vbf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bbarker/Visopsys/46222ff8736e80712532a54a699ec1408ebcb502/dist/system/fonts/arial-bold-12-iso-8859-15.vbf -------------------------------------------------------------------------------- /dist/system/fonts/arial-bold-12-iso-8859-5.vbf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bbarker/Visopsys/46222ff8736e80712532a54a699ec1408ebcb502/dist/system/fonts/arial-bold-12-iso-8859-5.vbf -------------------------------------------------------------------------------- /dist/system/fonts/arial-bold-12-iso-8859-9.vbf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bbarker/Visopsys/46222ff8736e80712532a54a699ec1408ebcb502/dist/system/fonts/arial-bold-12-iso-8859-9.vbf -------------------------------------------------------------------------------- /dist/system/fonts/arial-bold-20-ascii.vbf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bbarker/Visopsys/46222ff8736e80712532a54a699ec1408ebcb502/dist/system/fonts/arial-bold-20-ascii.vbf -------------------------------------------------------------------------------- /dist/system/fonts/arial-bold-20-iso-8859-15.vbf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bbarker/Visopsys/46222ff8736e80712532a54a699ec1408ebcb502/dist/system/fonts/arial-bold-20-iso-8859-15.vbf -------------------------------------------------------------------------------- /dist/system/fonts/arial-bold-20-iso-8859-5.vbf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bbarker/Visopsys/46222ff8736e80712532a54a699ec1408ebcb502/dist/system/fonts/arial-bold-20-iso-8859-5.vbf -------------------------------------------------------------------------------- /dist/system/fonts/arial-bold-20-iso-8859-9.vbf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bbarker/Visopsys/46222ff8736e80712532a54a699ec1408ebcb502/dist/system/fonts/arial-bold-20-iso-8859-9.vbf -------------------------------------------------------------------------------- /dist/system/fonts/libmono-bold-10-ascii.vbf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bbarker/Visopsys/46222ff8736e80712532a54a699ec1408ebcb502/dist/system/fonts/libmono-bold-10-ascii.vbf -------------------------------------------------------------------------------- /dist/system/fonts/libmono-bold-10-iso-8859-15.vbf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bbarker/Visopsys/46222ff8736e80712532a54a699ec1408ebcb502/dist/system/fonts/libmono-bold-10-iso-8859-15.vbf -------------------------------------------------------------------------------- /dist/system/fonts/libmono-bold-10-iso-8859-5.vbf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bbarker/Visopsys/46222ff8736e80712532a54a699ec1408ebcb502/dist/system/fonts/libmono-bold-10-iso-8859-5.vbf -------------------------------------------------------------------------------- /dist/system/fonts/libmono-bold-10-iso-8859-9.vbf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bbarker/Visopsys/46222ff8736e80712532a54a699ec1408ebcb502/dist/system/fonts/libmono-bold-10-iso-8859-9.vbf -------------------------------------------------------------------------------- /dist/system/fonts/libmono-bold-8-ascii.vbf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bbarker/Visopsys/46222ff8736e80712532a54a699ec1408ebcb502/dist/system/fonts/libmono-bold-8-ascii.vbf -------------------------------------------------------------------------------- /dist/system/fonts/libmono-bold-8-iso-8859-15.vbf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bbarker/Visopsys/46222ff8736e80712532a54a699ec1408ebcb502/dist/system/fonts/libmono-bold-8-iso-8859-15.vbf -------------------------------------------------------------------------------- /dist/system/fonts/libmono-bold-8-iso-8859-5.vbf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bbarker/Visopsys/46222ff8736e80712532a54a699ec1408ebcb502/dist/system/fonts/libmono-bold-8-iso-8859-5.vbf -------------------------------------------------------------------------------- /dist/system/fonts/libmono-bold-8-iso-8859-9.vbf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bbarker/Visopsys/46222ff8736e80712532a54a699ec1408ebcb502/dist/system/fonts/libmono-bold-8-iso-8859-9.vbf -------------------------------------------------------------------------------- /dist/system/fonts/libmono-normal-10-ascii.vbf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bbarker/Visopsys/46222ff8736e80712532a54a699ec1408ebcb502/dist/system/fonts/libmono-normal-10-ascii.vbf -------------------------------------------------------------------------------- /dist/system/fonts/libmono-normal-10-iso-8859-15.vbf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bbarker/Visopsys/46222ff8736e80712532a54a699ec1408ebcb502/dist/system/fonts/libmono-normal-10-iso-8859-15.vbf -------------------------------------------------------------------------------- /dist/system/fonts/libmono-normal-10-iso-8859-5.vbf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bbarker/Visopsys/46222ff8736e80712532a54a699ec1408ebcb502/dist/system/fonts/libmono-normal-10-iso-8859-5.vbf -------------------------------------------------------------------------------- /dist/system/fonts/libmono-normal-10-iso-8859-9.vbf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bbarker/Visopsys/46222ff8736e80712532a54a699ec1408ebcb502/dist/system/fonts/libmono-normal-10-iso-8859-9.vbf -------------------------------------------------------------------------------- /dist/system/fonts/libmono-normal-8-ascii.vbf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bbarker/Visopsys/46222ff8736e80712532a54a699ec1408ebcb502/dist/system/fonts/libmono-normal-8-ascii.vbf -------------------------------------------------------------------------------- /dist/system/fonts/libmono-normal-8-iso-8859-15.vbf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bbarker/Visopsys/46222ff8736e80712532a54a699ec1408ebcb502/dist/system/fonts/libmono-normal-8-iso-8859-15.vbf -------------------------------------------------------------------------------- /dist/system/fonts/libmono-normal-8-iso-8859-5.vbf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bbarker/Visopsys/46222ff8736e80712532a54a699ec1408ebcb502/dist/system/fonts/libmono-normal-8-iso-8859-5.vbf -------------------------------------------------------------------------------- /dist/system/fonts/libmono-normal-8-iso-8859-9.vbf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bbarker/Visopsys/46222ff8736e80712532a54a699ec1408ebcb502/dist/system/fonts/libmono-normal-8-iso-8859-9.vbf -------------------------------------------------------------------------------- /dist/system/fonts/xterm-normal-10-ascii.vbf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bbarker/Visopsys/46222ff8736e80712532a54a699ec1408ebcb502/dist/system/fonts/xterm-normal-10-ascii.vbf -------------------------------------------------------------------------------- /dist/system/fonts/xterm-normal-10-iso-8859-15.vbf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bbarker/Visopsys/46222ff8736e80712532a54a699ec1408ebcb502/dist/system/fonts/xterm-normal-10-iso-8859-15.vbf -------------------------------------------------------------------------------- /dist/system/fonts/xterm-normal-10-iso-8859-5.vbf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bbarker/Visopsys/46222ff8736e80712532a54a699ec1408ebcb502/dist/system/fonts/xterm-normal-10-iso-8859-5.vbf -------------------------------------------------------------------------------- /dist/system/fonts/xterm-normal-10-iso-8859-9.vbf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bbarker/Visopsys/46222ff8736e80712532a54a699ec1408ebcb502/dist/system/fonts/xterm-normal-10-iso-8859-9.vbf -------------------------------------------------------------------------------- /dist/system/icons/Makefile: -------------------------------------------------------------------------------- 1 | ## 2 | ## Visopsys 3 | ## Copyright (C) 1998-2018 J. Andrew McLaughlin 4 | ## 5 | ## Makefile 6 | ## 7 | 8 | BUILDDIR = ../../../build/system/icons 9 | 10 | all: 11 | mkdir -p ${BUILDDIR} 12 | cp *.ico ${BUILDDIR} 13 | 14 | clean: 15 | rm -f *~ core 16 | rm -Rf ${BUILDDIR} 17 | 18 | -------------------------------------------------------------------------------- /dist/system/icons/admin.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bbarker/Visopsys/46222ff8736e80712532a54a699ec1408ebcb502/dist/system/icons/admin.ico -------------------------------------------------------------------------------- /dist/system/icons/archive.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bbarker/Visopsys/46222ff8736e80712532a54a699ec1408ebcb502/dist/system/icons/archive.ico -------------------------------------------------------------------------------- /dist/system/icons/archman.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bbarker/Visopsys/46222ff8736e80712532a54a699ec1408ebcb502/dist/system/icons/archman.ico -------------------------------------------------------------------------------- /dist/system/icons/arrowup.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bbarker/Visopsys/46222ff8736e80712532a54a699ec1408ebcb502/dist/system/icons/arrowup.ico -------------------------------------------------------------------------------- /dist/system/icons/audio.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bbarker/Visopsys/46222ff8736e80712532a54a699ec1408ebcb502/dist/system/icons/audio.ico -------------------------------------------------------------------------------- /dist/system/icons/binary.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bbarker/Visopsys/46222ff8736e80712532a54a699ec1408ebcb502/dist/system/icons/binary.ico -------------------------------------------------------------------------------- /dist/system/icons/bootsect.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bbarker/Visopsys/46222ff8736e80712532a54a699ec1408ebcb502/dist/system/icons/bootsect.ico -------------------------------------------------------------------------------- /dist/system/icons/cal.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bbarker/Visopsys/46222ff8736e80712532a54a699ec1408ebcb502/dist/system/icons/cal.ico -------------------------------------------------------------------------------- /dist/system/icons/calc.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bbarker/Visopsys/46222ff8736e80712532a54a699ec1408ebcb502/dist/system/icons/calc.ico -------------------------------------------------------------------------------- /dist/system/icons/cdrom.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bbarker/Visopsys/46222ff8736e80712532a54a699ec1408ebcb502/dist/system/icons/cdrom.ico -------------------------------------------------------------------------------- /dist/system/icons/cmdwin.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bbarker/Visopsys/46222ff8736e80712532a54a699ec1408ebcb502/dist/system/icons/cmdwin.ico -------------------------------------------------------------------------------- /dist/system/icons/colrpick.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bbarker/Visopsys/46222ff8736e80712532a54a699ec1408ebcb502/dist/system/icons/colrpick.ico -------------------------------------------------------------------------------- /dist/system/icons/computer.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bbarker/Visopsys/46222ff8736e80712532a54a699ec1408ebcb502/dist/system/icons/computer.ico -------------------------------------------------------------------------------- /dist/system/icons/config.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bbarker/Visopsys/46222ff8736e80712532a54a699ec1408ebcb502/dist/system/icons/config.ico -------------------------------------------------------------------------------- /dist/system/icons/console.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bbarker/Visopsys/46222ff8736e80712532a54a699ec1408ebcb502/dist/system/icons/console.ico -------------------------------------------------------------------------------- /dist/system/icons/diskman.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bbarker/Visopsys/46222ff8736e80712532a54a699ec1408ebcb502/dist/system/icons/diskman.ico -------------------------------------------------------------------------------- /dist/system/icons/disprops.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bbarker/Visopsys/46222ff8736e80712532a54a699ec1408ebcb502/dist/system/icons/disprops.ico -------------------------------------------------------------------------------- /dist/system/icons/draw.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bbarker/Visopsys/46222ff8736e80712532a54a699ec1408ebcb502/dist/system/icons/draw.ico -------------------------------------------------------------------------------- /dist/system/icons/edit.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bbarker/Visopsys/46222ff8736e80712532a54a699ec1408ebcb502/dist/system/icons/edit.ico -------------------------------------------------------------------------------- /dist/system/icons/error.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bbarker/Visopsys/46222ff8736e80712532a54a699ec1408ebcb502/dist/system/icons/error.ico -------------------------------------------------------------------------------- /dist/system/icons/execable.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bbarker/Visopsys/46222ff8736e80712532a54a699ec1408ebcb502/dist/system/icons/execable.ico -------------------------------------------------------------------------------- /dist/system/icons/file.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bbarker/Visopsys/46222ff8736e80712532a54a699ec1408ebcb502/dist/system/icons/file.ico -------------------------------------------------------------------------------- /dist/system/icons/filesys.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bbarker/Visopsys/46222ff8736e80712532a54a699ec1408ebcb502/dist/system/icons/filesys.ico -------------------------------------------------------------------------------- /dist/system/icons/floppy.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bbarker/Visopsys/46222ff8736e80712532a54a699ec1408ebcb502/dist/system/icons/floppy.ico -------------------------------------------------------------------------------- /dist/system/icons/folder.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bbarker/Visopsys/46222ff8736e80712532a54a699ec1408ebcb502/dist/system/icons/folder.ico -------------------------------------------------------------------------------- /dist/system/icons/font.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bbarker/Visopsys/46222ff8736e80712532a54a699ec1408ebcb502/dist/system/icons/font.ico -------------------------------------------------------------------------------- /dist/system/icons/fontutil.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bbarker/Visopsys/46222ff8736e80712532a54a699ec1408ebcb502/dist/system/icons/fontutil.ico -------------------------------------------------------------------------------- /dist/system/icons/game.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bbarker/Visopsys/46222ff8736e80712532a54a699ec1408ebcb502/dist/system/icons/game.ico -------------------------------------------------------------------------------- /dist/system/icons/gear.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bbarker/Visopsys/46222ff8736e80712532a54a699ec1408ebcb502/dist/system/icons/gear.ico -------------------------------------------------------------------------------- /dist/system/icons/harddisk.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bbarker/Visopsys/46222ff8736e80712532a54a699ec1408ebcb502/dist/system/icons/harddisk.ico -------------------------------------------------------------------------------- /dist/system/icons/html.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bbarker/Visopsys/46222ff8736e80712532a54a699ec1408ebcb502/dist/system/icons/html.ico -------------------------------------------------------------------------------- /dist/system/icons/ifconfig.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bbarker/Visopsys/46222ff8736e80712532a54a699ec1408ebcb502/dist/system/icons/ifconfig.ico -------------------------------------------------------------------------------- /dist/system/icons/image.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bbarker/Visopsys/46222ff8736e80712532a54a699ec1408ebcb502/dist/system/icons/image.ico -------------------------------------------------------------------------------- /dist/system/icons/imgedit.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bbarker/Visopsys/46222ff8736e80712532a54a699ec1408ebcb502/dist/system/icons/imgedit.ico -------------------------------------------------------------------------------- /dist/system/icons/info.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bbarker/Visopsys/46222ff8736e80712532a54a699ec1408ebcb502/dist/system/icons/info.ico -------------------------------------------------------------------------------- /dist/system/icons/install.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bbarker/Visopsys/46222ff8736e80712532a54a699ec1408ebcb502/dist/system/icons/install.ico -------------------------------------------------------------------------------- /dist/system/icons/keyboard.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bbarker/Visopsys/46222ff8736e80712532a54a699ec1408ebcb502/dist/system/icons/keyboard.ico -------------------------------------------------------------------------------- /dist/system/icons/keymap.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bbarker/Visopsys/46222ff8736e80712532a54a699ec1408ebcb502/dist/system/icons/keymap.ico -------------------------------------------------------------------------------- /dist/system/icons/kmapfile.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bbarker/Visopsys/46222ff8736e80712532a54a699ec1408ebcb502/dist/system/icons/kmapfile.ico -------------------------------------------------------------------------------- /dist/system/icons/lsdev.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bbarker/Visopsys/46222ff8736e80712532a54a699ec1408ebcb502/dist/system/icons/lsdev.ico -------------------------------------------------------------------------------- /dist/system/icons/messages.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bbarker/Visopsys/46222ff8736e80712532a54a699ec1408ebcb502/dist/system/icons/messages.ico -------------------------------------------------------------------------------- /dist/system/icons/mines.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bbarker/Visopsys/46222ff8736e80712532a54a699ec1408ebcb502/dist/system/icons/mines.ico -------------------------------------------------------------------------------- /dist/system/icons/network.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bbarker/Visopsys/46222ff8736e80712532a54a699ec1408ebcb502/dist/system/icons/network.ico -------------------------------------------------------------------------------- /dist/system/icons/object.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bbarker/Visopsys/46222ff8736e80712532a54a699ec1408ebcb502/dist/system/icons/object.ico -------------------------------------------------------------------------------- /dist/system/icons/pdf.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bbarker/Visopsys/46222ff8736e80712532a54a699ec1408ebcb502/dist/system/icons/pdf.ico -------------------------------------------------------------------------------- /dist/system/icons/ping.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bbarker/Visopsys/46222ff8736e80712532a54a699ec1408ebcb502/dist/system/icons/ping.ico -------------------------------------------------------------------------------- /dist/system/icons/progman.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bbarker/Visopsys/46222ff8736e80712532a54a699ec1408ebcb502/dist/system/icons/progman.ico -------------------------------------------------------------------------------- /dist/system/icons/programs.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bbarker/Visopsys/46222ff8736e80712532a54a699ec1408ebcb502/dist/system/icons/programs.ico -------------------------------------------------------------------------------- /dist/system/icons/question.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bbarker/Visopsys/46222ff8736e80712532a54a699ec1408ebcb502/dist/system/icons/question.ico -------------------------------------------------------------------------------- /dist/system/icons/reboot.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bbarker/Visopsys/46222ff8736e80712532a54a699ec1408ebcb502/dist/system/icons/reboot.ico -------------------------------------------------------------------------------- /dist/system/icons/save.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bbarker/Visopsys/46222ff8736e80712532a54a699ec1408ebcb502/dist/system/icons/save.ico -------------------------------------------------------------------------------- /dist/system/icons/screenshot.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bbarker/Visopsys/46222ff8736e80712532a54a699ec1408ebcb502/dist/system/icons/screenshot.ico -------------------------------------------------------------------------------- /dist/system/icons/shutdown.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bbarker/Visopsys/46222ff8736e80712532a54a699ec1408ebcb502/dist/system/icons/shutdown.ico -------------------------------------------------------------------------------- /dist/system/icons/sysdiag.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bbarker/Visopsys/46222ff8736e80712532a54a699ec1408ebcb502/dist/system/icons/sysdiag.ico -------------------------------------------------------------------------------- /dist/system/icons/text.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bbarker/Visopsys/46222ff8736e80712532a54a699ec1408ebcb502/dist/system/icons/text.ico -------------------------------------------------------------------------------- /dist/system/icons/usbthumb.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bbarker/Visopsys/46222ff8736e80712532a54a699ec1408ebcb502/dist/system/icons/usbthumb.ico -------------------------------------------------------------------------------- /dist/system/icons/users.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bbarker/Visopsys/46222ff8736e80712532a54a699ec1408ebcb502/dist/system/icons/users.ico -------------------------------------------------------------------------------- /dist/system/icons/video.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bbarker/Visopsys/46222ff8736e80712532a54a699ec1408ebcb502/dist/system/icons/video.ico -------------------------------------------------------------------------------- /dist/system/icons/view.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bbarker/Visopsys/46222ff8736e80712532a54a699ec1408ebcb502/dist/system/icons/view.ico -------------------------------------------------------------------------------- /dist/system/icons/zoomin.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bbarker/Visopsys/46222ff8736e80712532a54a699ec1408ebcb502/dist/system/icons/zoomin.ico -------------------------------------------------------------------------------- /dist/system/icons/zoomout.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bbarker/Visopsys/46222ff8736e80712532a54a699ec1408ebcb502/dist/system/icons/zoomout.ico -------------------------------------------------------------------------------- /dist/system/keymaps/BE_BE.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bbarker/Visopsys/46222ff8736e80712532a54a699ec1408ebcb502/dist/system/keymaps/BE_BE.map -------------------------------------------------------------------------------- /dist/system/keymaps/DE_DE.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bbarker/Visopsys/46222ff8736e80712532a54a699ec1408ebcb502/dist/system/keymaps/DE_DE.map -------------------------------------------------------------------------------- /dist/system/keymaps/EN_UK.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bbarker/Visopsys/46222ff8736e80712532a54a699ec1408ebcb502/dist/system/keymaps/EN_UK.map -------------------------------------------------------------------------------- /dist/system/keymaps/ES_ES.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bbarker/Visopsys/46222ff8736e80712532a54a699ec1408ebcb502/dist/system/keymaps/ES_ES.map -------------------------------------------------------------------------------- /dist/system/keymaps/FR_FR.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bbarker/Visopsys/46222ff8736e80712532a54a699ec1408ebcb502/dist/system/keymaps/FR_FR.map -------------------------------------------------------------------------------- /dist/system/keymaps/IT_IT.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bbarker/Visopsys/46222ff8736e80712532a54a699ec1408ebcb502/dist/system/keymaps/IT_IT.map -------------------------------------------------------------------------------- /dist/system/keymaps/Makefile: -------------------------------------------------------------------------------- 1 | ## 2 | ## Visopsys 3 | ## Copyright (C) 1998-2018 J. Andrew McLaughlin 4 | ## 5 | ## Makefile 6 | ## 7 | 8 | BUILDDIR = ../../../build/system/keymaps 9 | 10 | all: 11 | mkdir -p ${BUILDDIR} 12 | cp *.map ${BUILDDIR} 13 | 14 | clean: 15 | rm -f *~ core 16 | rm -Rf ${BUILDDIR} 17 | 18 | -------------------------------------------------------------------------------- /dist/system/keymaps/TR_TR.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bbarker/Visopsys/46222ff8736e80712532a54a699ec1408ebcb502/dist/system/keymaps/TR_TR.map -------------------------------------------------------------------------------- /dist/system/locale/Makefile: -------------------------------------------------------------------------------- 1 | ## 2 | ## Visopsys 3 | ## Copyright (C) 1998-2018 J. Andrew McLaughlin 4 | ## 5 | ## Makefile 6 | ## 7 | 8 | BUILDDIR = ../../../build/system/locale 9 | 10 | all: 11 | mkdir -p ${BUILDDIR} 12 | cp flag-*.bmp ${BUILDDIR} 13 | 14 | clean: 15 | rm -f *~ core 16 | rm -Rf ${BUILDDIR} 17 | 18 | -------------------------------------------------------------------------------- /dist/system/locale/flag-de.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bbarker/Visopsys/46222ff8736e80712532a54a699ec1408ebcb502/dist/system/locale/flag-de.bmp -------------------------------------------------------------------------------- /dist/system/locale/flag-en.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bbarker/Visopsys/46222ff8736e80712532a54a699ec1408ebcb502/dist/system/locale/flag-en.bmp -------------------------------------------------------------------------------- /dist/system/locale/flag-es.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bbarker/Visopsys/46222ff8736e80712532a54a699ec1408ebcb502/dist/system/locale/flag-es.bmp -------------------------------------------------------------------------------- /dist/system/locale/flag-ru.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bbarker/Visopsys/46222ff8736e80712532a54a699ec1408ebcb502/dist/system/locale/flag-ru.bmp -------------------------------------------------------------------------------- /dist/system/locale/flag-tr.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bbarker/Visopsys/46222ff8736e80712532a54a699ec1408ebcb502/dist/system/locale/flag-tr.bmp -------------------------------------------------------------------------------- /dist/system/mouse/Makefile: -------------------------------------------------------------------------------- 1 | ## 2 | ## Visopsys 3 | ## Copyright (C) 1998-2018 J. Andrew McLaughlin 4 | ## 5 | ## Makefile 6 | ## 7 | 8 | BUILDDIR = ../../../build/system/mouse 9 | 10 | all: 11 | mkdir -p ${BUILDDIR} 12 | cp *.bmp *.ico ${BUILDDIR} 13 | 14 | clean: 15 | rm -f *~ core 16 | rm -Rf ${BUILDDIR} 17 | 18 | -------------------------------------------------------------------------------- /dist/system/mouse/busy.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bbarker/Visopsys/46222ff8736e80712532a54a699ec1408ebcb502/dist/system/mouse/busy.ico -------------------------------------------------------------------------------- /dist/system/mouse/default.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bbarker/Visopsys/46222ff8736e80712532a54a699ec1408ebcb502/dist/system/mouse/default.bmp -------------------------------------------------------------------------------- /dist/system/mouse/resizeh.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bbarker/Visopsys/46222ff8736e80712532a54a699ec1408ebcb502/dist/system/mouse/resizeh.bmp -------------------------------------------------------------------------------- /dist/system/mouse/resizev.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bbarker/Visopsys/46222ff8736e80712532a54a699ec1408ebcb502/dist/system/mouse/resizev.bmp -------------------------------------------------------------------------------- /dist/system/password.blank: -------------------------------------------------------------------------------- 1 | # This file is a database of user names and passwords. 2 | # Format: = 3 | admin=d41d8cd98f00b204e9800998ecf8427e 4 | -------------------------------------------------------------------------------- /dist/system/visopsys.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bbarker/Visopsys/46222ff8736e80712532a54a699ec1408ebcb502/dist/system/visopsys.jpg -------------------------------------------------------------------------------- /dist/system/wallpaper/Makefile: -------------------------------------------------------------------------------- 1 | ## 2 | ## Visopsys 3 | ## Copyright (C) 1998-2018 J. Andrew McLaughlin 4 | ## 5 | ## Makefile 6 | ## 7 | 8 | BUILDDIR = ../../../build/system/wallpaper 9 | 10 | all: 11 | mkdir -p ${BUILDDIR} 12 | cp *.jpg ${BUILDDIR} 13 | 14 | clean: 15 | rm -f *~ core 16 | rm -Rf ${BUILDDIR} 17 | 18 | -------------------------------------------------------------------------------- /dist/system/wallpaper/backgrnd.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bbarker/Visopsys/46222ff8736e80712532a54a699ec1408ebcb502/dist/system/wallpaper/backgrnd.jpg -------------------------------------------------------------------------------- /dist/system/wallpaper/madeira.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bbarker/Visopsys/46222ff8736e80712532a54a699ec1408ebcb502/dist/system/wallpaper/madeira.jpg -------------------------------------------------------------------------------- /dist/system/wallpaper/pascual.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bbarker/Visopsys/46222ff8736e80712532a54a699ec1408ebcb502/dist/system/wallpaper/pascual.jpg -------------------------------------------------------------------------------- /dist/system/wallpaper/spirals.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bbarker/Visopsys/46222ff8736e80712532a54a699ec1408ebcb502/dist/system/wallpaper/spirals.jpg -------------------------------------------------------------------------------- /ports/ntfsprogs/1.13.1_to_visopsys4.patch: -------------------------------------------------------------------------------- 1 | Index: libntfs/Makefile.visopsys 2 | =================================================================== 3 | RCS file: /home/andymc/Prog/cvs/visopsys/ports/ntfsprogs/libntfs/Makefile.visopsys,v 4 | retrieving revision 1.22 5 | diff -u -r1.22 Makefile.visopsys 6 | --- libntfs/Makefile.visopsys 19 Feb 2012 03:41:14 -0000 1.22 7 | +++ libntfs/Makefile.visopsys 24 Mar 2012 17:41:42 -0000 8 | @@ -74,8 +74,7 @@ 9 | ${AR} -rs ${LIBRARY} ${OBJS} 10 | 11 | ${SHAREDLIB}: ${PICOBJS} 12 | - ${CC} -shared -nostdlib -Wl,-soname=${SONAME} ${PICOBJS} -static \ 13 | - -lgcc -o $@ 14 | + ${CC} -shared -nostdlib -Wl,-soname=${SONAME},-z,norelro,--build-id=none ${PICOBJS} -static -lgcc -o $@ 15 | 16 | strip: ${SHAREDLIB} 17 | ${STRIP} 18 | -------------------------------------------------------------------------------- /ports/ntfsprogs/AUTHORS: -------------------------------------------------------------------------------- 1 | 2 | ntfsprogs is written and maintained by Anton Altaparmakov . 3 | 4 | Current active developers on the project are (in alphabetical order): 5 | 6 | Anton Altaparmakov 7 | Yuval Fledel (no email address on request) 8 | Yura Pakhuchiy 9 | Richard Russon 10 | Szakacsits Szabolcs 11 | -------------------------------------------------------------------------------- /ports/ntfsprogs/CREDITS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bbarker/Visopsys/46222ff8736e80712532a54a699ec1408ebcb502/ports/ntfsprogs/CREDITS -------------------------------------------------------------------------------- /ports/ntfsprogs/Makefile.visopsys: -------------------------------------------------------------------------------- 1 | ## 2 | ## Visopsys 3 | ## Copyright (C) 1998-2018 J. Andrew McLaughlin 4 | ## 5 | ## Makefile 6 | ## 7 | 8 | BUILDDIR = ../../build/system/libraries 9 | 10 | all: 11 | mkdir -p ${BUILDDIR} 12 | ${MAKE} -C libntfs -f Makefile.visopsys DEBUG=${DEBUG} 13 | ${MAKE} -C de 14 | ${MAKE} -C es 15 | ${MAKE} -C ru 16 | ${MAKE} -C tr 17 | 18 | clean: 19 | rm -f *~ *.o core 20 | ${MAKE} -C include/ntfs -f Makefile.visopsys clean 21 | ${MAKE} -C libntfs -f Makefile.visopsys clean 22 | ${MAKE} -C ntfsprogs -f Makefile.visopsys clean 23 | ${MAKE} -C de clean 24 | ${MAKE} -C es clean 25 | ${MAKE} -C ru clean 26 | ${MAKE} -C tr clean 27 | 28 | -------------------------------------------------------------------------------- /ports/ntfsprogs/de/Makefile: -------------------------------------------------------------------------------- 1 | ## 2 | ## Visopsys 3 | ## Copyright (C) 1998-2018 J. Andrew McLaughlin 4 | ## 5 | ## Makefile 6 | ## 7 | 8 | ROOT = ../../.. 9 | UTILSDIR = ${ROOT}/utils 10 | BUILDDIR = ${ROOT}/build 11 | MSGDIR = ${BUILDDIR}/system/locale/de 12 | 13 | all: 14 | mkdir -p ${MSGDIR} 15 | ${UTILSDIR}/makemsgs.sh . ${MSGDIR} 16 | 17 | clean: 18 | rm -f *~ core 19 | ${shell if [ -d ${MSGDIR} ] ; then for FILE in *.po ; \ 20 | do find ${MSGDIR} -name `basename $$FILE .po`.mo -exec rm {} \; ; \ 21 | done ; fi } 22 | 23 | -------------------------------------------------------------------------------- /ports/ntfsprogs/de/libntfs.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bbarker/Visopsys/46222ff8736e80712532a54a699ec1408ebcb502/ports/ntfsprogs/de/libntfs.po -------------------------------------------------------------------------------- /ports/ntfsprogs/es/Makefile: -------------------------------------------------------------------------------- 1 | ## 2 | ## Visopsys 3 | ## Copyright (C) 1998-2018 J. Andrew McLaughlin 4 | ## 5 | ## Makefile 6 | ## 7 | 8 | ROOT = ../../.. 9 | UTILSDIR = ${ROOT}/utils 10 | BUILDDIR = ${ROOT}/build 11 | MSGDIR = ${BUILDDIR}/system/locale/es 12 | 13 | all: 14 | mkdir -p ${MSGDIR} 15 | ${UTILSDIR}/makemsgs.sh . ${MSGDIR} 16 | 17 | clean: 18 | rm -f *~ core 19 | ${shell if [ -d ${MSGDIR} ] ; then for FILE in *.po ; \ 20 | do find ${MSGDIR} -name `basename $$FILE .po`.mo -exec rm {} \; ; \ 21 | done ; fi } 22 | 23 | -------------------------------------------------------------------------------- /ports/ntfsprogs/es/libntfs.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bbarker/Visopsys/46222ff8736e80712532a54a699ec1408ebcb502/ports/ntfsprogs/es/libntfs.po -------------------------------------------------------------------------------- /ports/ntfsprogs/include/ntfs/Makefile.visopsys: -------------------------------------------------------------------------------- 1 | ## 2 | ## Visopsys 3 | ## Copyright (C) 1998-2018 J. Andrew McLaughlin 4 | ## 5 | ## Makefile 6 | ## 7 | 8 | clean: 9 | rm -f *~ 10 | 11 | -------------------------------------------------------------------------------- /ports/ntfsprogs/ntfsprogs/Makefile.visopsys: -------------------------------------------------------------------------------- 1 | ## 2 | ## Visopsys 3 | ## Copyright (C) 1998-2018 J. Andrew McLaughlin 4 | ## 5 | ## Makefile 6 | ## 7 | 8 | clean: 9 | rm -f *~ 10 | 11 | -------------------------------------------------------------------------------- /ports/ntfsprogs/ntfsprogs/attrdef.h: -------------------------------------------------------------------------------- 1 | #ifndef _NTFS_ATTRDEF_H_ 2 | #define _NTFS_ATTRDEF_H_ 3 | 4 | extern const unsigned char attrdef_ntfs12_array[2400]; 5 | extern const unsigned char attrdef_ntfs3x_array[2560]; 6 | 7 | #endif /* _NTFS_ATTRDEF_H_ */ 8 | 9 | -------------------------------------------------------------------------------- /ports/ntfsprogs/ntfsprogs/boot.h: -------------------------------------------------------------------------------- 1 | #ifndef _NTFS_BOOT_H_ 2 | #define _NTFS_BOOT_H_ 3 | 4 | extern const unsigned char boot_array[3429]; 5 | 6 | #endif /* _NTFS_BOOT_H_ */ 7 | 8 | -------------------------------------------------------------------------------- /ports/ntfsprogs/ntfsprogs/sd.h: -------------------------------------------------------------------------------- 1 | #ifndef _NTFS_SD_H_ 2 | #define _NTFS_SD_H_ 3 | 4 | #include "types.h" 5 | 6 | void init_system_file_sd(int sys_file_no, u8 **sd_val, int *sd_val_len); 7 | void init_root_sd_31(u8 **sd_val, int *sd_val_len); 8 | void init_secure_30(char *sd_val); 9 | void init_secure_31(char *sd_val); 10 | 11 | #endif /* _NTFS_SD_H_ */ 12 | 13 | -------------------------------------------------------------------------------- /ports/ntfsprogs/ntfsprogs/upcase.h: -------------------------------------------------------------------------------- 1 | #ifndef _NTFS_UPCASE_H_ 2 | #define _NTFS_UPCASE_H_ 3 | 4 | void init_upcase_table(ntfschar *uc, u32 uc_len); 5 | 6 | #endif /* _NTFS_UPCASE_H_ */ 7 | 8 | -------------------------------------------------------------------------------- /ports/ntfsprogs/ru/Makefile: -------------------------------------------------------------------------------- 1 | ## 2 | ## Visopsys 3 | ## Copyright (C) 1998-2018 J. Andrew McLaughlin 4 | ## 5 | ## Makefile 6 | ## 7 | 8 | ROOT = ../../.. 9 | UTILSDIR = ${ROOT}/utils 10 | BUILDDIR = ${ROOT}/build 11 | MSGDIR = ${BUILDDIR}/system/locale/ru 12 | 13 | all: 14 | mkdir -p ${MSGDIR} 15 | ${UTILSDIR}/makemsgs.sh . ${MSGDIR} 16 | 17 | clean: 18 | rm -f *~ core 19 | ${shell if [ -d ${MSGDIR} ] ; then for FILE in *.po ; \ 20 | do find ${MSGDIR} -name `basename $$FILE .po`.mo -exec rm {} \; ; \ 21 | done ; fi } 22 | 23 | -------------------------------------------------------------------------------- /ports/ntfsprogs/ru/libntfs.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bbarker/Visopsys/46222ff8736e80712532a54a699ec1408ebcb502/ports/ntfsprogs/ru/libntfs.po -------------------------------------------------------------------------------- /ports/ntfsprogs/tr/Makefile: -------------------------------------------------------------------------------- 1 | ## 2 | ## Visopsys 3 | ## Copyright (C) 1998-2018 J. Andrew McLaughlin 4 | ## 5 | ## Makefile 6 | ## 7 | 8 | ROOT = ../../.. 9 | UTILSDIR = ${ROOT}/utils 10 | BUILDDIR = ${ROOT}/build 11 | MSGDIR = ${BUILDDIR}/system/locale/tr 12 | 13 | all: 14 | mkdir -p ${MSGDIR} 15 | ${UTILSDIR}/makemsgs.sh . ${MSGDIR} 16 | 17 | clean: 18 | rm -f *~ core 19 | ${shell if [ -d ${MSGDIR} ] ; then for FILE in *.po ; \ 20 | do find ${MSGDIR} -name `basename $$FILE .po`.mo -exec rm {} \; ; \ 21 | done ; fi } 22 | 23 | -------------------------------------------------------------------------------- /ports/ntfsprogs/tr/libntfs.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bbarker/Visopsys/46222ff8736e80712532a54a699ec1408ebcb502/ports/ntfsprogs/tr/libntfs.po -------------------------------------------------------------------------------- /src/Makefile: -------------------------------------------------------------------------------- 1 | ## 2 | ## Visopsys 3 | ## Copyright (C) 1998-2018 J. Andrew McLaughlin 4 | ## 5 | ## Makefile 6 | ## 7 | 8 | # This is the top-level source directories Makefile. 9 | 10 | all: 11 | ${MAKE} -C osloader 12 | ${MAKE} -C include 13 | ${MAKE} -C lib DEBUG=${DEBUG} 14 | ${MAKE} -C kernel DEBUG=${DEBUG} 15 | ${MAKE} -C programs DEBUG=${DEBUG} 16 | 17 | debug: 18 | ${MAKE} all DEBUG=1 19 | 20 | clean: 21 | ${MAKE} -C osloader clean 22 | ${MAKE} -C include clean 23 | ${MAKE} -C lib clean 24 | ${MAKE} -C kernel clean 25 | ${MAKE} -C programs clean 26 | rm -Rf *~ core 27 | 28 | -------------------------------------------------------------------------------- /src/include/Makefile: -------------------------------------------------------------------------------- 1 | ## 2 | ## Visopsys 3 | ## Copyright (C) 1998-2018 J. Andrew McLaughlin 4 | ## 5 | ## Makefile 6 | ## 7 | 8 | BUILDDIR = ../../build/system/headers 9 | 10 | all: 11 | mkdir -p ${BUILDDIR} 12 | cp *.h ${BUILDDIR} 13 | ${MAKE} -C arpa 14 | ${MAKE} -C netinet 15 | ${MAKE} -C sys 16 | 17 | clean: 18 | ${MAKE} -C arpa clean 19 | ${MAKE} -C netinet clean 20 | ${MAKE} -C sys clean 21 | rm -f *~ 22 | rm -Rf ${BUILDDIR} 23 | 24 | -------------------------------------------------------------------------------- /src/include/arpa/Makefile: -------------------------------------------------------------------------------- 1 | ## 2 | ## Visopsys 3 | ## Copyright (C) 1998-2018 J. Andrew McLaughlin 4 | ## 5 | ## Makefile 6 | ## 7 | 8 | BUILDDIR = ../../../build/system/headers/arpa 9 | 10 | all: 11 | mkdir -p ${BUILDDIR} 12 | cp *.h ${BUILDDIR} 13 | 14 | clean: 15 | rm -f *~ 16 | rm -Rf ${BUILDDIR} 17 | 18 | -------------------------------------------------------------------------------- /src/include/netinet/Makefile: -------------------------------------------------------------------------------- 1 | ## 2 | ## Visopsys 3 | ## Copyright (C) 1998-2018 J. Andrew McLaughlin 4 | ## 5 | ## Makefile 6 | ## 7 | 8 | BUILDDIR = ../../../build/system/headers/netinet 9 | 10 | all: 11 | mkdir -p ${BUILDDIR} 12 | cp *.h ${BUILDDIR} 13 | 14 | clean: 15 | rm -f *~ 16 | rm -Rf ${BUILDDIR} 17 | 18 | -------------------------------------------------------------------------------- /src/include/sys/Makefile: -------------------------------------------------------------------------------- 1 | ## 2 | ## Visopsys 3 | ## Copyright (C) 1998-2018 J. Andrew McLaughlin 4 | ## 5 | ## Makefile 6 | ## 7 | 8 | BUILDDIR = ../../../build/system/headers/sys 9 | 10 | all: 11 | mkdir -p ${BUILDDIR} 12 | cp *.h ${BUILDDIR} 13 | 14 | clean: 15 | rm -f *~ 16 | rm -Rf ${BUILDDIR} 17 | 18 | -------------------------------------------------------------------------------- /src/kernel/de/Makefile: -------------------------------------------------------------------------------- 1 | ## 2 | ## Visopsys 3 | ## Copyright (C) 1998-2018 J. Andrew McLaughlin 4 | ## 5 | ## Makefile 6 | ## 7 | 8 | ROOT = ../../.. 9 | BUILDDIR = ${ROOT}/build/system/locale/de 10 | UTILSDIR = ${ROOT}/utils 11 | 12 | all: 13 | mkdir -p ${BUILDDIR} 14 | ${UTILSDIR}/makemsgs.sh . ${BUILDDIR} 15 | 16 | clean: 17 | rm -f *~ core 18 | ${shell if [ -d ${BUILDDIR} ] ; then for FILE in *.po ; \ 19 | do find ${BUILDDIR} -name `basename $$FILE .po`.mo -exec rm {} \; ; \ 20 | done ; fi } 21 | 22 | -------------------------------------------------------------------------------- /src/kernel/de/kernel.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bbarker/Visopsys/46222ff8736e80712532a54a699ec1408ebcb502/src/kernel/de/kernel.po -------------------------------------------------------------------------------- /src/kernel/es/Makefile: -------------------------------------------------------------------------------- 1 | ## 2 | ## Visopsys 3 | ## Copyright (C) 1998-2018 J. Andrew McLaughlin 4 | ## 5 | ## Makefile 6 | ## 7 | 8 | ROOT = ../../.. 9 | BUILDDIR = ${ROOT}/build/system/locale/es 10 | UTILSDIR = ${ROOT}/utils 11 | 12 | all: 13 | mkdir -p ${BUILDDIR} 14 | ${UTILSDIR}/makemsgs.sh . ${BUILDDIR} 15 | 16 | clean: 17 | rm -f *~ core 18 | ${shell if [ -d ${BUILDDIR} ] ; then for FILE in *.po ; \ 19 | do find ${BUILDDIR} -name `basename $$FILE .po`.mo -exec rm {} \; ; \ 20 | done ; fi } 21 | 22 | -------------------------------------------------------------------------------- /src/kernel/es/kernel.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bbarker/Visopsys/46222ff8736e80712532a54a699ec1408ebcb502/src/kernel/es/kernel.po -------------------------------------------------------------------------------- /src/kernel/ru/Makefile: -------------------------------------------------------------------------------- 1 | ## 2 | ## Visopsys 3 | ## Copyright (C) 1998-2018 J. Andrew McLaughlin 4 | ## 5 | ## Makefile 6 | ## 7 | 8 | ROOT = ../../.. 9 | BUILDDIR = ${ROOT}/build/system/locale/ru 10 | UTILSDIR = ${ROOT}/utils 11 | 12 | all: 13 | mkdir -p ${BUILDDIR} 14 | ${UTILSDIR}/makemsgs.sh . ${BUILDDIR} 15 | 16 | clean: 17 | rm -f *~ core 18 | ${shell if [ -d ${BUILDDIR} ] ; then for FILE in *.po ; \ 19 | do find ${BUILDDIR} -name `basename $$FILE .po`.mo -exec rm {} \; ; \ 20 | done ; fi } 21 | 22 | -------------------------------------------------------------------------------- /src/kernel/ru/kernel.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bbarker/Visopsys/46222ff8736e80712532a54a699ec1408ebcb502/src/kernel/ru/kernel.po -------------------------------------------------------------------------------- /src/kernel/tr/Makefile: -------------------------------------------------------------------------------- 1 | ## 2 | ## Visopsys 3 | ## Copyright (C) 1998-2018 J. Andrew McLaughlin 4 | ## 5 | ## Makefile 6 | ## 7 | 8 | ROOT = ../../.. 9 | BUILDDIR = ${ROOT}/build/system/locale/tr 10 | UTILSDIR = ${ROOT}/utils 11 | 12 | all: 13 | mkdir -p ${BUILDDIR} 14 | ${UTILSDIR}/makemsgs.sh . ${BUILDDIR} 15 | 16 | clean: 17 | rm -f *~ core 18 | ${shell if [ -d ${BUILDDIR} ] ; then for FILE in *.po ; \ 19 | do find ${BUILDDIR} -name `basename $$FILE .po`.mo -exec rm {} \; ; \ 20 | done ; fi } 21 | 22 | -------------------------------------------------------------------------------- /src/kernel/tr/kernel.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bbarker/Visopsys/46222ff8736e80712532a54a699ec1408ebcb502/src/kernel/tr/kernel.po -------------------------------------------------------------------------------- /src/lib/libc/mbtowc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bbarker/Visopsys/46222ff8736e80712532a54a699ec1408ebcb502/src/lib/libc/mbtowc.c -------------------------------------------------------------------------------- /src/lib/libwindow/de/Makefile: -------------------------------------------------------------------------------- 1 | ## 2 | ## Visopsys 3 | ## Copyright (C) 1998-2018 J. Andrew McLaughlin 4 | ## 5 | ## Makefile 6 | ## 7 | 8 | ROOT = ../../../.. 9 | BUILDDIR = ${ROOT}/build/system/locale/de 10 | UTILSDIR = ${ROOT}/utils 11 | 12 | all: 13 | mkdir -p ${BUILDDIR} 14 | ${UTILSDIR}/makemsgs.sh . ${BUILDDIR} 15 | 16 | clean: 17 | rm -f *~ core 18 | ${shell if [ -d ${BUILDDIR} ] ; then for FILE in *.po ; \ 19 | do find ${BUILDDIR} -name `basename $$FILE .po`.mo -exec rm {} \; ; \ 20 | done ; fi } 21 | 22 | -------------------------------------------------------------------------------- /src/lib/libwindow/de/libwindow.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bbarker/Visopsys/46222ff8736e80712532a54a699ec1408ebcb502/src/lib/libwindow/de/libwindow.po -------------------------------------------------------------------------------- /src/lib/libwindow/es/Makefile: -------------------------------------------------------------------------------- 1 | ## 2 | ## Visopsys 3 | ## Copyright (C) 1998-2018 J. Andrew McLaughlin 4 | ## 5 | ## Makefile 6 | ## 7 | 8 | ROOT = ../../../.. 9 | BUILDDIR = ${ROOT}/build/system/locale/es 10 | UTILSDIR = ${ROOT}/utils 11 | 12 | all: 13 | mkdir -p ${BUILDDIR} 14 | ${UTILSDIR}/makemsgs.sh . ${BUILDDIR} 15 | 16 | clean: 17 | rm -f *~ core 18 | ${shell if [ -d ${BUILDDIR} ] ; then for FILE in *.po ; \ 19 | do find ${BUILDDIR} -name `basename $$FILE .po`.mo -exec rm {} \; ; \ 20 | done ; fi } 21 | 22 | -------------------------------------------------------------------------------- /src/lib/libwindow/ru/Makefile: -------------------------------------------------------------------------------- 1 | ## 2 | ## Visopsys 3 | ## Copyright (C) 1998-2018 J. Andrew McLaughlin 4 | ## 5 | ## Makefile 6 | ## 7 | 8 | ROOT = ../../../.. 9 | BUILDDIR = ${ROOT}/build/system/locale/ru 10 | UTILSDIR = ${ROOT}/utils 11 | 12 | all: 13 | mkdir -p ${BUILDDIR} 14 | ${UTILSDIR}/makemsgs.sh . ${BUILDDIR} 15 | 16 | clean: 17 | rm -f *~ core 18 | ${shell if [ -d ${BUILDDIR} ] ; then for FILE in *.po ; \ 19 | do find ${BUILDDIR} -name `basename $$FILE .po`.mo -exec rm {} \; ; \ 20 | done ; fi } 21 | 22 | -------------------------------------------------------------------------------- /src/lib/libwindow/ru/libwindow.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bbarker/Visopsys/46222ff8736e80712532a54a699ec1408ebcb502/src/lib/libwindow/ru/libwindow.po -------------------------------------------------------------------------------- /src/lib/libwindow/tr/Makefile: -------------------------------------------------------------------------------- 1 | ## 2 | ## Visopsys 3 | ## Copyright (C) 1998-2018 J. Andrew McLaughlin 4 | ## 5 | ## Makefile 6 | ## 7 | 8 | ROOT = ../../../.. 9 | BUILDDIR = ${ROOT}/build/system/locale/tr 10 | UTILSDIR = ${ROOT}/utils 11 | 12 | all: 13 | mkdir -p ${BUILDDIR} 14 | ${UTILSDIR}/makemsgs.sh . ${BUILDDIR} 15 | 16 | clean: 17 | rm -f *~ core 18 | ${shell if [ -d ${BUILDDIR} ] ; then for FILE in *.po ; \ 19 | do find ${BUILDDIR} -name `basename $$FILE .po`.mo -exec rm {} \; ; \ 20 | done ; fi } 21 | 22 | -------------------------------------------------------------------------------- /src/lib/libwindow/tr/libwindow.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bbarker/Visopsys/46222ff8736e80712532a54a699ec1408ebcb502/src/lib/libwindow/tr/libwindow.po -------------------------------------------------------------------------------- /src/lib/shared/Makefile: -------------------------------------------------------------------------------- 1 | ## 2 | ## Visopsys 3 | ## Copyright (C) 1998-2016 J. Andrew McLaughlin 4 | ## 5 | ## Makefile 6 | ## 7 | 8 | all: 9 | 10 | clean: 11 | rm -f *~ core 12 | 13 | -------------------------------------------------------------------------------- /src/programs/cat.pot: -------------------------------------------------------------------------------- 1 | # SOME DESCRIPTIVE TITLE. 2 | # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER 3 | # This file is distributed under the same license as the PACKAGE package. 4 | # FIRST AUTHOR , YEAR. 5 | # 6 | #, fuzzy 7 | msgid "" 8 | msgstr "" 9 | "Project-Id-Version: PACKAGE VERSION\n" 10 | "Report-Msgid-Bugs-To: \n" 11 | "POT-Creation-Date: 2018-08-06 01:04+0100\n" 12 | "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" 13 | "Last-Translator: FULL NAME \n" 14 | "Language-Team: LANGUAGE \n" 15 | "Language: \n" 16 | "MIME-Version: 1.0\n" 17 | "Content-Type: text/plain; charset=CHARSET\n" 18 | "Content-Transfer-Encoding: 8bit\n" 19 | 20 | #: cat.c:56 21 | #, c-format 22 | msgid "" 23 | "usage:\n" 24 | "%s [file2] [...]\n" 25 | msgstr "" 26 | -------------------------------------------------------------------------------- /src/programs/de/Makefile: -------------------------------------------------------------------------------- 1 | ## 2 | ## Visopsys 3 | ## Copyright (C) 1998-2018 J. Andrew McLaughlin 4 | ## 5 | ## Makefile 6 | ## 7 | 8 | ROOT = ../../.. 9 | BUILDDIR = ${ROOT}/build/system/locale/de 10 | UTILSDIR = ${ROOT}/utils 11 | 12 | all: 13 | mkdir -p ${BUILDDIR} 14 | ${UTILSDIR}/makemsgs.sh . ${BUILDDIR} 15 | 16 | clean: 17 | rm -f *~ core 18 | ${shell if [ -d ${BUILDDIR} ] ; then for FILE in *.po ; \ 19 | do find ${BUILDDIR} -name `basename $$FILE .po`.mo -exec rm {} \; ; \ 20 | done ; fi } 21 | 22 | -------------------------------------------------------------------------------- /src/programs/de/adduser.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bbarker/Visopsys/46222ff8736e80712532a54a699ec1408ebcb502/src/programs/de/adduser.po -------------------------------------------------------------------------------- /src/programs/de/bootmenu.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bbarker/Visopsys/46222ff8736e80712532a54a699ec1408ebcb502/src/programs/de/bootmenu.po -------------------------------------------------------------------------------- /src/programs/de/cal.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bbarker/Visopsys/46222ff8736e80712532a54a699ec1408ebcb502/src/programs/de/cal.po -------------------------------------------------------------------------------- /src/programs/de/calc.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bbarker/Visopsys/46222ff8736e80712532a54a699ec1408ebcb502/src/programs/de/calc.po -------------------------------------------------------------------------------- /src/programs/de/cat.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bbarker/Visopsys/46222ff8736e80712532a54a699ec1408ebcb502/src/programs/de/cat.po -------------------------------------------------------------------------------- /src/programs/de/cdrom.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bbarker/Visopsys/46222ff8736e80712532a54a699ec1408ebcb502/src/programs/de/cdrom.po -------------------------------------------------------------------------------- /src/programs/de/chkdisk.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bbarker/Visopsys/46222ff8736e80712532a54a699ec1408ebcb502/src/programs/de/chkdisk.po -------------------------------------------------------------------------------- /src/programs/de/clock.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bbarker/Visopsys/46222ff8736e80712532a54a699ec1408ebcb502/src/programs/de/clock.po -------------------------------------------------------------------------------- /src/programs/de/computer.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bbarker/Visopsys/46222ff8736e80712532a54a699ec1408ebcb502/src/programs/de/computer.po -------------------------------------------------------------------------------- /src/programs/de/confedit.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bbarker/Visopsys/46222ff8736e80712532a54a699ec1408ebcb502/src/programs/de/confedit.po -------------------------------------------------------------------------------- /src/programs/de/console.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bbarker/Visopsys/46222ff8736e80712532a54a699ec1408ebcb502/src/programs/de/console.po -------------------------------------------------------------------------------- /src/programs/de/copy-boot.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bbarker/Visopsys/46222ff8736e80712532a54a699ec1408ebcb502/src/programs/de/copy-boot.po -------------------------------------------------------------------------------- /src/programs/de/copy-mbr.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bbarker/Visopsys/46222ff8736e80712532a54a699ec1408ebcb502/src/programs/de/copy-mbr.po -------------------------------------------------------------------------------- /src/programs/de/cp.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bbarker/Visopsys/46222ff8736e80712532a54a699ec1408ebcb502/src/programs/de/cp.po -------------------------------------------------------------------------------- /src/programs/de/defrag.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bbarker/Visopsys/46222ff8736e80712532a54a699ec1408ebcb502/src/programs/de/defrag.po -------------------------------------------------------------------------------- /src/programs/de/disks.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bbarker/Visopsys/46222ff8736e80712532a54a699ec1408ebcb502/src/programs/de/disks.po -------------------------------------------------------------------------------- /src/programs/de/disprops.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bbarker/Visopsys/46222ff8736e80712532a54a699ec1408ebcb502/src/programs/de/disprops.po -------------------------------------------------------------------------------- /src/programs/de/edit.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bbarker/Visopsys/46222ff8736e80712532a54a699ec1408ebcb502/src/programs/de/edit.po -------------------------------------------------------------------------------- /src/programs/de/file.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bbarker/Visopsys/46222ff8736e80712532a54a699ec1408ebcb502/src/programs/de/file.po -------------------------------------------------------------------------------- /src/programs/de/filesys.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bbarker/Visopsys/46222ff8736e80712532a54a699ec1408ebcb502/src/programs/de/filesys.po -------------------------------------------------------------------------------- /src/programs/de/fontutil.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bbarker/Visopsys/46222ff8736e80712532a54a699ec1408ebcb502/src/programs/de/fontutil.po -------------------------------------------------------------------------------- /src/programs/de/format.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bbarker/Visopsys/46222ff8736e80712532a54a699ec1408ebcb502/src/programs/de/format.po -------------------------------------------------------------------------------- /src/programs/de/help.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bbarker/Visopsys/46222ff8736e80712532a54a699ec1408ebcb502/src/programs/de/help.po -------------------------------------------------------------------------------- /src/programs/de/hexdump.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bbarker/Visopsys/46222ff8736e80712532a54a699ec1408ebcb502/src/programs/de/hexdump.po -------------------------------------------------------------------------------- /src/programs/de/iconwin.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bbarker/Visopsys/46222ff8736e80712532a54a699ec1408ebcb502/src/programs/de/iconwin.po -------------------------------------------------------------------------------- /src/programs/de/ifconfig.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bbarker/Visopsys/46222ff8736e80712532a54a699ec1408ebcb502/src/programs/de/ifconfig.po -------------------------------------------------------------------------------- /src/programs/de/imgboot.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bbarker/Visopsys/46222ff8736e80712532a54a699ec1408ebcb502/src/programs/de/imgboot.po -------------------------------------------------------------------------------- /src/programs/de/imgedit.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bbarker/Visopsys/46222ff8736e80712532a54a699ec1408ebcb502/src/programs/de/imgedit.po -------------------------------------------------------------------------------- /src/programs/de/install.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bbarker/Visopsys/46222ff8736e80712532a54a699ec1408ebcb502/src/programs/de/install.po -------------------------------------------------------------------------------- /src/programs/de/keyboard.po: -------------------------------------------------------------------------------- 1 | #: keyboard.c:55 2 | msgid "Quit" 3 | msgstr "" 4 | 5 | #: keyboard.c:232 6 | #, c-format 7 | msgid "" 8 | "\n" 9 | "The \"%s\" command only works in graphics mode\n" 10 | msgstr "" 11 | "\n" 12 | "Das Kommando \"%s\" funktioniert nur im Grafikmodus\n" 13 | 14 | #: keyboard.c:248 15 | #, c-format 16 | msgid "Unknown option '%c'\n" 17 | msgstr "" 18 | -------------------------------------------------------------------------------- /src/programs/de/keymap.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bbarker/Visopsys/46222ff8736e80712532a54a699ec1408ebcb502/src/programs/de/keymap.po -------------------------------------------------------------------------------- /src/programs/de/kill.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bbarker/Visopsys/46222ff8736e80712532a54a699ec1408ebcb502/src/programs/de/kill.po -------------------------------------------------------------------------------- /src/programs/de/login.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bbarker/Visopsys/46222ff8736e80712532a54a699ec1408ebcb502/src/programs/de/login.po -------------------------------------------------------------------------------- /src/programs/de/lsdev.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bbarker/Visopsys/46222ff8736e80712532a54a699ec1408ebcb502/src/programs/de/lsdev.po -------------------------------------------------------------------------------- /src/programs/de/mem.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bbarker/Visopsys/46222ff8736e80712532a54a699ec1408ebcb502/src/programs/de/mem.po -------------------------------------------------------------------------------- /src/programs/de/mines.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bbarker/Visopsys/46222ff8736e80712532a54a699ec1408ebcb502/src/programs/de/mines.po -------------------------------------------------------------------------------- /src/programs/de/mkdir.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bbarker/Visopsys/46222ff8736e80712532a54a699ec1408ebcb502/src/programs/de/mkdir.po -------------------------------------------------------------------------------- /src/programs/de/more.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bbarker/Visopsys/46222ff8736e80712532a54a699ec1408ebcb502/src/programs/de/more.po -------------------------------------------------------------------------------- /src/programs/de/mount.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bbarker/Visopsys/46222ff8736e80712532a54a699ec1408ebcb502/src/programs/de/mount.po -------------------------------------------------------------------------------- /src/programs/de/mv.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bbarker/Visopsys/46222ff8736e80712532a54a699ec1408ebcb502/src/programs/de/mv.po -------------------------------------------------------------------------------- /src/programs/de/nm.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bbarker/Visopsys/46222ff8736e80712532a54a699ec1408ebcb502/src/programs/de/nm.po -------------------------------------------------------------------------------- /src/programs/de/passwd.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bbarker/Visopsys/46222ff8736e80712532a54a699ec1408ebcb502/src/programs/de/passwd.po -------------------------------------------------------------------------------- /src/programs/de/ping.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bbarker/Visopsys/46222ff8736e80712532a54a699ec1408ebcb502/src/programs/de/ping.po -------------------------------------------------------------------------------- /src/programs/de/progman.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bbarker/Visopsys/46222ff8736e80712532a54a699ec1408ebcb502/src/programs/de/progman.po -------------------------------------------------------------------------------- /src/programs/de/ps.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bbarker/Visopsys/46222ff8736e80712532a54a699ec1408ebcb502/src/programs/de/ps.po -------------------------------------------------------------------------------- /src/programs/de/ramdisk.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bbarker/Visopsys/46222ff8736e80712532a54a699ec1408ebcb502/src/programs/de/ramdisk.po -------------------------------------------------------------------------------- /src/programs/de/reboot.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bbarker/Visopsys/46222ff8736e80712532a54a699ec1408ebcb502/src/programs/de/reboot.po -------------------------------------------------------------------------------- /src/programs/de/renice.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bbarker/Visopsys/46222ff8736e80712532a54a699ec1408ebcb502/src/programs/de/renice.po -------------------------------------------------------------------------------- /src/programs/de/rm.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bbarker/Visopsys/46222ff8736e80712532a54a699ec1408ebcb502/src/programs/de/rm.po -------------------------------------------------------------------------------- /src/programs/de/rmdir.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bbarker/Visopsys/46222ff8736e80712532a54a699ec1408ebcb502/src/programs/de/rmdir.po -------------------------------------------------------------------------------- /src/programs/de/shutdown.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bbarker/Visopsys/46222ff8736e80712532a54a699ec1408ebcb502/src/programs/de/shutdown.po -------------------------------------------------------------------------------- /src/programs/de/snake.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bbarker/Visopsys/46222ff8736e80712532a54a699ec1408ebcb502/src/programs/de/snake.po -------------------------------------------------------------------------------- /src/programs/de/sysdiag.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bbarker/Visopsys/46222ff8736e80712532a54a699ec1408ebcb502/src/programs/de/sysdiag.po -------------------------------------------------------------------------------- /src/programs/de/telnet.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bbarker/Visopsys/46222ff8736e80712532a54a699ec1408ebcb502/src/programs/de/telnet.po -------------------------------------------------------------------------------- /src/programs/de/touch.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bbarker/Visopsys/46222ff8736e80712532a54a699ec1408ebcb502/src/programs/de/touch.po -------------------------------------------------------------------------------- /src/programs/de/umount.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bbarker/Visopsys/46222ff8736e80712532a54a699ec1408ebcb502/src/programs/de/umount.po -------------------------------------------------------------------------------- /src/programs/de/uptime.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bbarker/Visopsys/46222ff8736e80712532a54a699ec1408ebcb502/src/programs/de/uptime.po -------------------------------------------------------------------------------- /src/programs/de/users.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bbarker/Visopsys/46222ff8736e80712532a54a699ec1408ebcb502/src/programs/de/users.po -------------------------------------------------------------------------------- /src/programs/de/view.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bbarker/Visopsys/46222ff8736e80712532a54a699ec1408ebcb502/src/programs/de/view.po -------------------------------------------------------------------------------- /src/programs/de/vsh.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bbarker/Visopsys/46222ff8736e80712532a54a699ec1408ebcb502/src/programs/de/vsh.po -------------------------------------------------------------------------------- /src/programs/de/wallpaper.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bbarker/Visopsys/46222ff8736e80712532a54a699ec1408ebcb502/src/programs/de/wallpaper.po -------------------------------------------------------------------------------- /src/programs/es/Makefile: -------------------------------------------------------------------------------- 1 | ## 2 | ## Visopsys 3 | ## Copyright (C) 1998-2018 J. Andrew McLaughlin 4 | ## 5 | ## Makefile 6 | ## 7 | 8 | ROOT = ../../.. 9 | BUILDDIR = ${ROOT}/build/system/locale/es 10 | UTILSDIR = ${ROOT}/utils 11 | 12 | all: 13 | mkdir -p ${BUILDDIR} 14 | ${UTILSDIR}/makemsgs.sh . ${BUILDDIR} 15 | 16 | clean: 17 | rm -f *~ core 18 | ${shell if [ -d ${BUILDDIR} ] ; then for FILE in *.po ; \ 19 | do find ${BUILDDIR} -name `basename $$FILE .po`.mo -exec rm {} \; ; \ 20 | done ; fi } 21 | 22 | -------------------------------------------------------------------------------- /src/programs/es/calc.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bbarker/Visopsys/46222ff8736e80712532a54a699ec1408ebcb502/src/programs/es/calc.po -------------------------------------------------------------------------------- /src/programs/es/cdrom.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bbarker/Visopsys/46222ff8736e80712532a54a699ec1408ebcb502/src/programs/es/cdrom.po -------------------------------------------------------------------------------- /src/programs/es/clock.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bbarker/Visopsys/46222ff8736e80712532a54a699ec1408ebcb502/src/programs/es/clock.po -------------------------------------------------------------------------------- /src/programs/es/cmdwin.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bbarker/Visopsys/46222ff8736e80712532a54a699ec1408ebcb502/src/programs/es/cmdwin.po -------------------------------------------------------------------------------- /src/programs/es/computer.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bbarker/Visopsys/46222ff8736e80712532a54a699ec1408ebcb502/src/programs/es/computer.po -------------------------------------------------------------------------------- /src/programs/es/confedit.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bbarker/Visopsys/46222ff8736e80712532a54a699ec1408ebcb502/src/programs/es/confedit.po -------------------------------------------------------------------------------- /src/programs/es/console.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bbarker/Visopsys/46222ff8736e80712532a54a699ec1408ebcb502/src/programs/es/console.po -------------------------------------------------------------------------------- /src/programs/es/copy-boot.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bbarker/Visopsys/46222ff8736e80712532a54a699ec1408ebcb502/src/programs/es/copy-boot.po -------------------------------------------------------------------------------- /src/programs/es/copy-mbr.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bbarker/Visopsys/46222ff8736e80712532a54a699ec1408ebcb502/src/programs/es/copy-mbr.po -------------------------------------------------------------------------------- /src/programs/es/cp.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bbarker/Visopsys/46222ff8736e80712532a54a699ec1408ebcb502/src/programs/es/cp.po -------------------------------------------------------------------------------- /src/programs/es/defrag.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bbarker/Visopsys/46222ff8736e80712532a54a699ec1408ebcb502/src/programs/es/defrag.po -------------------------------------------------------------------------------- /src/programs/es/disks.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bbarker/Visopsys/46222ff8736e80712532a54a699ec1408ebcb502/src/programs/es/disks.po -------------------------------------------------------------------------------- /src/programs/es/disprops.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bbarker/Visopsys/46222ff8736e80712532a54a699ec1408ebcb502/src/programs/es/disprops.po -------------------------------------------------------------------------------- /src/programs/es/edit.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bbarker/Visopsys/46222ff8736e80712532a54a699ec1408ebcb502/src/programs/es/edit.po -------------------------------------------------------------------------------- /src/programs/es/filebrowse.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bbarker/Visopsys/46222ff8736e80712532a54a699ec1408ebcb502/src/programs/es/filebrowse.po -------------------------------------------------------------------------------- /src/programs/es/filesys.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bbarker/Visopsys/46222ff8736e80712532a54a699ec1408ebcb502/src/programs/es/filesys.po -------------------------------------------------------------------------------- /src/programs/es/format.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bbarker/Visopsys/46222ff8736e80712532a54a699ec1408ebcb502/src/programs/es/format.po -------------------------------------------------------------------------------- /src/programs/es/iconwin.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bbarker/Visopsys/46222ff8736e80712532a54a699ec1408ebcb502/src/programs/es/iconwin.po -------------------------------------------------------------------------------- /src/programs/es/ifconfig.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bbarker/Visopsys/46222ff8736e80712532a54a699ec1408ebcb502/src/programs/es/ifconfig.po -------------------------------------------------------------------------------- /src/programs/es/imgboot.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bbarker/Visopsys/46222ff8736e80712532a54a699ec1408ebcb502/src/programs/es/imgboot.po -------------------------------------------------------------------------------- /src/programs/es/imgedit.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bbarker/Visopsys/46222ff8736e80712532a54a699ec1408ebcb502/src/programs/es/imgedit.po -------------------------------------------------------------------------------- /src/programs/es/install.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bbarker/Visopsys/46222ff8736e80712532a54a699ec1408ebcb502/src/programs/es/install.po -------------------------------------------------------------------------------- /src/programs/es/keyboard.po: -------------------------------------------------------------------------------- 1 | #: keyboard.c:55 2 | msgid "Quit" 3 | msgstr "" 4 | 5 | #: keyboard.c:232 6 | #, c-format 7 | msgid "" 8 | "\n" 9 | "The \"%s\" command only works in graphics mode\n" 10 | msgstr "" 11 | "\n" 12 | "El comando \"%s\" funciona solamente en modo grfico\n" 13 | 14 | #: keyboard.c:248 15 | #, c-format 16 | msgid "Unknown option '%c'\n" 17 | msgstr "" 18 | -------------------------------------------------------------------------------- /src/programs/es/keymap.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bbarker/Visopsys/46222ff8736e80712532a54a699ec1408ebcb502/src/programs/es/keymap.po -------------------------------------------------------------------------------- /src/programs/es/login.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bbarker/Visopsys/46222ff8736e80712532a54a699ec1408ebcb502/src/programs/es/login.po -------------------------------------------------------------------------------- /src/programs/es/lsdev.po: -------------------------------------------------------------------------------- 1 | # Visopsys 2 | # Copyright (C) 1998-2018 J. Andrew McLaughlin 3 | # 4 | # Spanish Translation - 2013 - marianopbernacki@gmail.com 5 | msgid "" 6 | msgstr "" 7 | "Project-Id-Version: PACKAGE VERSION\n" 8 | "Report-Msgid-Bugs-To: \n" 9 | "POT-Creation-Date: 2017-05-29 02:02+0100\n" 10 | "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" 11 | "Last-Translator: FULL NAME \n" 12 | "Language-Team: LANGUAGE \n" 13 | "Language: \n" 14 | "MIME-Version: 1.0\n" 15 | "Content-Type: text/plain; charset=ISO-8859-15\n" 16 | "Content-Transfer-Encoding: 8bit\n" 17 | 18 | #: lsdev.c:54 19 | msgid "System Device Information" 20 | msgstr "Informacion de dispositivos del sistema" 21 | 22 | #: lsdev.c:283 23 | #, c-format 24 | msgid "Unknown option '%c'\n" 25 | msgstr "" 26 | -------------------------------------------------------------------------------- /src/programs/es/mem.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bbarker/Visopsys/46222ff8736e80712532a54a699ec1408ebcb502/src/programs/es/mem.po -------------------------------------------------------------------------------- /src/programs/es/mines.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bbarker/Visopsys/46222ff8736e80712532a54a699ec1408ebcb502/src/programs/es/mines.po -------------------------------------------------------------------------------- /src/programs/es/more.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bbarker/Visopsys/46222ff8736e80712532a54a699ec1408ebcb502/src/programs/es/more.po -------------------------------------------------------------------------------- /src/programs/es/mount.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bbarker/Visopsys/46222ff8736e80712532a54a699ec1408ebcb502/src/programs/es/mount.po -------------------------------------------------------------------------------- /src/programs/es/passwd.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bbarker/Visopsys/46222ff8736e80712532a54a699ec1408ebcb502/src/programs/es/passwd.po -------------------------------------------------------------------------------- /src/programs/es/ping.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bbarker/Visopsys/46222ff8736e80712532a54a699ec1408ebcb502/src/programs/es/ping.po -------------------------------------------------------------------------------- /src/programs/es/ramdisk.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bbarker/Visopsys/46222ff8736e80712532a54a699ec1408ebcb502/src/programs/es/ramdisk.po -------------------------------------------------------------------------------- /src/programs/es/reboot.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bbarker/Visopsys/46222ff8736e80712532a54a699ec1408ebcb502/src/programs/es/reboot.po -------------------------------------------------------------------------------- /src/programs/es/rm.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bbarker/Visopsys/46222ff8736e80712532a54a699ec1408ebcb502/src/programs/es/rm.po -------------------------------------------------------------------------------- /src/programs/es/snake.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bbarker/Visopsys/46222ff8736e80712532a54a699ec1408ebcb502/src/programs/es/snake.po -------------------------------------------------------------------------------- /src/programs/es/telnet.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bbarker/Visopsys/46222ff8736e80712532a54a699ec1408ebcb502/src/programs/es/telnet.po -------------------------------------------------------------------------------- /src/programs/es/uptime.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bbarker/Visopsys/46222ff8736e80712532a54a699ec1408ebcb502/src/programs/es/uptime.po -------------------------------------------------------------------------------- /src/programs/es/users.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bbarker/Visopsys/46222ff8736e80712532a54a699ec1408ebcb502/src/programs/es/users.po -------------------------------------------------------------------------------- /src/programs/es/view.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bbarker/Visopsys/46222ff8736e80712532a54a699ec1408ebcb502/src/programs/es/view.po -------------------------------------------------------------------------------- /src/programs/es/vsh.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bbarker/Visopsys/46222ff8736e80712532a54a699ec1408ebcb502/src/programs/es/vsh.po -------------------------------------------------------------------------------- /src/programs/fdisk/de/Makefile: -------------------------------------------------------------------------------- 1 | ## 2 | ## Visopsys 3 | ## Copyright (C) 1998-2018 J. Andrew McLaughlin 4 | ## 5 | ## Makefile 6 | ## 7 | 8 | ROOT = ../../../.. 9 | BUILDDIR = ${ROOT}/build/system/locale/de 10 | UTILSDIR = ${ROOT}/utils 11 | 12 | all: 13 | mkdir -p ${BUILDDIR} 14 | ${UTILSDIR}/makemsgs.sh . ${BUILDDIR} 15 | 16 | clean: 17 | rm -f *~ core 18 | ${shell if [ -d ${BUILDDIR} ] ; then for FILE in *.po ; \ 19 | do find ${BUILDDIR} -name `basename $$FILE .po`.mo -exec rm {} \; ; \ 20 | done ; fi } 21 | 22 | -------------------------------------------------------------------------------- /src/programs/fdisk/de/fdisk.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bbarker/Visopsys/46222ff8736e80712532a54a699ec1408ebcb502/src/programs/fdisk/de/fdisk.po -------------------------------------------------------------------------------- /src/programs/help.pot: -------------------------------------------------------------------------------- 1 | # SOME DESCRIPTIVE TITLE. 2 | # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER 3 | # This file is distributed under the same license as the PACKAGE package. 4 | # FIRST AUTHOR , YEAR. 5 | # 6 | #, fuzzy 7 | msgid "" 8 | msgstr "" 9 | "Project-Id-Version: PACKAGE VERSION\n" 10 | "Report-Msgid-Bugs-To: \n" 11 | "POT-Creation-Date: 2018-08-06 01:04+0100\n" 12 | "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" 13 | "Last-Translator: FULL NAME \n" 14 | "Language-Team: LANGUAGE \n" 15 | "Language: \n" 16 | "MIME-Version: 1.0\n" 17 | "Content-Type: text/plain; charset=CHARSET\n" 18 | "Content-Transfer-Encoding: 8bit\n" 19 | 20 | #: help.c:154 21 | #, c-format 22 | msgid "There is no help available for \"%s\"\n" 23 | msgstr "" 24 | -------------------------------------------------------------------------------- /src/programs/ru/Makefile: -------------------------------------------------------------------------------- 1 | ## 2 | ## Visopsys 3 | ## Copyright (C) 1998-2018 J. Andrew McLaughlin 4 | ## 5 | ## Makefile 6 | ## 7 | 8 | ROOT = ../../.. 9 | BUILDDIR = ${ROOT}/build/system/locale/ru 10 | UTILSDIR = ${ROOT}/utils 11 | 12 | all: 13 | mkdir -p ${BUILDDIR} 14 | ${UTILSDIR}/makemsgs.sh . ${BUILDDIR} 15 | 16 | clean: 17 | rm -f *~ core 18 | ${shell if [ -d ${BUILDDIR} ] ; then for FILE in *.po ; \ 19 | do find ${BUILDDIR} -name `basename $$FILE .po`.mo -exec rm {} \; ; \ 20 | done ; fi } 21 | 22 | -------------------------------------------------------------------------------- /src/programs/ru/adduser.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bbarker/Visopsys/46222ff8736e80712532a54a699ec1408ebcb502/src/programs/ru/adduser.po -------------------------------------------------------------------------------- /src/programs/ru/bootmenu.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bbarker/Visopsys/46222ff8736e80712532a54a699ec1408ebcb502/src/programs/ru/bootmenu.po -------------------------------------------------------------------------------- /src/programs/ru/cal.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bbarker/Visopsys/46222ff8736e80712532a54a699ec1408ebcb502/src/programs/ru/cal.po -------------------------------------------------------------------------------- /src/programs/ru/calc.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bbarker/Visopsys/46222ff8736e80712532a54a699ec1408ebcb502/src/programs/ru/calc.po -------------------------------------------------------------------------------- /src/programs/ru/cat.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bbarker/Visopsys/46222ff8736e80712532a54a699ec1408ebcb502/src/programs/ru/cat.po -------------------------------------------------------------------------------- /src/programs/ru/cdrom.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bbarker/Visopsys/46222ff8736e80712532a54a699ec1408ebcb502/src/programs/ru/cdrom.po -------------------------------------------------------------------------------- /src/programs/ru/chkdisk.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bbarker/Visopsys/46222ff8736e80712532a54a699ec1408ebcb502/src/programs/ru/chkdisk.po -------------------------------------------------------------------------------- /src/programs/ru/clock.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bbarker/Visopsys/46222ff8736e80712532a54a699ec1408ebcb502/src/programs/ru/clock.po -------------------------------------------------------------------------------- /src/programs/ru/cmdwin.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bbarker/Visopsys/46222ff8736e80712532a54a699ec1408ebcb502/src/programs/ru/cmdwin.po -------------------------------------------------------------------------------- /src/programs/ru/computer.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bbarker/Visopsys/46222ff8736e80712532a54a699ec1408ebcb502/src/programs/ru/computer.po -------------------------------------------------------------------------------- /src/programs/ru/confedit.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bbarker/Visopsys/46222ff8736e80712532a54a699ec1408ebcb502/src/programs/ru/confedit.po -------------------------------------------------------------------------------- /src/programs/ru/console.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bbarker/Visopsys/46222ff8736e80712532a54a699ec1408ebcb502/src/programs/ru/console.po -------------------------------------------------------------------------------- /src/programs/ru/copy-mbr.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bbarker/Visopsys/46222ff8736e80712532a54a699ec1408ebcb502/src/programs/ru/copy-mbr.po -------------------------------------------------------------------------------- /src/programs/ru/cp.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bbarker/Visopsys/46222ff8736e80712532a54a699ec1408ebcb502/src/programs/ru/cp.po -------------------------------------------------------------------------------- /src/programs/ru/defrag.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bbarker/Visopsys/46222ff8736e80712532a54a699ec1408ebcb502/src/programs/ru/defrag.po -------------------------------------------------------------------------------- /src/programs/ru/disks.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bbarker/Visopsys/46222ff8736e80712532a54a699ec1408ebcb502/src/programs/ru/disks.po -------------------------------------------------------------------------------- /src/programs/ru/disprops.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bbarker/Visopsys/46222ff8736e80712532a54a699ec1408ebcb502/src/programs/ru/disprops.po -------------------------------------------------------------------------------- /src/programs/ru/edit.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bbarker/Visopsys/46222ff8736e80712532a54a699ec1408ebcb502/src/programs/ru/edit.po -------------------------------------------------------------------------------- /src/programs/ru/file.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bbarker/Visopsys/46222ff8736e80712532a54a699ec1408ebcb502/src/programs/ru/file.po -------------------------------------------------------------------------------- /src/programs/ru/filebrowse.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bbarker/Visopsys/46222ff8736e80712532a54a699ec1408ebcb502/src/programs/ru/filebrowse.po -------------------------------------------------------------------------------- /src/programs/ru/filesys.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bbarker/Visopsys/46222ff8736e80712532a54a699ec1408ebcb502/src/programs/ru/filesys.po -------------------------------------------------------------------------------- /src/programs/ru/fontutil.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bbarker/Visopsys/46222ff8736e80712532a54a699ec1408ebcb502/src/programs/ru/fontutil.po -------------------------------------------------------------------------------- /src/programs/ru/format.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bbarker/Visopsys/46222ff8736e80712532a54a699ec1408ebcb502/src/programs/ru/format.po -------------------------------------------------------------------------------- /src/programs/ru/help.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bbarker/Visopsys/46222ff8736e80712532a54a699ec1408ebcb502/src/programs/ru/help.po -------------------------------------------------------------------------------- /src/programs/ru/hexdump.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bbarker/Visopsys/46222ff8736e80712532a54a699ec1408ebcb502/src/programs/ru/hexdump.po -------------------------------------------------------------------------------- /src/programs/ru/iconwin.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bbarker/Visopsys/46222ff8736e80712532a54a699ec1408ebcb502/src/programs/ru/iconwin.po -------------------------------------------------------------------------------- /src/programs/ru/ifconfig.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bbarker/Visopsys/46222ff8736e80712532a54a699ec1408ebcb502/src/programs/ru/ifconfig.po -------------------------------------------------------------------------------- /src/programs/ru/imgboot.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bbarker/Visopsys/46222ff8736e80712532a54a699ec1408ebcb502/src/programs/ru/imgboot.po -------------------------------------------------------------------------------- /src/programs/ru/install.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bbarker/Visopsys/46222ff8736e80712532a54a699ec1408ebcb502/src/programs/ru/install.po -------------------------------------------------------------------------------- /src/programs/ru/keymap.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bbarker/Visopsys/46222ff8736e80712532a54a699ec1408ebcb502/src/programs/ru/keymap.po -------------------------------------------------------------------------------- /src/programs/ru/kill.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bbarker/Visopsys/46222ff8736e80712532a54a699ec1408ebcb502/src/programs/ru/kill.po -------------------------------------------------------------------------------- /src/programs/ru/loadfont.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bbarker/Visopsys/46222ff8736e80712532a54a699ec1408ebcb502/src/programs/ru/loadfont.po -------------------------------------------------------------------------------- /src/programs/ru/login.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bbarker/Visopsys/46222ff8736e80712532a54a699ec1408ebcb502/src/programs/ru/login.po -------------------------------------------------------------------------------- /src/programs/ru/lsdev.po: -------------------------------------------------------------------------------- 1 | # 2 | # Visopsys 3 | # Copyright (C) 1998-2018 J. Andrew McLaughlin 4 | # 5 | # Russian translation by Liss 6 | # 7 | msgid "" 8 | msgstr "" 9 | "Project-Id-Version: \n" 10 | "Report-Msgid-Bugs-To: \n" 11 | "POT-Creation-Date: 2017-05-29 02:02+0100\n" 12 | "PO-Revision-Date: 2015-05-08 00:02+0700\n" 13 | "Last-Translator: Liss \n" 14 | "Language-Team: \n" 15 | "Language: ru\n" 16 | "MIME-Version: 1.0\n" 17 | "Content-Type: text/plain; charset=iso-8859-5\n" 18 | "Content-Transfer-Encoding: 8bit\n" 19 | "X-Generator: Poedit 1.7.6\n" 20 | 21 | #: lsdev.c:54 22 | #, fuzzy 23 | msgid "System Device Information" 24 | msgstr "System Device Information" 25 | 26 | #: lsdev.c:283 27 | #, c-format 28 | msgid "Unknown option '%c'\n" 29 | msgstr "" 30 | -------------------------------------------------------------------------------- /src/programs/ru/mem.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bbarker/Visopsys/46222ff8736e80712532a54a699ec1408ebcb502/src/programs/ru/mem.po -------------------------------------------------------------------------------- /src/programs/ru/mines.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bbarker/Visopsys/46222ff8736e80712532a54a699ec1408ebcb502/src/programs/ru/mines.po -------------------------------------------------------------------------------- /src/programs/ru/mkdir.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bbarker/Visopsys/46222ff8736e80712532a54a699ec1408ebcb502/src/programs/ru/mkdir.po -------------------------------------------------------------------------------- /src/programs/ru/more.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bbarker/Visopsys/46222ff8736e80712532a54a699ec1408ebcb502/src/programs/ru/more.po -------------------------------------------------------------------------------- /src/programs/ru/mount.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bbarker/Visopsys/46222ff8736e80712532a54a699ec1408ebcb502/src/programs/ru/mount.po -------------------------------------------------------------------------------- /src/programs/ru/mv.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bbarker/Visopsys/46222ff8736e80712532a54a699ec1408ebcb502/src/programs/ru/mv.po -------------------------------------------------------------------------------- /src/programs/ru/nm.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bbarker/Visopsys/46222ff8736e80712532a54a699ec1408ebcb502/src/programs/ru/nm.po -------------------------------------------------------------------------------- /src/programs/ru/passwd.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bbarker/Visopsys/46222ff8736e80712532a54a699ec1408ebcb502/src/programs/ru/passwd.po -------------------------------------------------------------------------------- /src/programs/ru/ping.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bbarker/Visopsys/46222ff8736e80712532a54a699ec1408ebcb502/src/programs/ru/ping.po -------------------------------------------------------------------------------- /src/programs/ru/progman.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bbarker/Visopsys/46222ff8736e80712532a54a699ec1408ebcb502/src/programs/ru/progman.po -------------------------------------------------------------------------------- /src/programs/ru/ps.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bbarker/Visopsys/46222ff8736e80712532a54a699ec1408ebcb502/src/programs/ru/ps.po -------------------------------------------------------------------------------- /src/programs/ru/ramdisk.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bbarker/Visopsys/46222ff8736e80712532a54a699ec1408ebcb502/src/programs/ru/ramdisk.po -------------------------------------------------------------------------------- /src/programs/ru/reboot.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bbarker/Visopsys/46222ff8736e80712532a54a699ec1408ebcb502/src/programs/ru/reboot.po -------------------------------------------------------------------------------- /src/programs/ru/renice.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bbarker/Visopsys/46222ff8736e80712532a54a699ec1408ebcb502/src/programs/ru/renice.po -------------------------------------------------------------------------------- /src/programs/ru/rm.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bbarker/Visopsys/46222ff8736e80712532a54a699ec1408ebcb502/src/programs/ru/rm.po -------------------------------------------------------------------------------- /src/programs/ru/rmdir.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bbarker/Visopsys/46222ff8736e80712532a54a699ec1408ebcb502/src/programs/ru/rmdir.po -------------------------------------------------------------------------------- /src/programs/ru/screenshot.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bbarker/Visopsys/46222ff8736e80712532a54a699ec1408ebcb502/src/programs/ru/screenshot.po -------------------------------------------------------------------------------- /src/programs/ru/shutdown.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bbarker/Visopsys/46222ff8736e80712532a54a699ec1408ebcb502/src/programs/ru/shutdown.po -------------------------------------------------------------------------------- /src/programs/ru/snake.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bbarker/Visopsys/46222ff8736e80712532a54a699ec1408ebcb502/src/programs/ru/snake.po -------------------------------------------------------------------------------- /src/programs/ru/sysdiag.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bbarker/Visopsys/46222ff8736e80712532a54a699ec1408ebcb502/src/programs/ru/sysdiag.po -------------------------------------------------------------------------------- /src/programs/ru/telnet.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bbarker/Visopsys/46222ff8736e80712532a54a699ec1408ebcb502/src/programs/ru/telnet.po -------------------------------------------------------------------------------- /src/programs/ru/touch.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bbarker/Visopsys/46222ff8736e80712532a54a699ec1408ebcb502/src/programs/ru/touch.po -------------------------------------------------------------------------------- /src/programs/ru/umount.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bbarker/Visopsys/46222ff8736e80712532a54a699ec1408ebcb502/src/programs/ru/umount.po -------------------------------------------------------------------------------- /src/programs/ru/uptime.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bbarker/Visopsys/46222ff8736e80712532a54a699ec1408ebcb502/src/programs/ru/uptime.po -------------------------------------------------------------------------------- /src/programs/ru/users.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bbarker/Visopsys/46222ff8736e80712532a54a699ec1408ebcb502/src/programs/ru/users.po -------------------------------------------------------------------------------- /src/programs/ru/view.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bbarker/Visopsys/46222ff8736e80712532a54a699ec1408ebcb502/src/programs/ru/view.po -------------------------------------------------------------------------------- /src/programs/ru/vsh.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bbarker/Visopsys/46222ff8736e80712532a54a699ec1408ebcb502/src/programs/ru/vsh.po -------------------------------------------------------------------------------- /src/programs/ru/wallpaper.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bbarker/Visopsys/46222ff8736e80712532a54a699ec1408ebcb502/src/programs/ru/wallpaper.po -------------------------------------------------------------------------------- /src/programs/tr/Makefile: -------------------------------------------------------------------------------- 1 | ## 2 | ## Visopsys 3 | ## Copyright (C) 1998-2018 J. Andrew McLaughlin 4 | ## 5 | ## Makefile 6 | ## 7 | 8 | ROOT = ../../.. 9 | BUILDDIR = ${ROOT}/build/system/locale/tr 10 | UTILSDIR = ${ROOT}/utils 11 | 12 | all: 13 | mkdir -p ${BUILDDIR} 14 | ${UTILSDIR}/makemsgs.sh . ${BUILDDIR} 15 | 16 | clean: 17 | rm -f *~ core 18 | ${shell if [ -d ${BUILDDIR} ] ; then for FILE in *.po ; \ 19 | do find ${BUILDDIR} -name `basename $$FILE .po`.mo -exec rm {} \; ; \ 20 | done ; fi } 21 | 22 | -------------------------------------------------------------------------------- /src/programs/tr/bootmenu.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bbarker/Visopsys/46222ff8736e80712532a54a699ec1408ebcb502/src/programs/tr/bootmenu.po -------------------------------------------------------------------------------- /src/programs/tr/cmdwin.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bbarker/Visopsys/46222ff8736e80712532a54a699ec1408ebcb502/src/programs/tr/cmdwin.po -------------------------------------------------------------------------------- /src/programs/tr/computer.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bbarker/Visopsys/46222ff8736e80712532a54a699ec1408ebcb502/src/programs/tr/computer.po -------------------------------------------------------------------------------- /src/programs/tr/confedit.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bbarker/Visopsys/46222ff8736e80712532a54a699ec1408ebcb502/src/programs/tr/confedit.po -------------------------------------------------------------------------------- /src/programs/tr/console.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bbarker/Visopsys/46222ff8736e80712532a54a699ec1408ebcb502/src/programs/tr/console.po -------------------------------------------------------------------------------- /src/programs/tr/disprops.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bbarker/Visopsys/46222ff8736e80712532a54a699ec1408ebcb502/src/programs/tr/disprops.po -------------------------------------------------------------------------------- /src/programs/tr/edit.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bbarker/Visopsys/46222ff8736e80712532a54a699ec1408ebcb502/src/programs/tr/edit.po -------------------------------------------------------------------------------- /src/programs/tr/filebrowse.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bbarker/Visopsys/46222ff8736e80712532a54a699ec1408ebcb502/src/programs/tr/filebrowse.po -------------------------------------------------------------------------------- /src/programs/tr/filesys.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bbarker/Visopsys/46222ff8736e80712532a54a699ec1408ebcb502/src/programs/tr/filesys.po -------------------------------------------------------------------------------- /src/programs/tr/ifconfig.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bbarker/Visopsys/46222ff8736e80712532a54a699ec1408ebcb502/src/programs/tr/ifconfig.po -------------------------------------------------------------------------------- /src/programs/tr/keymap.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bbarker/Visopsys/46222ff8736e80712532a54a699ec1408ebcb502/src/programs/tr/keymap.po -------------------------------------------------------------------------------- /src/programs/tr/lsdev.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bbarker/Visopsys/46222ff8736e80712532a54a699ec1408ebcb502/src/programs/tr/lsdev.po -------------------------------------------------------------------------------- /src/programs/tr/ping.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bbarker/Visopsys/46222ff8736e80712532a54a699ec1408ebcb502/src/programs/tr/ping.po -------------------------------------------------------------------------------- /src/programs/tr/progman.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bbarker/Visopsys/46222ff8736e80712532a54a699ec1408ebcb502/src/programs/tr/progman.po -------------------------------------------------------------------------------- /src/programs/tr/screenshot.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bbarker/Visopsys/46222ff8736e80712532a54a699ec1408ebcb502/src/programs/tr/screenshot.po -------------------------------------------------------------------------------- /src/programs/tr/shutdown.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bbarker/Visopsys/46222ff8736e80712532a54a699ec1408ebcb502/src/programs/tr/shutdown.po -------------------------------------------------------------------------------- /src/programs/tr/sysdiag.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bbarker/Visopsys/46222ff8736e80712532a54a699ec1408ebcb502/src/programs/tr/sysdiag.po -------------------------------------------------------------------------------- /src/programs/tr/wallpaper.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bbarker/Visopsys/46222ff8736e80712532a54a699ec1408ebcb502/src/programs/tr/wallpaper.po -------------------------------------------------------------------------------- /src/programs/uname.pot: -------------------------------------------------------------------------------- 1 | # SOME DESCRIPTIVE TITLE. 2 | # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER 3 | # This file is distributed under the same license as the PACKAGE package. 4 | # FIRST AUTHOR , YEAR. 5 | # 6 | #, fuzzy 7 | msgid "" 8 | msgstr "" 9 | "Project-Id-Version: PACKAGE VERSION\n" 10 | "Report-Msgid-Bugs-To: \n" 11 | "POT-Creation-Date: 2018-08-06 01:04+0100\n" 12 | "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" 13 | "Last-Translator: FULL NAME \n" 14 | "Language-Team: LANGUAGE \n" 15 | "Language: \n" 16 | "MIME-Version: 1.0\n" 17 | "Content-Type: text/plain; charset=CHARSET\n" 18 | "Content-Transfer-Encoding: 8bit\n" 19 | 20 | #: uname.c:108 21 | #, c-format 22 | msgid "Unknown option '%c'\n" 23 | msgstr "" 24 | -------------------------------------------------------------------------------- /src/programs/uptime.pot: -------------------------------------------------------------------------------- 1 | # SOME DESCRIPTIVE TITLE. 2 | # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER 3 | # This file is distributed under the same license as the PACKAGE package. 4 | # FIRST AUTHOR , YEAR. 5 | # 6 | #, fuzzy 7 | msgid "" 8 | msgstr "" 9 | "Project-Id-Version: PACKAGE VERSION\n" 10 | "Report-Msgid-Bugs-To: \n" 11 | "POT-Creation-Date: 2018-08-06 01:04+0100\n" 12 | "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" 13 | "Last-Translator: FULL NAME \n" 14 | "Language-Team: LANGUAGE \n" 15 | "Language: \n" 16 | "MIME-Version: 1.0\n" 17 | "Content-Type: text/plain; charset=CHARSET\n" 18 | "Content-Transfer-Encoding: 8bit\n" 19 | 20 | #: uptime.c:58 21 | #, c-format 22 | msgid "Up %d days, " 23 | msgstr "" 24 | -------------------------------------------------------------------------------- /utils/Makefile: -------------------------------------------------------------------------------- 1 | ## 2 | ## Visopsys 3 | ## Copyright (C) 1998-2018 J. Andrew McLaughlin 4 | ## 5 | ## Makefile 6 | ## 7 | 8 | ## Makefile for the Visopsys utilities. 9 | 10 | ROOT = .. 11 | SRCDIR = ${ROOT}/src/programs 12 | 13 | include ${ROOT}/Makefile.include 14 | 15 | ifdef DEBUG 16 | override DEBUG = -DDEBUG 17 | endif 18 | 19 | CFLAGS = ${OPT} -pipe ${WARN} ${DEBUG} 20 | 21 | all: copy-boot 22 | 23 | debug: 24 | ${MAKE} all DEBUG=1 25 | 26 | copy-boot: ${SRCDIR}/copy-boot.c Makefile 27 | ${CC} ${CFLAGS} -DPORTABLE ${SRCDIR}/copy-boot.c -o $@ 28 | 29 | clean: 30 | rm -f *~ core *.zip *.iso *.img copy-boot *.log 31 | 32 | -------------------------------------------------------------------------------- /utils/api2html.sh: -------------------------------------------------------------------------------- 1 | #!/bin/sh 2 | ## 3 | ## Visopsys 4 | ## Copyright (C) 1998-2018 J. Andrew McLaughlin 5 | ## 6 | ## api2html.sh 7 | ## 8 | 9 | # This is run against the C library's kernel API code, as well as the VSH 10 | # and window library code, to generate a simple formatted HTML listing of 11 | # the function declarations with their descriptions 12 | 13 | if [ $# -ne 1 ] ; then 14 | echo "Usage: $0 " 15 | exit 1 16 | fi 17 | 18 | sed -n -e 's/[ ]*_X_ /

/p ; /

' -e 's/[ ]*\/\/[ ]*Desc[ ]*: /
\n

/p ; /

' $1 19 | 20 | -------------------------------------------------------------------------------- /utils/api2txt.sh: -------------------------------------------------------------------------------- 1 | #!/bin/sh 2 | ## 3 | ## Visopsys 4 | ## Copyright (C) 1998-2018 J. Andrew McLaughlin 5 | ## 6 | ## api2txt.sh 7 | ## 8 | 9 | # This is run against the C library's kernel API code, as well as the VSH 10 | # and window library code, to generate a simple formatted TEXT listing of 11 | # the function declarations with their descriptions 12 | 13 | if [ $# -ne 1 ] ; then 14 | echo "Usage: $0 " 15 | exit 1 16 | fi 17 | 18 | sed -n -e 's/[ ]*_X_[ ]*//p' -e '/[ ]*\/\/[ ]*Desc[ ]*: /a\ 19 | \ 20 | ' -e 's/[ ]*\/\/[ ]*Desc[ ]*: /\n /p' $1 21 | 22 | -------------------------------------------------------------------------------- /utils/blankfloppy.gz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bbarker/Visopsys/46222ff8736e80712532a54a699ec1408ebcb502/utils/blankfloppy.gz -------------------------------------------------------------------------------- /utils/blankusb.gz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bbarker/Visopsys/46222ff8736e80712532a54a699ec1408ebcb502/utils/blankusb.gz -------------------------------------------------------------------------------- /utils/change-year.sh: -------------------------------------------------------------------------------- 1 | #!/bin/sh 2 | ## 3 | ## Visopsys 4 | ## Copyright (C) 1998-2018 J. Andrew McLaughlin 5 | ## 6 | ## change-year.sh 7 | ## 8 | 9 | find . -type f -exec sed -i -e 's/Copyright (C) 1998-2018/Copyright (C) 1998-2018/g' {} \; 10 | 11 | -------------------------------------------------------------------------------- /utils/makepot.sh: -------------------------------------------------------------------------------- 1 | #!/bin/sh 2 | ## 3 | ## Visopsys 4 | ## Copyright (C) 1998-2016 J. Andrew McLaughlin 5 | ## 6 | ## makepot.sh 7 | ## 8 | 9 | # Given the name of a .c source file, invoke xgettext to extract strings 10 | # into a corresponding .pot message template file 11 | 12 | if [ $# -ne 1 ] ; then 13 | echo Usage: $0 srcfile.c 14 | exit 1 15 | fi 16 | 17 | SRCFILE=$1 18 | TEMPLATE=`basename $SRCFILE .c`.pot 19 | echo Create message template $TEMPLATE 20 | xgettext -Lc -k_ -d- $SRCFILE > $TEMPLATE 21 | 22 | exit 0 23 | -------------------------------------------------------------------------------- /utils/mergepot.sh: -------------------------------------------------------------------------------- 1 | #!/bin/sh 2 | ## 3 | ## Visopsys 4 | ## Copyright (C) 1998-2018 J. Andrew McLaughlin 5 | ## 6 | ## mergepot.sh 7 | ## 8 | 9 | # Given the name of a .pot template file and a language subdirectory, invoke 10 | # msgmerge to extract strings 11 | # into a corresponding .pot message template file 12 | 13 | if [ $# -ne 2 ] ; then 14 | echo Usage: $0 template.pot language_dir 15 | exit 1 16 | fi 17 | 18 | TEMPLATE=$1 19 | LANGDIR=$2 20 | MSGFILE=$LANGDIR/`basename $TEMPLATE .pot`.po 21 | echo -n Merge $TEMPLATE into message file $MSGFILE 22 | msgmerge -U $MSGFILE $TEMPLATE 23 | 24 | exit 0 25 | 26 | -------------------------------------------------------------------------------- /utils/release.sh: -------------------------------------------------------------------------------- 1 | #!/bin/sh 2 | ## 3 | ## Visopsys 4 | ## Copyright (C) 1998-2018 J. Andrew McLaughlin 5 | ## 6 | ## release.sh 7 | ## 8 | 9 | # Just echos the release number of Visopsys 10 | echo "0.83" 11 | exit 0 12 | 13 | -------------------------------------------------------------------------------- /utils/trim-whitespace.sh: -------------------------------------------------------------------------------- 1 | #!/bin/sh 2 | ## 3 | ## Visopsys 4 | ## Copyright (C) 1998-2018 J. Andrew McLaughlin 5 | ## 6 | ## trim-whitespace.sh 7 | ## 8 | 9 | find . -type f -exec sed -i -e 's/[ \t]\+$//g' {} \; 10 | 11 | --------------------------------------------------------------------------------