-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
0 parents
commit 51e5fb0
Showing
3 changed files
with
610 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,19 @@ | ||
#!/bin/sh | ||
|
||
$ make defconfig | ||
|
||
$ echo CONFIG_USER_NS=y >> .config | ||
$ echo CONFIG_USERFAULTFD=y >> .config | ||
|
||
$ echo CONFIG_GDB_SCRIPTS=y >> .config | ||
$ echo CONFIG_FRAME_POINTER=y >> .config | ||
$ echo CONFIG_KGDB=y >> .config | ||
$ echo CONFIG_KGDB_SERIAL_CONSOLE=y >> .config | ||
$ echo CONFIG_KDB_KEYBOARD=y >> .config | ||
|
||
$ < /boot/config-5.3.0-46-generic grep _FB_ >> .config | ||
|
||
$ < /boot/config-5.3.0-46-generic grep _VIRTIO >> .config | ||
|
||
$ sed -i 's/=m$/=y/' .config | ||
$ make olddefconfig |
Oops, something went wrong.