Merge branch 'current' of github.com:vyos/vyos-build into current

This commit is contained in:
Daniil Baturin 2016-02-06 16:57:04 -05:00
commit 6b6bd49bb5
4 changed files with 47 additions and 0 deletions

View File

@ -0,0 +1,4 @@
#!/bin/sh
echo I: Backwards compat packages.txt
echo "ii vyatta-version " > binary/live/packages.txt

View File

@ -0,0 +1,6 @@
#!/bin/sh
echo I: Creating kernel symlinks.
cd /boot
ln -s initrd.img-* initrd.img
ln -s vmlinuz-* vmlinuz

View File

@ -0,0 +1,20 @@
menuentry "VyOS (KVM console)" {
linux /boot//vmlinuz boot=live quiet vyos-union=/boot/ console=ttyS0,9600 console=tty0
initrd /boot//initrd.img
}
menuentry "VyOS (Serial console)" {
linux /boot//vmlinuz boot=live quiet vyos-union=/boot/ console=tty0 console=ttyS0,9600
initrd /boot//initrd.img
}
menuentry "Lost password change (KVM console)" {
linux /boot//vmlinuz boot=live quiet vyos-union=/boot/ console=ttyS0,9600 console=tty0 init=/opt/vyatta/sbin/standalone_root_pw_reset
initrd /boot//initrd.img
}
menuentry "Lost password change (Serial console)" {
linux /boot//vmlinuz boot=live quiet vyos-union=/boot/ console=tty0 console=ttyS0,9600 init=/opt/vyatta/sbin/standalone_root_pw_reset
initrd /boot//initrd.img
}

View File

@ -0,0 +1,17 @@
#!/bin/bash
source /opt/vyatta/sbin/install-functions
NEWVER=`mount | grep /mnt/inst_root`
NEWVER=${NEWVER#*upperdir=/live/image/boot/}
NEWVER=${NEWVER%/live-rw*}
DISK_LABEL=`mount | grep /live/image | awk '{print $1}' | grep dev`
if [ -d "/live/image" ]; then
e2label "${DISK_LABEL}" persistence
if [ ! -f /live/image/persistence.conf ]; then
echo "/ union" > /live/image/persistence.conf
fi
rm -f /live/image/boot/"${NEWVER}"/live-rw/etc/fstab
mv /live/image/boot/"${NEWVER}"/live-rw /live/image/boot/"${NEWVER}"/rw
fi