1 #include "lib9.h" 2 #include "isa.h" 3 #include "interp.h" 4 #include <kernel.h> 5 6 /* 7 * these stubs are used when devsign isn't configured 8 */ 9 10 int 11 verifysigner(uchar *sign, int len, uchar *data, ulong ndata) 12 { 13 USED(sign); 14 USED(len); 15 USED(data); 16 USED(ndata); 17 18 return 1; 19 } 20 21 int 22 mustbesigned(char *path, uchar *code, ulong length, Dir *dir) 23 { 24 USED(path); 25 USED(code); 26 USED(length); 27 USED(dir); 28 return 0; 29 } 30