package: live-build severity: important Hi, in a jessie chroot I'm trying to build live images using the following script: $ cat bin/live-build.sh #!/bin/bash # Copyright 2014-2015 Holger Levsen <holger@layer-acht.org> # released under the GPLv=2 DEBUG=false . /srv/jenkins/bin/common-functions.sh common_init "$@" cleanup_all() { sudo rm -rf --one-file-system $TMPDIR } TMPDIR=$(mktemp --tmpdir=/srv/live-build -d) cd $TMPDIR trap cleanup_all INT TERM EXIT # $1 is used for the hostname and username # $2 is used for the suite # $3 is choosing the flavor lb config --distribution $2 --bootappend-live "boot=live config hostname=$1 username=$1" case "$3" in standalone) echo education-standalone > config/package-lists/live.list.chroot ;; gnome) echo gnome > config/package-lists/live.list.chroot ;; xfce) echo xfce4 > config/package-lists/live.list.chroot ;; *) ;; esac sudo lb build mkdir -p /srv/live-build/results cp -v live-image-amd64.hybrid.iso /srv/live-build/results/$1_$2_$3_live_amd64.iso cleanup_all trap - INT TERM EXIT This script has successfully run, see (the non-stable url (the zzzZz will change...) https://jenkins.debian.net/view/zzzZz/job/live_build_debian_sid_xfce/1/consoleFull That invocation of the script has been called using "debian sid xfce" as arguments. When I boot this image, I get a kernel panic as shown in https://jenkins.debian.net/view/lvc/job/lvc_debian-live_debian_sid_xfce_apt/1/artifact/apt-2015-01-07T12:38:21+00:00.png I could reproduce this kernel panic like this on a local test system too. This .iso is temporily available at https://jenkins.debian.net/userContent/debian_sid_xfce_live_amd64.iso (its 322mb in size) The same happens with jessie builds... Any help / hints welcome! I'll be glad to give more info on what I did - but I hope I have covered everything. Thanks for Debian live! cheers, Holger
Attachment:
signature.asc
Description: This is a digitally signed message part.