aboutsummaryrefslogtreecommitdiffstats
path: root/pkg/build/linux_generated.go
Commit message (Collapse)AuthorAgeFilesLines
* all: fix code formattingDmitry Vyukov2018-10-161-1/+0
| | | | Reformat, remove debug leftovers, fix comment style.
* tools/create-gce-image.sh: create ext4 image without journallingDmitry Vyukov2018-10-151-1/+2
| | | | | | We don't need consistent image after reboot since we always reimage. We know of some use cases that don't use journalling, but don't know of any that use journalling.
* tools/create-gce-image.sh: mount securityfs and configfsDmitry Vyukov2018-09-261-0/+2
|
* tools/create-gce-image.sh: disable ftrace_dump_on_oopsDmitry Vyukov2018-09-101-1/+1
| | | | | | | We don't have anything useful there. But sometimes fuzzer somehow poppulates it with some nonsense, and then it all dumped in crashes. Disable it.
* tools/create-gce-image.sh: auto-detect block device typeDmitry Vyukov2018-09-071-4/+9
| | | | | | | Currently we choose block device to use (nbd/loop) based on SYZ_VM_TYPE. Strictly saying these things are orthogonal. losetup is broken on Ubuntu. qemu-nbd is broken on Debian. Try to auto-detect what will work based on uname.
* dashboard/config: re-enable selinuxDmitry Vyukov2018-09-051-1/+0
| | | | | | | Upstream "selinux: fix mounting of cgroup2 under older policies" commit fixes mounting of cgroup2 under wheezy selinux policy. So don't disable selinux on start. Create separate cmdline arguments that enable selinux and apparmor.
* tools/create-gce-image.sh: add default ext4 optionsDmitry Vyukov2018-09-031-1/+1
| | | | Set some realistic modern ext4 options when creating the image.
* pkg/build: move from pkg/kernelDmitry Vyukov2018-06-221-0/+113
Rename pkg/kernel to pkg/build and prepare for multi-OS support.