Hello community,

here is the log from the commit of package installation-images-openSUSE for 
openSUSE:Factory checked in at 2015-12-09 19:41:46
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
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
        2015-11-17 14:22:30.000000000 +0100
+++ 
/work/SRC/openSUSE:Factory/.installation-images-openSUSE.new/installation-images-openSUSE.changes
   2015-12-09 19:41:48.000000000 +0100
@@ -1,0 +2,15 @@
+Wed Nov 25 09:39:06 UTC 2015 - [email protected]
+
+- added all i2c drivers (bsc#954101)
+- 14.210
+
+-------------------------------------------------------------------
+Fri Nov 20 13:36:15 UTC 2015 - [email protected]
+
+- adjust text menu message
+- add 'boot installed system' boot option
+- rework boot menus to hide advanced stuff in a submenu
+- add 'boot from hard disk' entry to efi boot menu
+- 14.209
+
+-------------------------------------------------------------------

Old:
----
  installation-images-14.208.tar.xz

New:
----
  installation-images-14.210.tar.xz

++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++

Other differences:
------------------
++++++ installation-images-openSUSE.spec ++++++
--- /var/tmp/diff_new_pack.HxjvQH/_old  2015-12-09 19:41:50.000000000 +0100
+++ /var/tmp/diff_new_pack.HxjvQH/_new  2015-12-09 19:41:50.000000000 +0100
@@ -377,7 +377,7 @@
 Summary:        Installation Image Files for %theme
 License:        GPL-2.0+
 Group:          Metapackages
-Version:        14.208
+Version:        14.210
 Release:        0
 Provides:       installation-images = %version-%release
 Source:         installation-images-%{version}.tar.xz

++++++ installation-images-14.208.tar.xz -> installation-images-14.210.tar.xz 
++++++
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/installation-images-14.208/VERSION 
new/installation-images-14.210/VERSION
--- old/installation-images-14.208/VERSION      2015-11-13 13:51:18.000000000 
+0100
+++ new/installation-images-14.210/VERSION      2015-11-25 11:37:47.000000000 
+0100
@@ -1 +1 @@
-14.208
+14.210
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/installation-images-14.208/changelog 
new/installation-images-14.210/changelog
--- old/installation-images-14.208/changelog    2015-11-13 13:51:18.000000000 
+0100
+++ new/installation-images-14.210/changelog    2015-11-25 11:37:47.000000000 
+0100
@@ -1,3 +1,12 @@
+2015-11-25:    14.210
+       - added all i2c drivers (bsc #954101)
+
+2015-11-20:    14.209
+       - adjust text menu message
+       - add 'boot installed system' boot option
+       - rework boot menus to hide advanced stuff in a submenu
+       - add 'boot from hard disk' entry to efi boot menu
+
 2015-11-13:    14.208
        - add inst_sap-start.rb (fate #318072)
 
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/installation-images-14.208/data/boot/grub.cfg 
new/installation-images-14.210/data/boot/grub.cfg
--- old/installation-images-14.208/data/boot/grub.cfg   2015-11-13 
13:51:18.000000000 +0100
+++ new/installation-images-14.210/data/boot/grub.cfg   2015-11-25 
11:37:47.000000000 +0100
@@ -35,6 +35,18 @@
   timeout=60
 fi
 
+default=1
+
+menuentry "Boot from Hard Disk" --class opensuse --class gnu-linux --class gnu 
--class os {
+  if search --no-floppy --file /efi/boot/fallback.efi --set ; then
+    if [ -f /efi/opensuse/shim.efi ] ; then
+      chainloader /efi/opensuse/shim.efi
+    elif [ -f /efi/sles/shim.efi ] ; then
+      chainloader /efi/sles/shim.efi
+    fi
+  fi
+}
+
 menuentry 'Installation' --class opensuse --class gnu-linux --class gnu 
--class os {
   set gfxpayload=keep
   echo 'Loading kernel ...'
@@ -51,19 +63,31 @@
   initrdefi /boot/x86_64/loader/initrd
 }
 
-menuentry 'Rescue System' --class opensuse --class gnu-linux --class gnu {
-  set gfxpayload=keep
-  echo 'Loading kernel ...'
-  linuxefi /boot/x86_64/loader/linux splash=silent rescue=1
-  echo 'Loading initial ramdisk ...'
-  initrdefi /boot/x86_64/loader/initrd
-}
+submenu 'More ...' {
+
+  menuentry 'Rescue System' --class opensuse --class gnu-linux --class gnu {
+    set gfxpayload=keep
+    echo 'Loading kernel ...'
+    linuxefi /boot/x86_64/loader/linux splash=silent rescue=1
+    echo 'Loading initial ramdisk ...'
+    initrdefi /boot/x86_64/loader/initrd
+  }
+
+  menuentry 'Boot Linux System' --class opensuse --class gnu-linux --class gnu 
{
+    set gfxpayload=keep
+    echo 'Loading kernel ...'
+    linuxefi /boot/x86_64/loader/linux splash=silent systemboot=1
+    echo 'Loading initial ramdisk ...'
+    initrdefi /boot/x86_64/loader/initrd
+  }
+
+  menuentry 'Check Installation Media' --class opensuse --class gnu-linux 
--class gnu {
+    set gfxpayload=keep
+    echo 'Loading kernel ...'
+    linuxefi /boot/x86_64/loader/linux splash=silent mediacheck=1
+    echo 'Loading initial ramdisk ...'
+    initrdefi /boot/x86_64/loader/initrd
+  }
 
-menuentry 'Check Installation Media' --class opensuse --class gnu-linux 
--class gnu {
-  set gfxpayload=keep
-  echo 'Loading kernel ...'
-  linuxefi /boot/x86_64/loader/linux splash=silent mediacheck=1
-  echo 'Loading initial ramdisk ...'
-  initrdefi /boot/x86_64/loader/initrd
 }
 
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/installation-images-14.208/data/boot/message 
new/installation-images-14.210/data/boot/message
--- old/installation-images-14.208/data/boot/message    2015-11-13 
13:51:18.000000000 +0100
+++ new/installation-images-14.210/data/boot/message    2015-11-25 
11:37:47.000000000 +0100
@@ -9,11 +9,13 @@
 
 Available boot options:
 
-  harddisk  - Boot from Hard Disk (this is default)
-  linux     - Installation
-  rescue    - Rescue System
-  mediachk  - Check Installation Media
-  memtest   - Memory Test
+  harddisk   - Boot from Hard Disk (this is default)
+  linux      - Installation
+  upgrade    - Upgrade
+  rescue     - Rescue System
+  systemboot - Boot Linux System
+  mediachk   - Check Installation Media
+  memtest    - Memory Test
 
 Have a lot of fun...
 
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/installation-images-14.208/data/boot/syslinux.cfg 
new/installation-images-14.210/data/boot/syslinux.cfg
--- old/installation-images-14.208/data/boot/syslinux.cfg       2015-11-13 
13:51:18.000000000 +0100
+++ new/installation-images-14.210/data/boot/syslinux.cfg       2015-11-25 
11:37:47.000000000 +0100
@@ -14,18 +14,32 @@
   kernel linux
   append initrd=initrd splash=silent upgrade=1 showopts
 
+# expert menu
+label expert
+  menu label More ...
+  append ->x
+
 # rescue
 label rescue
+  menu label ->x rescue
   kernel linux
   append initrd=initrd splash=silent rescue=1 showopts
 
+# systemboot
+label systemboot
+  menu label ->x Boot Linux System
+  kernel linux
+  append initrd=initrd splash=silent systemboot=1 showopts
+
 # mediacheck
 label mediachk
+  menu label ->x mediacheck
   kernel linux
   append initrd=initrd splash=silent mediacheck=1 showopts
 
 # memory test
 label memtest
+  menu label ->x memtest
   kernel memtest
 
 ui             gfxboot bootlogo message
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/installation-images-14.208/etc/module.config 
new/installation-images-14.210/etc/module.config
--- old/installation-images-14.208/etc/module.config    2015-11-13 
13:51:18.000000000 +0100
+++ new/installation-images-14.210/etc/module.config    2015-11-25 
11:37:47.000000000 +0100
@@ -64,8 +64,6 @@
 hp-agp,-,-
 hpfs
 hwmon,-,-
-i2c-algo-bit,-,-
-i2c-core,-,-
 i460-agp,-,-
 ide-scsi,-,-,,,1
 input-polldev,,-
@@ -170,6 +168,7 @@
 kernel/drivers/crypto/.*
 kernel/drivers/.*/crypto/.*
 kernel/drivers/firmware/.*
+kernel/drivers/i2c/.*
 kernel/drivers/leds/.*
 kernel/drivers/md/.*
 kernel/drivers/platform/.*
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/installation-images-14.208/etc/module.list 
new/installation-images-14.210/etc/module.list
--- old/installation-images-14.208/etc/module.list      2015-11-13 
13:51:18.000000000 +0100
+++ new/installation-images-14.210/etc/module.list      2015-11-25 
11:37:47.000000000 +0100
@@ -127,8 +127,6 @@
 kernel/net/packet/
 kernel/net/rfkill/rfkill.ko
 kernel/lib/
-kernel/drivers/i2c/i2c-core.ko
-kernel/drivers/i2c/algos/i2c-algo-bit.ko
 kernel/arch/ia64/sn/kernel
 kernel/drivers/sn
 extra/megaide.ko
@@ -239,6 +237,7 @@
 
 kernel/drivers/of/
 kernel/drivers/tty/serial/jsm/
+kernel/drivers/i2c/
 
 # kmps
 updates/


Reply via email to