Your message dated Wed, 07 Jan 2015 15:20:49 +0100
with message-id <[email protected]>
and subject line Re: live image doesnt boot, kernel panic
has caused the Debian Bug report #774774,
regarding live image doesnt boot, kernel panic
to be marked as done.
This means that you claim that the problem has been dealt with.
If this is not the case it is now your responsibility to reopen the
Bug report if necessary, and/or fix the problem forthwith.
(NB: If you are a system administrator and have no idea what this
message is talking about, this may indicate a serious mail system
misconfiguration somewhere. Please contact [email protected]
immediately.)
--
774774: http://bugs.debian.org/cgi-bin/bugreport.cgi?bug=774774
Debian Bug Tracking System
Contact [email protected] with problems
--- Begin Message ---
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 <[email protected]>
# 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
signature.asc
Description: This is a digitally signed message part.
--- End Message ---
--- Begin Message ---
your image does not contain live-boot because your script is broken
(overwriting live.list.chroot instead of appending).
please consider using the mailinglist for help with usage of live-*,
rather than the bts.
--
Address: Daniel Baumann, Donnerbuehlweg 3, CH-3012 Bern
Email: [email protected]
Internet: http://people.progress-technologies.net/~daniel.baumann/
--- End Message ---