This is an automated email from the git hooks/post-receive script. x2go pushed a change to branch feature/bullseye-fvwm in repository live-build-x2go. from 241531f without recommends for smaller image new f1f59e1 add test travis new 47a2713 add UEFI HTTP boot The 2 revisions listed above as "new" are entirely new to this repository and will be described in separate emails. The revisions listed as "adds" were already present in the repository and have only been added to this reference. Summary of changes: .travis.yml | 31 +++++++++++++++++++++++++++++++ README.txt | 6 ++++++ 2 files changed, 37 insertions(+) create mode 100644 .travis.yml -- Alioth's /home/x2go-admin/maintenancescripts/git/hooks/post-receive-email on /srv/git/code.x2go.org/live-build-x2go.git
This is an automated email from the git hooks/post-receive script. x2go pushed a commit to branch feature/bullseye-fvwm in repository live-build-x2go. commit f1f59e17327dafdf5fde3afb6d3d8bbd8430be95 Author: Juri Grabowski <git-commit@jugra.de> Date: Fri Oct 2 18:19:57 2020 +0200 add test travis --- .travis.yml | 31 +++++++++++++++++++++++++++++++ 1 file changed, 31 insertions(+) diff --git a/.travis.yml b/.travis.yml new file mode 100644 index 0000000..ecffaf9 --- /dev/null +++ b/.travis.yml @@ -0,0 +1,31 @@ +dist: focal +language: minimal + +before_install: + - sudo add-apt-repository -y ppa:live-build/ppa + - sudo apt-get -q update + - sudo apt-get -y install live-build debian-archive-keyring debian-keyring + +addons: + artifacts: true + paths: + - /var/www/html/initrd.img + - /var/www/html/vmlinuz + - /var/www/html/filesystem.squashfs + +branches: + only: + - feature/bullseye-fvwm + +script: + - DIR=/srv/live-build-x2go-`date +"%Y%m%d%H%M%S"` + - sudo mkdir $DIR /var/www/html + - cd $DIR + - sudo lb config -d bullseye --chroot-filesystem squashfs --apt-indices false --cache-packages false --config git://code.x2go.org/live-build-x2go.git::feature/bullseye-fvwm --archive-areas "main contrib non-free" --apt-recommends false --firmware-binary false --updates true --backports false --win32-loader false --loadlin false --security false --initsystem systemd -b netboot --bootappend-live aufs vconsole.keymap=de-latin1-nodeadkeys kernel.sysrq=1 sysrq_always_enabled log_buf_len=1 [...] + - sudo lb build + - cd `dirname $DIR` + - ln -nfs `basename $DIR` lb-x2go + - cd /var/www/html + - ln -nfs /srv/lb-x2go/tftpboot/live/initrd.img . + - ln -nfs /srv/lb-x2go/tftpboot/live/vmlinuz . + - ln -nfs /srv/lb-x2go/binary/live/filesystem.squashfs . -- Alioth's /home/x2go-admin/maintenancescripts/git/hooks/post-receive-email on /srv/git/code.x2go.org/live-build-x2go.git
This is an automated email from the git hooks/post-receive script. x2go pushed a commit to branch feature/bullseye-fvwm in repository live-build-x2go. commit 47a27136b6551396a92eda10506f0470c274e8f8 Author: Juri Grabowski <git-commit@jugra.de> Date: Thu Oct 29 11:04:44 2020 +0100 add UEFI HTTP boot --- README.txt | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/README.txt b/README.txt index 499d033..0862248 100644 --- a/README.txt +++ b/README.txt @@ -12,6 +12,7 @@ EOF mkdir -p /srv/tftp/{bios,uefi} ln -nfs /usr/lib/ipxe/undionly.kpxe /srv/tftp/bios/ ln -nfs /boot/ipxe.efi /srv/tftp/uefi/ +ln -snf /srv/tftp/* /var/www/html/ FQDN=demo.x2go.org IP_OF_FQDN=`dig $FQDN +short` @@ -22,6 +23,11 @@ IP_OF_FQDN=`dig $FQDN +short` else if substring ( option vendor-class-identifier , 19,1 ) = "7" { filename "uefi/ipxe.efi"; } + else if substring ( option vendor-class-identifier , 0,10 ) = "HTTPClient" { + option vendor-class-identifier "HTTPClient"; + log (info, "Vendor class Arch: UEFI HTTP BOOT"); + filename "http://$FQDN/uefi/ipxe.efi"; + } else { log (info, concat ( "Unhandled vendor class Arch: ", substring ( option vendor-class-identifier , 19,1 ))); } -- Alioth's /home/x2go-admin/maintenancescripts/git/hooks/post-receive-email on /srv/git/code.x2go.org/live-build-x2go.git