[odroid-u2-ubootcfg] fixing garbage text in configs

This commit is contained in:
Gottox 2014-01-22 00:52:08 +01:00
parent 56c9f73775
commit b92c7a9749
7 changed files with 2 additions and 10 deletions

View file

@ -1,4 +1,3 @@
X-1024x768-edid
setenv initrd_high "0xffffffff"
setenv fdt_high "0xffffffff"
setenv bootcmd "fatload mmc 0:1 0x40008000 zImage; fatload mmc 0:1 0x42000000 uInitrd; bootm 0x40008000 0x42000000"

View file

@ -1,4 +1,3 @@
boot.scr 1080p
setenv initrd_high "0xffffffff"
setenv fdt_high "0xffffffff"
setenv drm_video_mode "HDMI-A-1:1920x1080@60"

View file

@ -1,5 +1,3 @@
aPCR
X-1080p-noedid
setenv initrd_high "0xffffffff"
setenv fdt_high "0xffffffff"
setenv bootcmd "fatload mmc 0:1 0x40008000 zImage; fatload mmc 0:1 0x42000000 uInitrd; bootm 0x40008000 0x42000000"

View file

@ -1,5 +1,3 @@
R}-o
boot.scr for X with HDMI auto-pr
setenv initrd_high "0xffffffff"
setenv fdt_high "0xffffffff"
setenv drm_video_mode "HDMI-A-1:1280x720M@60"

View file

@ -1,4 +1,3 @@
X-720p-noedid
setenv initrd_high "0xffffffff"
setenv fdt_high "0xffffffff"
setenv bootcmd "fatload mmc 0:1 0x40008000 zImage; fatload mmc 0:1 0x42000000 uInitrd; bootm 0x40008000 0x42000000"

View file

@ -1,5 +1,3 @@
7R}->
boot.scr for X with HDMI auto-pr
setenv initrd_high "0xffffffff"
setenv fdt_high "0xffffffff"
setenv bootcmd "fatload mmc 0:1 0x40008000 zImage; fatload mmc 0:1 0x42000000 uInitrd; bootm 0x40008000 0x42000000"

View file

@ -12,7 +12,8 @@ _default_scr="boot-auto_edid.scr"
do_build() {
for source in ${FILESDIR}/*.txt; do
mkimage -A arm -T script -C none -d $source $(basename ${source/.txt/.scr})
name=$(basename ${source%.txt})
mkimage -A arm -T script -C none -n "${name}" -d $source ${name}.scr
done
cp ${_default_scr} boot.scr
}