Changes between Version 14 and Version 15 of ventana/ubuntu
- Timestamp:
- 08/03/2018 03:14:50 PM (5 years ago)
Legend:
- Unmodified
- Added
- Removed
- Modified
-
ventana/ubuntu
v14 v15 364 364 cat << EOF > /tmp/bootscript 365 365 366 # calculate load addresses based off of loadaddr as the base 367 # and allow 128KB for FDT and 64MB for kernel 368 setexpr fdt_addr \$loadaddr 369 setexpr linux_addr \$fdt_addr + 0x20000 # allow 128KB for FDT 370 setexpr rd_addr \$linux_addr + 0x4000000 # allow 64MB for kernel 371 366 372 # if nand|usb dtype use initrd - sata|mmc don't require initrd 367 373 if itest.s "x\${dtype}" == "xnand" ; then … … 372 378 ubifsload \$fdt_addr boot/\$fdt_file2 373 379 test -n "\$fixfdt" && run fixfdt 374 ubifsload \$l oadaddr boot/uImage375 ubifsload 16000000boot/uramdisk380 ubifsload \$linux_addr boot/uImage 381 ubifsload \$rd_addr boot/uramdisk 376 382 ubifsumount 377 bootm \$l oadaddr 16000000\$fdt_addr383 bootm \$linux_addr \$rd_addr \$fdt_addr 378 384 elif itest.s "x\${dtype}" == "xusb" ; then 379 385 echo "Booting from usb..." … … 383 389 ext4load usb 0:1 \$fdt_addr boot/\$fdt_file2 384 390 test -n "\$fixfdt" && run fixfdt 385 ext4load usb 0:1 \$l oadaddr boot/uImage386 ext4load usb 0:1 16000000boot/uramdisk387 bootm \$l oadaddr 16000000\$fdt_addr391 ext4load usb 0:1 \$linux_addr boot/uImage 392 ext4load usb 0:1 \$rd_addr boot/uramdisk 393 bootm \$linux_addr \$rd_addr \$fdt_addr 388 394 fi 389 395 EOF 390 396 mkimage -A arm -O linux -T script -n "bootscript" \ 391 397 -d /tmp/bootscript /boot/6x_bootscript-ventana 398 rm /tmp/bootscript 392 399 }}} 393 400 a. Gateworks pre-built downstream vendor kernel: 3.14 kernel supporting full video input (which is not currently in upstream Linux) - ** use this if you are going to be using video input **