Commit db666e8c authored by Oleg Dzhimiev's avatar Oleg Dzhimiev

mmc + nand images (are same for kernel)

parent 57f0eaa3
...@@ -64,13 +64,15 @@ python do_link() { ...@@ -64,13 +64,15 @@ python do_link() {
addtask do_link before do_kernel_configme after do_patch addtask do_link before do_kernel_configme after do_patch
sstate_create_package_append(){ sstate_create_package_append(){
if [ ! -d ${DEPLOY_DIR_IMAGE}/${PRODUCTION_DIR} ]; then for RLOC in ${PRODUCTION_ROOT_LOCATION}; do
mkdir ${DEPLOY_DIR_IMAGE}/${PRODUCTION_DIR} if [ ! -d ${DEPLOY_DIR_IMAGE}/${RLOC} ]; then
fi mkdir ${DEPLOY_DIR_IMAGE}/${RLOC}
if [ -f ${DEPLOY_DIR_IMAGE}/${PRODUCTION_DIR}/${PRODUCTION_KERNEL} ]; then fi
rm ${DEPLOY_DIR_IMAGE}/${PRODUCTION_DIR}/${PRODUCTION_KERNEL} if [ -f ${DEPLOY_DIR_IMAGE}/${RLOC}/${PRODUCTION_KERNEL} ]; then
fi rm ${DEPLOY_DIR_IMAGE}/${RLOC}/${PRODUCTION_KERNEL}
if [ -f ${DEPLOY_DIR_IMAGE}/${KERNEL_IMAGE_BASE_NAME}.bin ]; then fi
cp ${DEPLOY_DIR_IMAGE}/${KERNEL_IMAGE_BASE_NAME}.bin ${DEPLOY_DIR_IMAGE}/${PRODUCTION_DIR}/${PRODUCTION_KERNEL} if [ -f ${DEPLOY_DIR_IMAGE}/${KERNEL_IMAGE_BASE_NAME}.bin ]; then
fi cp ${DEPLOY_DIR_IMAGE}/${KERNEL_IMAGE_BASE_NAME}.bin ${DEPLOY_DIR_IMAGE}/${RLOC}/${PRODUCTION_KERNEL}
fi
done
} }
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment