Hi
I have managed to boot kernel from linux-aarch64-rc package on odroid-n2, by following [utl]https://wiki.gentoo.org/wiki/Odroid_N2[/url]. Like this:
$this->bbcode_second_pass_code('', '
pacman -Syu linux-aarch64-rc linux-aarch64-rc-headers
cd /boot
mkimage -A arm64 -O linux -T kernel -C none -a 0x1080000 -e 0x1080000 -n 5.3.0-rc7-1-ARCH -d Image uImage
')
and changing /boot/boot.ini to:
$this->bbcode_second_pass_code('', '
ODROIDN2-UBOOT-CONFIG
setenv bootargs "root=/dev/mmcblk1p2 rootwait rw console=ttyAML0,115200 clk_ignore_unused"
setenv dtb_loadaddr "0x1000000"
fatload mmc ${devno}:1 ${dtb_loadaddr} dtbs/amlogic/meson-g12b-odroid-n2.dtb
fatload mmc ${devno}:1 0x01080000 uImage
bootm 0x1080000 - ${dtb_loadaddr}/
')
Here is log: https://pastebin.com/0dLGNeLi
There are two problems:
- only 1G of memory is visible. i have 4G board.
- on board ethernet is not working.
Any idea how to fix this?
Thank you