aboutsummaryrefslogtreecommitdiffstats
path: root/sys/linux/dev_fb.txt
Commit message (Collapse)AuthorAgeFilesLines
* pkg/compiler: ensure consistency of syscall argument typesDmitry Vyukov2020-03-171-1/+1
| | | | | | | | | | | | | | | | | | 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
* pkg/compiler: don't mark flags with 0 as bitmaskDmitry Vyukov2020-01-181-3/+3
| | | | | | | They can't be a bitmask. This fixes important cases of "0, 1" and "0, 1, 2" flags. Fix some descriptions that added 0 to bitmasks explicitly (we should do it automatically instead).
* sys/linux: refine few framebuffer/kbd ioctlsDmitry Vyukov2019-12-071-14/+21
|
* sys/linux: add /dev/fb1Dmitry Vyukov2019-12-031-0/+1
| | | | qemu -vga cirrus results in /dev/fb0 and /dev/fb1.
* sys/linux: add /dev/fb descriptionsDmitry Vyukov2019-12-021-0/+77
| | | | Framebuffer descriptions + open more tty dev nodes.
* sys/linux: more device refinementsDmitry Vyukov2019-12-011-0/+9
Add some mode /dev/nodes* Add anoter midi device.