mirror of
https://github.com/genodelabs/genode.git
synced 2024-12-22 06:57:51 +00:00
af93f8d01b
- adjust syscall bindings to support -fPIC - read serial i/o ports from BIOS data area - use autoconf.h provided by sel4 -- to avoid ambiguity between sel4 kernel and user libraries -- remove manual set defines - remove debug messages - increase user virtual area to 3GB Issue #1720 Issue #2044
12 lines
367 B
Diff
12 lines
367 B
Diff
--- src/kernel/sel4/libsel4/tools/syscall_stub_gen.py
|
|
+++ src/kernel/sel4/libsel4/tools/syscall_stub_gen.py
|
|
@@ -807,7 +807,7 @@ def main():
|
|
print "Invalid word size in configuration file."
|
|
sys.exit(2)
|
|
else:
|
|
- wordsize = args.wsize
|
|
+ wordsize = int(args.wsize)
|
|
|
|
if wordsize is -1:
|
|
print "Invalid word size."
|