public inbox for ipfire-scm@lists.ipfire.org
 help / color / mirror / Atom feed
From: git@ipfire.org
To: ipfire-scm@lists.ipfire.org
Subject: [git.ipfire.org] IPFire 2.x development tree branch, seventeen, updated. 9b7862db33bb6bec27b303ccb2d4827145a0d79b
Date: Thu, 06 Nov 2014 00:09:14 +0100	[thread overview]
Message-ID: <20141105230914.7D2E721261@argus.ipfire.org> (raw)

[-- Attachment #1: Type: text/plain, Size: 14091 bytes --]

This is an automated email from the git hooks/post-receive script. It was
generated because a ref change was pushed to the repository containing
the project "IPFire 2.x development tree".

The branch, seventeen has been updated
       via  9b7862db33bb6bec27b303ccb2d4827145a0d79b (commit)
       via  bcd7a757491e0136d5307b709f781b360e3736b8 (commit)
       via  0565657116511f14f0adc29eaad1a3214fc8c9cf (commit)
       via  c0504c5cc5ddf46d9eb672b954fdc93274c2162c (commit)
       via  8f89ad6d424dad59782d896319017342c610e067 (commit)
      from  851fba0e8df26b85c39760d0e8307ec3b6abdc46 (commit)

Those revisions listed above that are new to this repository have
not appeared on any other notification email; so we list those
revisions in full, below.

- Log -----------------------------------------------------------------
commit 9b7862db33bb6bec27b303ccb2d4827145a0d79b
Merge: bcd7a75 851fba0
Author: Arne Fitzenreiter <arne_f(a)ipfire.org>
Date:   Thu Nov 6 00:08:55 2014 +0100

    Merge branch 'seventeen' of git.ipfire.org:/pub/git/ipfire-2.x into seventeen

commit bcd7a757491e0136d5307b709f781b360e3736b8
Author: Arne Fitzenreiter <arne_f(a)ipfire.org>
Date:   Thu Nov 6 00:08:13 2014 +0100

    kernel: kirkwood: fix legacy boot patch for dreamplug.

commit 0565657116511f14f0adc29eaad1a3214fc8c9cf
Author: Arne Fitzenreiter <arne_f(a)ipfire.org>
Date:   Thu Nov 6 00:06:43 2014 +0100

    flash-images: use third partition again as root.

commit c0504c5cc5ddf46d9eb672b954fdc93274c2162c
Author: Arne Fitzenreiter <arne_f(a)ipfire.org>
Date:   Wed Nov 5 14:27:59 2014 +0100

    part/fsresize: fix on systems without initrd.
    
    /proc/mounts has no correct entry for / on such systems.
    Use mount instead.

commit 8f89ad6d424dad59782d896319017342c610e067
Author: Arne Fitzenreiter <arne_f(a)ipfire.org>
Date:   Wed Nov 5 14:26:37 2014 +0100

    kernel: arm-multi: disable hanging sunxi_ss crypto module.
    
    udev loads the problematic module automaticly.

-----------------------------------------------------------------------

Summary of changes:
 config/kernel/kernel.config.armv5tel-ipfire-multi  |  2 +-
 lfs/flash-images                                   |  6 ++---
 src/initscripts/init.d/fsresize                    |  4 ++--
 src/initscripts/init.d/partresize                  | 10 ++++++--
 .../linux-3.14.22-kirkwood_legacy_boot.patch       | 27 +++++++++++-----------
 5 files changed, 28 insertions(+), 21 deletions(-)

Difference in files:
diff --git a/config/kernel/kernel.config.armv5tel-ipfire-multi b/config/kernel/kernel.config.armv5tel-ipfire-multi
index 65b1aff..370fdd1 100644
--- a/config/kernel/kernel.config.armv5tel-ipfire-multi
+++ b/config/kernel/kernel.config.armv5tel-ipfire-multi
@@ -5892,7 +5892,7 @@ CONFIG_CRYPTO_DEV_HIFN_795X_RNG=y
 CONFIG_CRYPTO_DEV_OMAP_SHAM=y
 CONFIG_CRYPTO_DEV_OMAP_AES=y
 CONFIG_CRYPTO_DEV_SAHARA=y
-CONFIG_CRYPTO_DEV_SUNXI_SS=m
+# CONFIG_CRYPTO_DEV_SUNXI_SS is not set
 CONFIG_ASYMMETRIC_KEY_TYPE=m
 CONFIG_ASYMMETRIC_PUBLIC_KEY_SUBTYPE=m
 CONFIG_PUBLIC_KEY_ALGO_RSA=m
diff --git a/lfs/flash-images b/lfs/flash-images
index f660d5c..d2050b4 100644
--- a/lfs/flash-images
+++ b/lfs/flash-images
@@ -1,7 +1,7 @@
 ###############################################################################
 #                                                                             #
 # IPFire.org - A linux based firewall                                         #
-# Copyright (C) 2007-2012  IPFire Team  <info(a)ipfire.org>                     #
+# Copyright (C) 2007-2014  IPFire Team  <info(a)ipfire.org>                     #
 #                                                                             #
 # This program is free software: you can redistribute it and/or modify        #
 # it under the terms of the GNU General Public License as published by        #
@@ -31,7 +31,7 @@ TARGET     = $(DIR_INFO)/$(THISAPP)
 
 DEVICE     = $(shell losetup -f)
 PART_BOOT  = /dev/mapper/$(patsubst /dev/%,%,$(DEVICE))p1
-PART_ROOT  = /dev/mapper/$(patsubst /dev/%,%,$(DEVICE))p2
+PART_ROOT  = /dev/mapper/$(patsubst /dev/%,%,$(DEVICE))p3
 
 ifeq "$(SCON)" "1"
 	IMAGE_FILE = /install/images/$(SNAME)-$(VERSION).1gb-ext4-scon.$(MACHINE)-full-core$(CORE).img.gz
@@ -92,7 +92,7 @@ $(TARGET) : $(patsubst %,$(DIR_DL)/%,$(objects))
 	losetup $(DEVICE) $(IMG)
 
 	# Write Partition table
-	echo -e "$(S_OFFSET),$(S_BOOT),$(PART_TYPE),*\n$$(( $(S_BOOT) + $(S_OFFSET) )),$(S_ROOT),L\n" \
+	echo -e "$(S_OFFSET),$(S_BOOT),$(PART_TYPE),*\n,0,0\n$$(( $(S_BOOT) + $(S_OFFSET) )),$(S_ROOT),L\n" \
 		| sfdisk -D -uS -H 64 -S 32 $(DEVICE)
 
 	kpartx -v -a $(DEVICE)
diff --git a/src/initscripts/init.d/fsresize b/src/initscripts/init.d/fsresize
index 325c731..79aeb36 100644
--- a/src/initscripts/init.d/fsresize
+++ b/src/initscripts/init.d/fsresize
@@ -21,7 +21,7 @@ case "${1}" in
 			boot_mesg "Re-sizing root partition..."
 
 			# Find root device
-			while read -r dev mountpoint fs options; do
+			mount | while read -r dev tmp1 mountpoint tmp2; do
 				# Skip generic entries
 				[ "${dev}" = "rootfs" ] && continue
 
@@ -33,7 +33,7 @@ case "${1}" in
 					rm -f /.resizefs
 					break
 				fi
-			done < /proc/mounts
+			done
 		fi
 		;;
 
diff --git a/src/initscripts/init.d/partresize b/src/initscripts/init.d/partresize
index 38c5683..8c05f4d 100644
--- a/src/initscripts/init.d/partresize
+++ b/src/initscripts/init.d/partresize
@@ -22,8 +22,14 @@ case "${1}" in
 			mount -o remount,rw / > /dev/null
 			evaluate_retval
 
+			boot_mesg "Create /etc/mtab..."
+			> /etc/mtab
+			mount -f / || failed=1
+			(exit ${failed})
+			evaluate_retval
+
 			# Detect device
-			while read -r dev mountpoint fs options; do
+			mount | while read -r dev tmp1 mountpoint tmp2; do
 				[ "${dev}" = "rootfs" ] && continue
 
 				if [ "${mountpoint}" = "/" ]; then
@@ -57,7 +63,7 @@ case "${1}" in
 					sleep 15
 					reboot -f
 				fi
-			done < /proc/mounts
+			done
 		fi
 		;;
 	*)
diff --git a/src/patches/linux-3.14.22-kirkwood_legacy_boot.patch b/src/patches/linux-3.14.22-kirkwood_legacy_boot.patch
index 27dfedd..97b2cc1 100644
--- a/src/patches/linux-3.14.22-kirkwood_legacy_boot.patch
+++ b/src/patches/linux-3.14.22-kirkwood_legacy_boot.patch
@@ -1,6 +1,6 @@
 diff -Naur linux-3.14.22.org/arch/arm/mach-kirkwood/db88f6281-bp-setup.c linux-3.14.22/arch/arm/mach-kirkwood/db88f6281-bp-setup.c
 --- linux-3.14.22.org/arch/arm/mach-kirkwood/db88f6281-bp-setup.c	1970-01-01 01:00:00.000000000 +0100
-+++ linux-3.14.22/arch/arm/mach-kirkwood/db88f6281-bp-setup.c	2014-10-15 08:32:29.000000000 +0200
++++ linux-3.14.22/arch/arm/mach-kirkwood/db88f6281-bp-setup.c	2014-11-05 22:07:58.828714499 +0100
 @@ -0,0 +1,108 @@
 +/*
 + * arch/arm/mach-kirkwood/db88f6281-bp-setup.c
@@ -112,7 +112,7 @@ diff -Naur linux-3.14.22.org/arch/arm/mach-kirkwood/db88f6281-bp-setup.c linux-3
 +MACHINE_END
 diff -Naur linux-3.14.22.org/arch/arm/mach-kirkwood/dockstar-setup.c linux-3.14.22/arch/arm/mach-kirkwood/dockstar-setup.c
 --- linux-3.14.22.org/arch/arm/mach-kirkwood/dockstar-setup.c	1970-01-01 01:00:00.000000000 +0100
-+++ linux-3.14.22/arch/arm/mach-kirkwood/dockstar-setup.c	2014-10-15 08:32:29.000000000 +0200
++++ linux-3.14.22/arch/arm/mach-kirkwood/dockstar-setup.c	2014-11-05 22:07:58.828714499 +0100
 @@ -0,0 +1,111 @@
 +/*
 + * arch/arm/mach-kirkwood/dockstar-setup.c
@@ -227,7 +227,7 @@ diff -Naur linux-3.14.22.org/arch/arm/mach-kirkwood/dockstar-setup.c linux-3.14.
 +MACHINE_END
 diff -Naur linux-3.14.22.org/arch/arm/mach-kirkwood/dreamplug-setup.c linux-3.14.22/arch/arm/mach-kirkwood/dreamplug-setup.c
 --- linux-3.14.22.org/arch/arm/mach-kirkwood/dreamplug-setup.c	1970-01-01 01:00:00.000000000 +0100
-+++ linux-3.14.22/arch/arm/mach-kirkwood/dreamplug-setup.c	2014-11-04 00:25:48.383688273 +0100
++++ linux-3.14.22/arch/arm/mach-kirkwood/dreamplug-setup.c	2014-11-05 22:07:58.833714499 +0100
 @@ -0,0 +1,151 @@
 +/*
 + * arch/arm/mach-kirkwood/dreamplug-setup.c
@@ -382,7 +382,7 @@ diff -Naur linux-3.14.22.org/arch/arm/mach-kirkwood/dreamplug-setup.c linux-3.14
 +MACHINE_END
 diff -Naur linux-3.14.22.org/arch/arm/mach-kirkwood/guruplug-setup.c linux-3.14.22/arch/arm/mach-kirkwood/guruplug-setup.c
 --- linux-3.14.22.org/arch/arm/mach-kirkwood/guruplug-setup.c	1970-01-01 01:00:00.000000000 +0100
-+++ linux-3.14.22/arch/arm/mach-kirkwood/guruplug-setup.c	2014-11-04 00:25:48.383688273 +0100
++++ linux-3.14.22/arch/arm/mach-kirkwood/guruplug-setup.c	2014-11-05 22:07:58.838714499 +0100
 @@ -0,0 +1,135 @@
 +/*
 + * arch/arm/mach-kirkwood/guruplug-setup.c
@@ -521,7 +521,7 @@ diff -Naur linux-3.14.22.org/arch/arm/mach-kirkwood/guruplug-setup.c linux-3.14.
 +MACHINE_END
 diff -Naur linux-3.14.22.org/arch/arm/mach-kirkwood/iconnect-setup.c linux-3.14.22/arch/arm/mach-kirkwood/iconnect-setup.c
 --- linux-3.14.22.org/arch/arm/mach-kirkwood/iconnect-setup.c	1970-01-01 01:00:00.000000000 +0100
-+++ linux-3.14.22/arch/arm/mach-kirkwood/iconnect-setup.c	2014-11-04 00:25:48.383688273 +0100
++++ linux-3.14.22/arch/arm/mach-kirkwood/iconnect-setup.c	2014-11-05 22:07:58.843714499 +0100
 @@ -0,0 +1,214 @@
 +/*
 + * arch/arm/mach-kirkwood/iconnect-setup.c
@@ -739,7 +739,7 @@ diff -Naur linux-3.14.22.org/arch/arm/mach-kirkwood/iconnect-setup.c linux-3.14.
 +MACHINE_END
 diff -Naur linux-3.14.22.org/arch/arm/mach-kirkwood/Kconfig linux-3.14.22/arch/arm/mach-kirkwood/Kconfig
 --- linux-3.14.22.org/arch/arm/mach-kirkwood/Kconfig	2014-10-15 08:42:04.000000000 +0200
-+++ linux-3.14.22/arch/arm/mach-kirkwood/Kconfig	2014-11-04 01:10:52.950526196 +0100
++++ linux-3.14.22/arch/arm/mach-kirkwood/Kconfig	2014-11-05 22:07:58.848714499 +0100
 @@ -1,3 +1,5 @@
 +
 +
@@ -840,8 +840,8 @@ diff -Naur linux-3.14.22.org/arch/arm/mach-kirkwood/Kconfig linux-3.14.22/arch/a
  endif
 diff -Naur linux-3.14.22.org/arch/arm/mach-kirkwood/Makefile linux-3.14.22/arch/arm/mach-kirkwood/Makefile
 --- linux-3.14.22.org/arch/arm/mach-kirkwood/Makefile	2014-10-15 08:42:04.000000000 +0200
-+++ linux-3.14.22/arch/arm/mach-kirkwood/Makefile	2014-11-04 01:11:13.009019440 +0100
-@@ -2,6 +2,14 @@
++++ linux-3.14.22/arch/arm/mach-kirkwood/Makefile	2014-11-05 22:09:01.758714529 +0100
+@@ -2,6 +2,15 @@
  obj-$(CONFIG_KIRKWOOD_LEGACY)	+= irq.o mpp.o
  obj-$(CONFIG_PM)		+= pm.o
  
@@ -849,6 +849,7 @@ diff -Naur linux-3.14.22.org/arch/arm/mach-kirkwood/Makefile linux-3.14.22/arch/
 +obj-$(CONFIG_MACH_DOCKSTAR)		+= dockstar-setup.o
 +obj-$(CONFIG_MACH_ESATA_SHEEVAPLUG)	+= sheevaplug-setup.o
 +obj-$(CONFIG_MACH_GURUPLUG)		+= guruplug-setup.o
++obj-$(CONFIG_MACH_DREAMPLUG)		+= dreamplug-setup.o
 +obj-$(CONFIG_MACH_INETSPACE_V2)		+= netspace_v2-setup.o lacie_v2-common.o
 +obj-$(CONFIG_MACH_NETSPACE_MAX_V2)	+= netspace_v2-setup.o lacie_v2-common.o
 +obj-$(CONFIG_MACH_NETSPACE_V2)		+= netspace_v2-setup.o lacie_v2-common.o
@@ -856,7 +857,7 @@ diff -Naur linux-3.14.22.org/arch/arm/mach-kirkwood/Makefile linux-3.14.22/arch/
  obj-$(CONFIG_MACH_D2NET_V2)		+= d2net_v2-setup.o lacie_v2-common.o
  obj-$(CONFIG_MACH_NET2BIG_V2)		+= netxbig_v2-setup.o lacie_v2-common.o
  obj-$(CONFIG_MACH_NET5BIG_V2)		+= netxbig_v2-setup.o lacie_v2-common.o
-@@ -11,6 +19,8 @@
+@@ -11,6 +20,8 @@
  obj-$(CONFIG_MACH_T5325)		+= t5325-setup.o
  obj-$(CONFIG_MACH_TS219)		+= ts219-setup.o tsx1x-common.o
  obj-$(CONFIG_MACH_TS41X)		+= ts41x-setup.o tsx1x-common.o
@@ -867,7 +868,7 @@ diff -Naur linux-3.14.22.org/arch/arm/mach-kirkwood/Makefile linux-3.14.22/arch/
  obj-$(CONFIG_MACH_MV88F6281GTW_GE_DT)	+= board-mv88f6281gtw_ge.o
 diff -Naur linux-3.14.22.org/arch/arm/mach-kirkwood/nas6210-setup.c linux-3.14.22/arch/arm/mach-kirkwood/nas6210-setup.c
 --- linux-3.14.22.org/arch/arm/mach-kirkwood/nas6210-setup.c	1970-01-01 01:00:00.000000000 +0100
-+++ linux-3.14.22/arch/arm/mach-kirkwood/nas6210-setup.c	2014-11-04 00:25:48.393687522 +0100
++++ linux-3.14.22/arch/arm/mach-kirkwood/nas6210-setup.c	2014-11-05 22:07:58.858714499 +0100
 @@ -0,0 +1,185 @@
 +/*
 + * arch/arm/mach-kirkwood/nas6210-setup.c
@@ -1056,7 +1057,7 @@ diff -Naur linux-3.14.22.org/arch/arm/mach-kirkwood/nas6210-setup.c linux-3.14.2
 +MACHINE_END
 diff -Naur linux-3.14.22.org/arch/arm/mach-kirkwood/netspace_v2-setup.c linux-3.14.22/arch/arm/mach-kirkwood/netspace_v2-setup.c
 --- linux-3.14.22.org/arch/arm/mach-kirkwood/netspace_v2-setup.c	1970-01-01 01:00:00.000000000 +0100
-+++ linux-3.14.22/arch/arm/mach-kirkwood/netspace_v2-setup.c	2014-10-15 08:32:29.000000000 +0200
++++ linux-3.14.22/arch/arm/mach-kirkwood/netspace_v2-setup.c	2014-11-05 22:07:58.858714499 +0100
 @@ -0,0 +1,293 @@
 +/*
 + * arch/arm/mach-kirkwood/netspace_v2-setup.c
@@ -1353,7 +1354,7 @@ diff -Naur linux-3.14.22.org/arch/arm/mach-kirkwood/netspace_v2-setup.c linux-3.
 +#endif
 diff -Naur linux-3.14.22.org/arch/arm/mach-kirkwood/sheevaplug-setup.c linux-3.14.22/arch/arm/mach-kirkwood/sheevaplug-setup.c
 --- linux-3.14.22.org/arch/arm/mach-kirkwood/sheevaplug-setup.c	1970-01-01 01:00:00.000000000 +0100
-+++ linux-3.14.22/arch/arm/mach-kirkwood/sheevaplug-setup.c	2014-10-15 08:32:29.000000000 +0200
++++ linux-3.14.22/arch/arm/mach-kirkwood/sheevaplug-setup.c	2014-11-05 22:07:58.868714499 +0100
 @@ -0,0 +1,161 @@
 +/*
 + * arch/arm/mach-kirkwood/sheevaplug-setup.c
@@ -1518,7 +1519,7 @@ diff -Naur linux-3.14.22.org/arch/arm/mach-kirkwood/sheevaplug-setup.c linux-3.1
 +#endif
 diff -Naur linux-3.14.22.org/arch/arm/tools/mach-types linux-3.14.22/arch/arm/tools/mach-types
 --- linux-3.14.22.org/arch/arm/tools/mach-types	2014-10-15 08:42:04.000000000 +0200
-+++ linux-3.14.22/arch/arm/tools/mach-types	2014-11-04 00:25:48.393687522 +0100
++++ linux-3.14.22/arch/arm/tools/mach-types	2014-11-05 22:07:58.868714499 +0100
 @@ -447,6 +447,7 @@
  smartq5			MACH_SMARTQ5		SMARTQ5			2534
  davinci_dm6467tevm	MACH_DAVINCI_DM6467TEVM	DAVINCI_DM6467TEVM	2548


hooks/post-receive
--
IPFire 2.x development tree

                 reply	other threads:[~2014-11-05 23:09 UTC|newest]

Thread overview: [no followups] expand[flat|nested]  mbox.gz  Atom feed

Reply instructions:

You may reply publicly to this message via plain-text email
using any one of the following methods:

* Save the following mbox file, import it into your mail client,
  and reply-to-all from there: mbox

  Avoid top-posting and favor interleaved quoting:
  https://en.wikipedia.org/wiki/Posting_style#Interleaved_style

* Reply using the --to, --cc, and --in-reply-to
  switches of git-send-email(1):

  git send-email \
    --in-reply-to=20141105230914.7D2E721261@argus.ipfire.org \
    --to=git@ipfire.org \
    --cc=ipfire-scm@lists.ipfire.org \
    /path/to/YOUR_REPLY

  https://kernel.org/pub/software/scm/git/docs/git-send-email.html

* If your mail client supports setting the In-Reply-To header
  via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line before the message body.
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox