Fusee: Separate kernel patching into its own file.

This commit is contained in:
Michael Scire 2018-06-02 14:48:40 -06:00
parent 7a27322044
commit 1ba8a92030
3 changed files with 18 additions and 6 deletions

View file

@ -0,0 +1,9 @@
#include <string.h>
#include "utils.h"
#include "kernel_patches.c"
void package2_patch_kernel(void *kernel, size_t size) {
(void)kernel;
(void)size;
/* TODO: What kind of patching do we want to try to do here? */
}