Skip to content
Snippets Groups Projects
Select Git revision
  • 011e9482959afb40319b3e965da9c3e356c6d679
  • master default protected
  • early-display
  • variant-emmc-nvme-boot
  • 2023-01-25
  • v3
  • variant-emmc-nvme-boot
  • 2020-06-01
8 results

pci_auto_common.c

Blame
  • Forked from Reform / reform-boundary-uboot
    Source project has a limited visibility.
    update_uboot.its 417 B
    /*
     * Automatic software update for U-Boot
     * Make sure the flashing addresses ('load' prop) is correct for your board!
     */
    
    /dts-v1/;
    
    / {
    	description = "Automatic U-Boot update";
    	#address-cells = <1>;
    
    	images {
    		update@1 {
    			description = "U-Boot binary";
    			data = /incbin/("./u-boot.bin");
    			compression = "none";
    			type = "firmware";
    			load = <FFFC0000>;
    			hash@1 {
    				algo = "sha1";
    			};
    		};
    	};
    };