Hello community,
here is the log from the commit of package installation-images-openSUSE for
openSUSE:Factory checked in at 2016-05-03 09:34:13
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Comparing /work/SRC/openSUSE:Factory/installation-images-openSUSE (Old)
and /work/SRC/openSUSE:Factory/.installation-images-openSUSE.new (New)
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Package is "installation-images-openSUSE"
Changes:
--------
---
/work/SRC/openSUSE:Factory/installation-images-openSUSE/installation-images-openSUSE.changes
2016-04-05 10:42:49.000000000 +0200
+++
/work/SRC/openSUSE:Factory/.installation-images-openSUSE.new/installation-images-openSUSE.changes
2016-05-03 09:34:14.000000000 +0200
@@ -1,0 +2,12 @@
+Thu Apr 28 10:01:03 UTC 2016 - [email protected]
+
+- allow user to switch efi grub2 console to text mode
+- 14.239
+
+-------------------------------------------------------------------
+Wed Apr 20 11:20:43 UTC 2016 - [email protected]
+
+- More detailed listing of ifaces provided in ssh installation.bsc#956473
+- 14.238
+
+-------------------------------------------------------------------
Old:
----
installation-images-14.237.tar.xz
New:
----
installation-images-14.239.tar.xz
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Other differences:
------------------
++++++ installation-images-openSUSE.spec ++++++
--- /var/tmp/diff_new_pack.1fTLGZ/_old 2016-05-03 09:34:15.000000000 +0200
+++ /var/tmp/diff_new_pack.1fTLGZ/_new 2016-05-03 09:34:15.000000000 +0200
@@ -372,7 +372,7 @@
Summary: Installation Image Files for %theme
License: GPL-2.0+
Group: Metapackages
-Version: 14.237
+Version: 14.239
Release: 0
Provides: installation-images = %version-%release
Source: installation-images-%{version}.tar.xz
++++++ installation-images-14.237.tar.xz -> installation-images-14.239.tar.xz
++++++
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn'
'--exclude=.svnignore' old/installation-images-14.237/VERSION
new/installation-images-14.239/VERSION
--- old/installation-images-14.237/VERSION 2016-03-31 10:16:48.000000000
+0200
+++ new/installation-images-14.239/VERSION 2016-04-28 11:57:01.000000000
+0200
@@ -1 +1 @@
-14.237
+14.239
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn'
'--exclude=.svnignore' old/installation-images-14.237/changelog
new/installation-images-14.239/changelog
--- old/installation-images-14.237/changelog 2016-03-31 10:16:48.000000000
+0200
+++ new/installation-images-14.239/changelog 2016-04-28 11:57:01.000000000
+0200
@@ -1,3 +1,9 @@
+2016-04-28: 14.239
+ - allow user to switch efi grub2 console to text mode
+
+2016-03-07: 14.238
+ - More detailed listing of ifaces provided in ssh installation.bnc
#956473
+
2016-03-31: 14.237
- re-add which (bsc #973301)
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn'
'--exclude=.svnignore'
old/installation-images-14.237/data/boot/grub-aarch64.cfg
new/installation-images-14.239/data/boot/grub-aarch64.cfg
--- old/installation-images-14.237/data/boot/grub-aarch64.cfg 2016-03-31
10:16:48.000000000 +0200
+++ new/installation-images-14.239/data/boot/grub-aarch64.cfg 2016-04-28
11:57:01.000000000 +0200
@@ -19,6 +19,8 @@
insmod gfxmenu
insmod png
+ echo "Please press 't' to show the boot menu on this console"
+
terminal_output gfxterm
theme=$prefix/themes/THEME/theme.txt
@@ -83,3 +85,10 @@
}
}
+
+# On EFI systems we can only have graphics *or* serial, so allow the user
+# to switch between the two
+menuentry 'Text mode' --hidden --hotkey 't' {
+ set textmode=true
+ terminal_output console
+}
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn'
'--exclude=.svnignore' old/installation-images-14.237/data/boot/grub.cfg
new/installation-images-14.239/data/boot/grub.cfg
--- old/installation-images-14.237/data/boot/grub.cfg 2016-03-31
10:16:48.000000000 +0200
+++ new/installation-images-14.239/data/boot/grub.cfg 2016-04-28
11:57:01.000000000 +0200
@@ -20,6 +20,8 @@
insmod gfxmenu
insmod png
+ echo "Please press 't' to show the boot menu on this console"
+
terminal_output gfxterm
theme=$prefix/themes/THEME/theme.txt
@@ -91,3 +93,9 @@
}
+# On EFI systems we can only have graphics *or* serial, so allow the user
+# to switch between the two
+menuentry 'Text mode' --hidden --hotkey 't' {
+ set textmode=true
+ terminal_output console
+}
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn'
'--exclude=.svnignore' old/installation-images-14.237/data/root/etc/inst_setup
new/installation-images-14.239/data/root/etc/inst_setup
--- old/installation-images-14.237/data/root/etc/inst_setup 2016-03-31
10:16:48.000000000 +0200
+++ new/installation-images-14.239/data/root/etc/inst_setup 2016-04-28
11:57:01.000000000 +0200
@@ -219,6 +219,14 @@
cp /etc/issue /etc/motd
echo -e "Run yast.ssh to start the installation.\n" >>/etc/motd
+ # print more detailed list of ifaces using a function from yast2-installation
+ if [ -e /usr/lib/YaST2/startup/common/network.sh ] ; then
+ echo "Active interfaces:"
+
+ . /usr/lib/YaST2/startup/common/network.sh
+ list_ifaces | head -n 20
+ fi
+
while true ; do
sleep 3
# this file is created from YaST2.firstboot after installation