mk_mmc.sh: cleanup soc.sh

Signed-off-by: Robert Nelson <robertcnelson@gmail.com>
pull/37/head
Robert Nelson 11 years ago
parent 52f3b95a58
commit cd01c08b46

@ -962,6 +962,31 @@ package_modules () {
cd "${DIR}"/ cd "${DIR}"/
} }
generate_soc () {
echo "#!/bin/sh" > ${wfile}
echo "format=1.0" >> ${wfile}
echo "board=${conf_board}" >> ${wfile}
echo "" >> ${wfile}
echo "bootloader_location=${bootloader_location}" >> ${wfile}
echo "dd_spl_uboot_seek=${dd_spl_uboot_seek}" >> ${wfile}
echo "dd_spl_uboot_bs=${dd_spl_uboot_bs}" >> ${wfile}
echo "dd_uboot_seek=${dd_uboot_seek}" >> ${wfile}
echo "dd_uboot_bs=${dd_uboot_bs}" >> ${wfile}
echo "" >> ${wfile}
echo "conf_bootcmd=${conf_bootcmd}" >> ${wfile}
echo "boot_fstype=${conf_boot_fstype}" >> ${wfile}
echo "" >> ${wfile}
echo "serial_tty=${SERIAL}" >> ${wfile}
echo "dtb=${dtb}" >> ${wfile}
echo "" >> ${wfile}
echo "usbnet_mem=${usbnet_mem}" >> ${wfile}
echo "" >> ${wfile}
if [ "x${drm_read_edid_broken}" = "xenable" ] ; then
echo "video=${drm_device_identifier}:1024x768@60e" >> ${wfile}
echo "" >> ${wfile}
fi
}
initrd_device_settings () { initrd_device_settings () {
echo "NetInstall: Adding Device Tweaks" echo "NetInstall: Adding Device Tweaks"
#FIXME: shouldn't be needed to run once anymore... #FIXME: shouldn't be needed to run once anymore...
@ -975,32 +1000,8 @@ initrd_device_settings () {
mkdir -p ${TEMPDIR}/initrd-tree/etc/hwpack/ mkdir -p ${TEMPDIR}/initrd-tree/etc/hwpack/
#This should be compatible with hwpacks variable names.. wfile="${TEMPDIR}/initrd-tree/etc/hwpack/SOC.sh"
#https://code.launchpad.net/~linaro-maintainers/linaro-images/ generate_soc
cat > ${TEMPDIR}/initrd-tree/etc/hwpack/SOC.sh <<-__EOF__
#!/bin/sh
format=1.0
board=${conf_board}
bootloader_location=${bootloader_location}
dd_spl_uboot_seek=${dd_spl_uboot_seek}
dd_spl_uboot_bs=${dd_spl_uboot_bs}
dd_uboot_seek=${dd_uboot_seek}
dd_uboot_bs=${dd_uboot_bs}
conf_bootcmd=${conf_bootcmd}
boot_fstype=${conf_boot_fstype}
serial_tty=${SERIAL}
loadaddr=${conf_loadaddr}
initrdaddr=${conf_initrdaddr}
zreladdr=${conf_zreladdr}
fdtaddr=${conf_fdtaddr}
fdtfile=${conf_fdtfile}
usbnet_mem=${usbnet_mem}
__EOF__
} }
recompress_initrd () { recompress_initrd () {
@ -1304,35 +1305,11 @@ populate_boot () {
cp -v ${TEMPDIR}/kernel/${linux_version}-modules.tar.gz ${TEMPDIR}/disk/ cp -v ${TEMPDIR}/kernel/${linux_version}-modules.tar.gz ${TEMPDIR}/disk/
#This should be compatible with hwpacks variable names.. wfile="${TEMPDIR}/disk/SOC.sh"
#https://code.launchpad.net/~linaro-maintainers/linaro-images/ generate_soc
cat > ${TEMPDIR}/disk/SOC.sh <<-__EOF__
#!/bin/sh
format=1.0
board=${conf_board}
bootloader_location=${bootloader_location}
dd_spl_uboot_seek=${dd_spl_uboot_seek}
dd_spl_uboot_bs=${dd_spl_uboot_bs}
dd_uboot_seek=${dd_uboot_seek}
dd_uboot_bs=${dd_uboot_bs}
conf_bootcmd=${conf_bootcmd}
boot_fstype=${conf_boot_fstype}
serial_tty=${SERIAL}
loadaddr=${conf_loadaddr}
initrdaddr=${conf_initrdaddr}
zreladdr=${conf_zreladdr}
fdtaddr=${conf_fdtaddr}
fdtfile=${conf_fdtfile}
usbnet_mem=${usbnet_mem}
__EOF__
echo "Debug:" echo "Debug:"
cat ${TEMPDIR}/disk/SOC.sh cat ${wfile}
cd ${TEMPDIR}/disk cd ${TEMPDIR}/disk
sync sync

Loading…
Cancel
Save