modload: Take the module-to-load as a command-line argument

Instead of hard-coding /mod/TestModule.o :^)
This commit is contained in:
Andreas Kling 2019-11-29 21:19:23 +01:00
parent 3ad0e6e198
commit 86c61218a7
Notes: sideshowbarker 2024-07-19 11:01:50 +09:00

View file

@ -3,9 +3,12 @@
int main(int argc, char** argv)
{
(void)argc;
(void)argv;
const char* path = "/mod/TestModule.o";
if (argc != 2) {
printf("usage: %s <module.o>\n", argv[0]);
return 0;
}
const char* path = argv[1];
int rc = module_load(path, strlen(path));
if (rc < 0) {
perror("module_load");