You've already forked linux-apfs
mirror of
https://github.com/linux-apfs/linux-apfs.git
synced 2026-05-01 15:00:59 -07:00
c4761b69f4
If PM_H1940 is enabled, kernel _must_ be located upper then 0x30008000, because this area (0x30000000-0x30100000) can be used by bootloader. If kernel is located at 0x30008000, bootloader will corrupt kernel's code during resume. Signed-off-by: Vasily Khoruzhick <anarsoul@gmail.com> Signed-off-by: Ben Dooks <ben-linux@fluff.org>
8 lines
151 B
Makefile
8 lines
151 B
Makefile
ifeq ($(CONFIG_PM_H1940),y)
|
|
zreladdr-y := 0x30108000
|
|
params_phys-y := 0x30100100
|
|
else
|
|
zreladdr-y := 0x30008000
|
|
params_phys-y := 0x30000100
|
|
endif
|