diff options
author | cinap_lenrek <cinap_lenrek@felloff.net> | 2019-07-25 08:19:12 +0200 |
---|---|---|
committer | cinap_lenrek <cinap_lenrek@felloff.net> | 2019-07-25 08:19:12 +0200 |
commit | 4983adfa2cd403eda22d862917c2ff5ed35b48b3 (patch) | |
tree | b95d5270b5c77f47932ddb9c9ccdd7419fd5f186 /sys/src/9/bcm/fns.h | |
parent | a6a1806c17c6dbb6c657ac676fc97fd6c5207da7 (diff) |
bcm, bcm64: add support for device tree parameter passing
the new raspberry pi 4 firmware for arm64 seems to have
broken atag support. so we now parse the device tree
structure to get the bootargs and memory configuration.
Diffstat (limited to 'sys/src/9/bcm/fns.h')
-rw-r--r-- | sys/src/9/bcm/fns.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/sys/src/9/bcm/fns.h b/sys/src/9/bcm/fns.h index 564201605..6e35a2401 100644 --- a/sys/src/9/bcm/fns.h +++ b/sys/src/9/bcm/fns.h @@ -5,7 +5,7 @@ Dirtab* addarchfile(char*, int, long(*)(Chan*, void*, long, vlong), extern void archreboot(void); extern void archreset(void); extern void armtimerset(int); -extern void bootargsinit(void); +extern void bootargsinit(uintptr); extern void cachedwbinv(void); extern void cachedwbse(void*, int); extern void cachedwbinvse(void*, int); |