Created
August 27, 2018 10:01
-
-
Save MartijnBraam/c8462d1773f93ff6bddab35c8af60c93 to your computer and use it in GitHub Desktop.
This file contains hidden or 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
setenv mmcnum 0 | |
setenv mmcpart 1 | |
setenv mmctype ext2 | |
setenv bootargs init=/init.sh rw earlyprintk=serial,ttyS0,115200 console=tty0 console=ttyS0,115200 | |
echo Loading kernel | |
ext2load mmc 0 0x48000000 uImage-postmarketos-stable | |
echo Loading device tree | |
ext2load mmc 0 0x49000000 postmarketos-stable.dtb | |
echo Loading initramfs | |
ext2load mmc 0 0x50000000 uInitrd-postmarketos-stable | |
echo Booting kernel | |
bootm 0x48000000 0x50000000 0x49000000 |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment