commit linuxrc for openSUSE:Factory
Hello community, here is the log from the commit of package linuxrc for openSUSE:Factory checked in at 2015-05-10 10:56:06 ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ Comparing /work/SRC/openSUSE:Factory/linuxrc (Old) and /work/SRC/openSUSE:Factory/.linuxrc.new (New) ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ Package is "linuxrc" Changes: -------- --- /work/SRC/openSUSE:Factory/linuxrc/linuxrc.changes 2015-04-25 16:47:17.000000000 +0200 +++ /work/SRC/openSUSE:Factory/.linuxrc.new/linuxrc.changes 2015-05-10 10:56:08.000000000 +0200 @@ -1,0 +2,9 @@ +Fri May 8 08:46:04 CEST 2015 - snwint@suse.com + +- really setup next network interface when probing for a working one (bsc#928965) +- Documented testing with mksusecd. +- removed an obsolete file +- Fixed `make TAGS`. +- 5.0.39 + +------------------------------------------------------------------- Old: ---- linuxrc-5.0.37.tar.xz New: ---- linuxrc-5.0.39.tar.xz ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ Other differences: ------------------ ++++++ linuxrc.spec ++++++ --- /var/tmp/diff_new_pack.YaBpQA/_old 2015-05-10 10:56:09.000000000 +0200 +++ /var/tmp/diff_new_pack.YaBpQA/_new 2015-05-10 10:56:09.000000000 +0200 @@ -25,7 +25,7 @@ Summary: SUSE Installation Program License: GPL-3.0+ Group: System/Boot -Version: 5.0.37 +Version: 5.0.39 Release: 0 Source: %{name}-%{version}.tar.xz BuildRoot: %{_tmppath}/%{name}-%{version}-build ++++++ linuxrc-5.0.37.tar.xz -> linuxrc-5.0.39.tar.xz ++++++ diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/linuxrc-5.0.37/Makefile new/linuxrc-5.0.39/Makefile --- old/linuxrc-5.0.37/Makefile 2015-04-24 11:35:41.000000000 +0200 +++ new/linuxrc-5.0.39/Makefile 2015-05-08 08:45:32.000000000 +0200 @@ -57,8 +57,8 @@ rm -f $(OBJ) *~ linuxrc linuxrc.map linuxrc-debug .depend version.h rm -rf package -TAGS: *.c *.h */*.c */*.h - etags *.c *.h */*.c */*.h +TAGS: *.c *.h */*.c + etags $^ ifeq ($(filter clean changelog VERSION, $(MAKECMDGOALS)),) .depend: version.h $(SRC) $(INC) diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/linuxrc-5.0.37/README.md new/linuxrc-5.0.39/README.md --- old/linuxrc-5.0.37/README.md 2015-04-24 11:35:41.000000000 +0200 +++ new/linuxrc-5.0.39/README.md 2015-05-08 08:45:32.000000000 +0200 @@ -22,3 +22,31 @@ ### Logging To capture log into file with maximum log verbosity use these linuxrc params: `linuxrc.log=/tmp/linuxrc.log linuxrc.debug=4` + +## Testing the Installation + +A regular SUSE installation DVD gets built via linuxrc.rpm, +then installation-images.rpm, +then a [KIWI image build](https://build.opensuse.org/package/show/openSUSE:Factory/_product:openSUSE-d...). + +For testing a shortcut is available: mksusecd +([GitHub](https://github.com/openSUSE/mksusecd), +[OBS](https://build.opensuse.org/package/show/system:install:head/mksusecd)). + +Use: + +```sh +mksusecd --initrd ./linuxrc.rpm ... +``` + +or, without an RPM: + +```sh +make +mkdir /tmp/initrd +cp linuxrc /tmp/initrd/init +mksusecd --initrd /tmp/initrd ... +``` + +You may also use `mksusecd --micro` in case you only want to test Stage 1 +and not a full install. diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/linuxrc-5.0.37/VERSION new/linuxrc-5.0.39/VERSION --- old/linuxrc-5.0.37/VERSION 2015-04-24 11:35:41.000000000 +0200 +++ new/linuxrc-5.0.39/VERSION 2015-05-08 08:45:32.000000000 +0200 @@ -1 +1 @@ -5.0.37 +5.0.39 diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/linuxrc-5.0.37/bptypes.h new/linuxrc-5.0.39/bptypes.h --- old/linuxrc-5.0.37/bptypes.h 2015-04-24 11:35:41.000000000 +0200 +++ new/linuxrc-5.0.39/bptypes.h 1970-01-01 01:00:00.000000000 +0100 @@ -1,27 +0,0 @@ -/* bptypes.h */ - -#ifndef BPTYPES_H -#define BPTYPES_H - -/* - * 32 bit integers are different types on various architectures - */ - -/* I hope that this test actually works! */ - -#ifndef int32 -/* Assume that int is 32bits -- we can't test better than this in cpp - If this is wrong, then define int32 externally to override this */ -# define int32 int -#endif - -/* typedef unsigned int32 u_int32; */ - -/* - * Nice typedefs. . . - */ - -typedef int boolean; -typedef unsigned char byte; - -#endif /* BPTYPES_H */ diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/linuxrc-5.0.37/changelog new/linuxrc-5.0.39/changelog --- old/linuxrc-5.0.37/changelog 2015-04-24 11:35:41.000000000 +0200 +++ new/linuxrc-5.0.39/changelog 2015-05-08 08:45:32.000000000 +0200 @@ -1,3 +1,11 @@ +2015-05-07: 5.0.39 + - Documented testing with mksusecd. + - removed an obsolete file + - Fixed `make TAGS`. + +2015-05-07: 5.0.38 + - really setup next network interface when probing for a working one (bsc #928965) + 2015-04-23: 5.0.37 - re-enable utf8 mode when linemode is switched off (bnc #921112)
participants (1)
-
root@hilbert.suse.de