Hi!
first of i would like to introduce myself since i’m new here.
i’m gene from belgium and iam following a bach in IT atm, i’m working as a student for a IT company and they gave me mender as an idea to help maintain raspbian pi’s for a client.
And so iam to make a proof of concept concerning mender, for if we will use mender, to help maintain the pi’s.
i’ve followed the documentation to get a demo mender-server running with some virtual devices & real pi’s.
The problem arises when i want to use mender-convert on a production image and get this device to work with the mender-server.
After using mender-convert and dd the .sdimg image on the sd card, the pi simply does not start, no boot message or anything, just the 4 raspberry logo’s.
by doing a fdisk, i can clearly see the 4 partitions
Device Boot Start End Sectors Size Id Type
/dev/sdb1 * 24576 155647 131072 64M c W95 FAT32 (LBA)
/dev/sdb2 155648 8134655 7979008 3.8G 83 Linux
/dev/sdb3 8134656 16113663 7979008 3.8G 83 Linux
/dev/sdb4 16113664 16375807 262144 128M 83 Linux
these where the options i used for mender-convert
DEVICE_TYPE="raspberrypi3" ARTIFACT_NAME="2018-11-13-raspbian-stretch" RAW_DISK_IMAGE="input/2016-11-25-raspbian-jessie-lite.img" ARTIFACT_NAME="2019-07-03-raspbian-jessie-lite" MENDER_DISK_IMAGE="3-7-19_rapbian-jessie-lite.sdimg" IP="192.168.20.1"
./docker-mender-convert from-raw-disk-image
--raw-disk-image $RAW_DISK_IMAGE
--mender-disk-image $MENDER_DISK_IMAGE
--device-type $DEVICE_TYPE
--artifact-name $ARTIFACT_NAME
--bootloader-toolchain arm-buildroot-linux-gnueabihf
--demo-host-ip $IP
the mender-convert log can be found here
mender-convert-output-log
(the raspbian-jessie image i use, works ofcourse without the conversion)
thanks in advance!