28 lines
920 B
BlitzBasic
28 lines
920 B
BlitzBasic
DESCRIPTION = "A small image just capable of allowing a device to boot."
|
|
|
|
IMAGE_INSTALL = "packagegroup-core-boot ${ROOTFS_PKGMANAGE_BOOTSTRAP} ${CORE_IMAGE_EXTRA_INSTALL}"
|
|
|
|
IMAGE_LINGUAS = " "
|
|
|
|
LICENSE = "CLOSED"
|
|
|
|
inherit core-image
|
|
|
|
IMAGE_ROOTFS_EXTRA_SPACE = "524288"
|
|
|
|
# add own name to hosts
|
|
augment_hosts_setting_file () {
|
|
echo '127.0.0.1\tqemux86-64.localdomain\t\tqemux86-64' >> ${IMAGE_ROOTFS}/etc/hosts
|
|
}
|
|
|
|
# installs the easy_install_pth_file that we need
|
|
create_python_easy_install_pth_file () {
|
|
:
|
|
}
|
|
|
|
# remove not needed ipkg informations
|
|
# create a custom hosts file
|
|
ROOTFS_POSTPROCESS_COMMAND += "remove_packaging_data_files ; augment_hosts_setting_file ; create_python_easy_install_pth_file ; "
|
|
|
|
IMAGE_INSTALL += "boost boost-dev packagegroup-core-ssh-openssh python-modules python-setuptools python-rospkg python-rosinstall git cmake python-empy python-pyyaml python-nose log4cxx log4cxx-dev libbz2-dev"
|