Skip to content

Commit

Permalink
alarm/uboot-odroid-c1 to 2011.03-9
Browse files Browse the repository at this point in the history
  • Loading branch information
kmihelich committed Mar 3, 2015
1 parent 168f4dd commit 91acceb
Show file tree
Hide file tree
Showing 2 changed files with 16 additions and 3 deletions.
4 changes: 2 additions & 2 deletions alarm/uboot-odroid-c1/PKGBUILD
Expand Up @@ -5,7 +5,7 @@ buildarch=4

pkgname=uboot-odroid-c1
pkgver=2011.03
pkgrel=8
pkgrel=9
pkgdesc="U-Boot for ODROID-C1"
arch=('armv7h')
url="https://github.com/hardkernel/u-boot"
Expand All @@ -19,7 +19,7 @@ source=("https://github.com/hardkernel/u-boot/archive/${_commit}.tar.gz"
'0001-remove-cross-compiling.patch'
'0002-sd_fusing-tweaks.patch')
md5sums=('0fc20cde97358ab04b22b946d563e970'
'7a064319e3a5460a0a17b6b91613410c'
'f191e1ab6910983585ac877f17eed4e7'
'fb9e00cfdc765b60c61b42060bde6fc2'
'beeec86a4903a3ce6d1e7956ad9250c4')

Expand Down
15 changes: 14 additions & 1 deletion alarm/uboot-odroid-c1/boot.ini
Expand Up @@ -34,6 +34,16 @@ setenv m_bpp "32"
# setenv m_bpp "24"
# setenv m_bpp "16"

# HDMI Hotplug Force (HPD)
# 1 = Enables HOTPlug Detection
# 0 = Disables HOTPlug Detection and force the connected status
setenv hpd "0"

# CEC Enable/Disable (Requires Hardware Modification)
# 1 = Enables HDMI CEC
# 0 = Disables HDMI CEC
setenv cec "0"

# UHS Card Configuration
# Uncomment the line below to __DISABLE__ UHS-1 MicroSD support
# This might break boot for some brand models of cards.
Expand All @@ -49,7 +59,10 @@ setenv vpu "1"
# 1 = enabled
setenv hdmioutput "1"

setenv bootargs "console=ttyS0,115200n8 root=/dev/mmcblk0p1 rootwait rw no_console_suspend vdaccfg=0xa000 logo=osd1,loaded,0x7900000,720p,full dmfc=3 cvbsmode=576cvbs hdmimode=${m} m_bpp=${m_bpp} vout=${vout_mode} ${disableuhs}"
if test "${hpd}" = "0"; then setenv hdmi_hpd "disablehpd=true"; fi
if test "${cec}" = "1"; then setenv hdmi_cec "hdmitx=cecf"; fi

setenv bootargs "console=ttyS0,115200n8 console=tty0 root=/dev/mmcblk0p1 rootwait rw no_console_suspend vdaccfg=0xa000 logo=osd1,loaded,0x7900000,720p,full dmfc=3 cvbsmode=576cvbs hdmimode=${m} m_bpp=${m_bpp} vout=${vout_mode} ${disableuhs} ${hdmi_hpd} ${hdmi_cec}"
ext4load mmc 0:1 0x21000000 /boot/uImage
ext4load mmc 0:1 0x21800000 /boot/dtbs/meson8b_odroidc.dtb
fdt addr 21800000
Expand Down

0 comments on commit 91acceb

Please sign in to comment.