# DEY image features. # # Copyright (C) 2012 Digi International. # # Add build info to rootfs images (/etc/build) # inherit image-buildinfo # # Set root password using 'extrausers' class if 'debug-tweaks' is NOT enabled # # To get the hash of the password (with escaped '$' char: '\$') run # the following command in your development computer: # # echo -n 'root' | mkpasswd -5 -s | sed -e 's,\$,\\$,g' # inherit ${@bb.utils.contains("IMAGE_FEATURES", "debug-tweaks", "", "extrausers",d)} MD5_ROOT_PASSWD ?= "\$1\$SML0de4S\$lOWs3t82QAH0oEf8NyNKA0" EXTRA_USERS_PARAMS += "\ usermod -p '${MD5_ROOT_PASSWD}' root; \ " # # Create QT5 capable toolchain/SDK if 'dey-qt' image feature is enabled # inherit ${@bb.utils.contains("IMAGE_FEATURES", "dey-qt", "populate_sdk_qt5", "",d)} # # Generate ZIP installer if configured in the project's local.conf # DEY_IMAGE_INSTALLER ?= "0" inherit ${@oe.utils.conditional("DEY_IMAGE_INSTALLER", "1", "dey-image-installer", "", d)} # # Create a dey-version file when populating the toolchain/SDK and modify the # default SDK installation path so it includes the proper 'IMAGE_BASENAME' # value. # # 'SDK_POSTPROCESS_COMMAND' variable is originally defined in populate_sdk_base # class: poky/meta/classes/populate_sdk_base.bbclass # It is redefined here to be able to tweak the resulting SDK before and after # packaging, using the proper 'IMAGE_BASENAME' value. # SDK_PREPACKAGING_COMMAND ?= "toolchain_create_sdk_dey_version" SDK_POSTPACKAGING_COMMAND ?= "toolchain_modify_default_path" SDK_POSTPROCESS_COMMAND = " create_sdk_files; check_sdk_sysroots; ${SDK_PREPACKAGING_COMMAND}; tar_sdk; ${SDK_PACKAGING_COMMAND} ${SDK_POSTPACKAGING_COMMAND}; " # This function creates a DEY version information file fakeroot toolchain_create_sdk_dey_version() { local deyversionfile="${SDK_OUTPUT}/${SDKPATH}/dey-version-${REAL_MULTIMACH_TARGET_SYS}" rm -f $deyversionfile touch $deyversionfile echo 'Machine: ${MACHINE}' >> $deyversionfile echo 'Version: ${DISTRO_VERSION}-${DATETIME}' >> $deyversionfile echo 'Image: ${IMAGE_BASENAME}' >> $deyversionfile } toolchain_create_sdk_dey_version[vardepsexclude] = "DATETIME" # This function appends IMAGE_BASENAME to the default installation path fakeroot toolchain_modify_default_path() { sed -i -e 's#^DEFAULT_INSTALL_DIR="${SDKPATH}"#DEFAULT_INSTALL_DIR="${SDKPATH}/${IMAGE_BASENAME}"#g' \ ${SDKDEPLOYDIR}/${TOOLCHAIN_OUTPUTNAME}.sh }