forked from RobertCNelson/omap-image-builder
-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Signed-off-by: Robert Nelson <[email protected]>
- Loading branch information
1 parent
263e17d
commit 78928ed
Showing
3 changed files
with
35 additions
and
48 deletions.
There are no files selected for viewing
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,35 @@ | ||
#!/bin/bash | ||
# --dtb udoo (Freescale based i.MX6 UDOO (Quad/Dual Core):supported) | ||
|
||
#Bootloader: | ||
conf_board="udoo" | ||
conf_bl_http="https://rcn-ee.com/repos/bootloader/latest" | ||
conf_bl_listfile="bootloader-ng" | ||
|
||
#Bootloader Partition: | ||
conf_boot_fstype="ext2" | ||
|
||
bootloader_location="dd_spl_uboot_boot" | ||
|
||
spl_uboot_name="SPL" | ||
dd_spl_uboot_count="" | ||
dd_spl_uboot_seek="1" | ||
dd_spl_uboot_conf="" | ||
dd_spl_uboot_bs="1k" | ||
spl_name="SPL" | ||
|
||
uboot_name="u-boot.img" | ||
dd_uboot_count="" | ||
dd_uboot_seek="69" | ||
dd_uboot_conf="" | ||
dd_uboot_bs="1k" | ||
boot_name="u-boot.img" | ||
|
||
#Kernel: | ||
conf_kernel= | ||
dtb= | ||
usbnet_mem= | ||
|
||
|
||
SERIAL="ttymxc1" | ||
drm_device_identifier="HDMI-A-1" |