ODROIDXU-UBOOT-CONFIG # Verify if u-boot is up-to-date to receive new Kernel setenv hk_current_version "2" setenv verify 'if test $hk_version != $hk_current_version;then;fatload mmc 0:1 40008000 u-boot.bin;emmc open 0;movi w z u 0 40008000;emmc close 0;setenv hk_version $hk_current_version;save;reset;fi' #run verify # U-Boot Parameters setenv initrd_high "0xffffffff" setenv fdt_high "0xffffffff" # Boot Specific Stuff # OpenSUSE setenv bootrootfs "console=ttySAC2,115200n8 root=/dev/mmcblk0p2 rootwait ro" # Frame buffer size. setenv fb_x_res "1280" setenv fb_y_res "720" # Controls the Board Output Method. # Valid values are: lcd dp hdmi dvi setenv vout "hdmi" # FB Control setenv left "56" setenv right "24" setenv upper "3" setenv lower "3" setenv hsync "14" setenv vsync "3" setenv fb_control "left=${left} right=${right} upper=${upper} lower=${lower} vsync=${vsync} hsync=${hsync}" # Forces a fixed resolution on the HDMI controller. Please make sure that your screen supports and # It matchs the resolution above! setted the X and Y # valid values are: 480p60hz 720p60hz 720p50hz 1080p60hz 1080i60hz 1080i50hz 1080p50hz # 1080p30hz 1080p25hz 1080p24hz setenv hdmi_phy_res "720p60hz" # System Status LED: Blink the RGB LED or disable it # valid values: 1 off setenv led_blink "1" # U-Boot bootcmd command # OpenSUSE setenv bootcmd "fatload mmc 0:1 0x40008000 zImage; bootz 0x40008000" # Kernel boot arguments setenv bootargs "${bootrootfs} ${fb_control} fb_x_res=${fb_x_res} fb_y_res=${fb_y_res} vout=${vout} hdmi_phy_res=${hdmi_phy_res} led_blink=${led_blink}" # Boot the board boot