When generating the export-sdk using a DEFAULT_IMAGE different from the configured rootfs, the self extracting .sh file is not created. The mingw tarball and zip are created. Also if the rootfs image (in this case sato) is present, the full sato image gets added to the sdk which causes the size of the sdk to be enormous. This is for the managed builds and we need the following: - rpm feeds with all the sato packages - glibc-std image because they are smaller than sato and do not have Xorg installed by default - sdk using glibc-small rootfs because std and sato packages are not needed in sdk and make things larger than necessary
None
configure --enable-rootfs=glibc-std-sato \ --enable-sdkmachine=x86_64,x86_64-mingw32 \ --enable-board=qemux86-64 --enable-kernel=standard make DEFAULT_IMAGE=wrlinux-image-glibc-small export-sdk or to see sdk with sato and std image: make -C project fs make -C project DEFAULT_IMAGE=wrlinux-image-glibc-std make -C project DEFAULT_IMAGE=wrlinux-image-glibc-small export-sdk