aboutsummaryrefslogtreecommitdiffstats
path: root/sys/linux/dev_ptmx.txt
Commit message (Collapse)AuthorAgeFilesLines
* sys/linux: fix TIOCSTI signatureDmitry Vyukov2021-03-111-1/+1
|
* sys/linux: update constsDmitry Vyukov2021-03-021-11/+0
| | | | | Update consts on upstream 7a7fd0de4a9804299793e564a555a49c1fc924cb. Remove termiox ioctls, they were removed in commit e0efb3168d34.
* sys/linux: mark some ioctls as disabledDmitry Vyukov2020-05-041-1/+10
| | | | | | | Mark ioctls we disable in init.go as disabled. Update #477 Update #502
* pkg/compiler: ensure consistency of syscall argument typesDmitry Vyukov2020-03-171-2/+2
| | | | | | | | | | | | | | | | | | Ensure that we don't have conflicting sizes for the same argument of the same syscall, e.g.: foo$1(a int16) foo$2(a int32) This is useful for several reasons: - we will be able avoid morphing syscalls into other syscalls - we will be able to figure out more precise sizes for args (lots of them are implicitly intptr, which is the largest type on most important arches) - found few bugs in linux descriptions Update #477 Update #502
* sys/linux: extend DRM ioctl descriptionsDmitry Vyukov2020-01-251-1/+21
| | | | | | + disable binderfs (see comments) + add few more missing tty ioctls + improve few minor things in hci descriptions
* sys/linux: fix 240 warnings in descriptionsDmitry Vyukov2019-12-201-24/+19
| | | | | | Sweeping fix of everything up to socket_netlink_route.txt. Update #590
* sys/linux: refine few framebuffer/kbd ioctlsDmitry Vyukov2019-12-071-23/+38
|
* sys/linux: more tuning of tty devicesDmitry Vyukov2019-12-031-4/+13
| | | | | | | | | Enable /dev/tty{1-6}. These seem to be special. Few first connected to framebuffers. But the rest seem to be different from e.g. tty20 anyway. Also /dev/tty is different from the rest. /dev/ttyS3 and /dev/ttyprintk are different. Properly pair BSD pty terminals.
* sys/linux: add /dev/fb descriptionsDmitry Vyukov2019-12-021-2/+27
| | | | Framebuffer descriptions + open more tty dev nodes.
* sys/linux: more tty descriptionsDmitry Vyukov2019-04-121-1/+79
|
* sys/linux: rename dev descriptions filesAndrey Konovalov2019-02-011-0/+241
Prefix file names of descriptions of /dev/* files with dev_. And give some of them more appropriate names.