summaryrefslogtreecommitdiff
path: root/boot.txt
diff options
context:
space:
mode:
Diffstat (limited to 'boot.txt')
-rw-r--r--boot.txt23
1 files changed, 0 insertions, 23 deletions
diff --git a/boot.txt b/boot.txt
deleted file mode 100644
index a10884f..0000000
--- a/boot.txt
+++ /dev/null
@@ -1,23 +0,0 @@
-# After modifying, run ./mkscr
-
-# MAC address (use spaces instead of colons)
-setenv macaddr da 19 c8 7a 6d f4
-
-part uuid ${devtype} ${devnum}:${bootpart} uuid
-setenv bootargs console=ttyS2,1500000 root=PARTUUID=${uuid} rw rootwait
-#setenv bootargs console=ttyS2,1500000 root=PARTUUID=${uuid} rw rootwait bootsplash.bootfile=bootsplash-themes/manjaro/bootsplash
-setenv fdtfile rockchip/rk3399-pinebook-pro.dtb
-
-if load ${devtype} ${devnum}:${bootpart} ${kernel_addr_r} /boot/Image; then
- if load ${devtype} ${devnum}:${bootpart} ${fdt_addr_r} /boot/dtbs/${fdtfile}; then
- fdt addr ${fdt_addr_r}
- fdt resize
- fdt set /ethernet@fe300000 local-mac-address "[${macaddr}]"
- if load ${devtype} ${devnum}:${bootpart} ${ramdisk_addr_r} /boot/initramfs-linux.img; then
- # This upstream Uboot doesn't support compresses cpio initrd, use kernel option to
- # load initramfs
- setenv bootargs ${bootargs} initrd=${ramdisk_addr_r},20M ramdisk_size=10M
- fi;
- booti ${kernel_addr_r} - ${fdt_addr_r};
- fi;
-fi