-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
package/uBootNanoPiR2s: patch to expand kernel image space
To workaround size increased kernel causing `FDT image overlaps OS image` error
- Loading branch information
Showing
2 changed files
with
18 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
15 changes: 15 additions & 0 deletions
15
packages/uboot-nanopi-r2s/expand-kernel-image-addr-space.patch
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,15 @@ | ||
diff --git a/include/configs/rk3328_common.h b/include/configs/rk3328_common.h | ||
index e920ec7e5d..40c11ae10b 100644 | ||
--- a/include/configs/rk3328_common.h | ||
+++ b/include/configs/rk3328_common.h | ||
@@ -18,8 +18,8 @@ | ||
"pxefile_addr_r=0x00600000\0" \ | ||
"fdt_addr_r=0x01f00000\0" \ | ||
"kernel_addr_r=0x02080000\0" \ | ||
- "ramdisk_addr_r=0x06000000\0" \ | ||
- "kernel_comp_addr_r=0x08000000\0" \ | ||
+ "ramdisk_addr_r=0x08000000\0" \ | ||
+ "kernel_comp_addr_r=0x10000000\0" \ | ||
"kernel_comp_size=0x2000000\0" | ||
|
||
#define CFG_EXTRA_ENV_SETTINGS \ |