You can subscribe to this list here.
| 2007 |
Jan
|
Feb
|
Mar
|
Apr
(330) |
May
(46) |
Jun
(52) |
Jul
(39) |
Aug
(26) |
Sep
(12) |
Oct
(110) |
Nov
(178) |
Dec
(161) |
|---|---|---|---|---|---|---|---|---|---|---|---|---|
| 2008 |
Jan
(99) |
Feb
(106) |
Mar
(97) |
Apr
(93) |
May
(81) |
Jun
(112) |
Jul
(84) |
Aug
(142) |
Sep
(165) |
Oct
(89) |
Nov
(120) |
Dec
(117) |
| 2009 |
Jan
(141) |
Feb
(137) |
Mar
(121) |
Apr
(96) |
May
(207) |
Jun
(194) |
Jul
(210) |
Aug
(155) |
Sep
(91) |
Oct
(159) |
Nov
(123) |
Dec
(166) |
| 2010 |
Jan
(142) |
Feb
(79) |
Mar
(137) |
Apr
(126) |
May
(78) |
Jun
(69) |
Jul
(54) |
Aug
(161) |
Sep
(76) |
Oct
(98) |
Nov
(113) |
Dec
(95) |
| 2011 |
Jan
(101) |
Feb
(118) |
Mar
(74) |
Apr
(75) |
May
(32) |
Jun
(32) |
Jul
(39) |
Aug
(74) |
Sep
(48) |
Oct
(134) |
Nov
(133) |
Dec
(55) |
| 2012 |
Jan
(94) |
Feb
(143) |
Mar
(80) |
Apr
(75) |
May
(36) |
Jun
(46) |
Jul
(47) |
Aug
(51) |
Sep
(10) |
Oct
(36) |
Nov
(38) |
Dec
(19) |
| 2013 |
Jan
(26) |
Feb
(40) |
Mar
(48) |
Apr
(26) |
May
(34) |
Jun
(20) |
Jul
(18) |
Aug
(10) |
Sep
(8) |
Oct
(6) |
Nov
(64) |
Dec
(18) |
| 2014 |
Jan
(26) |
Feb
(42) |
Mar
(126) |
Apr
(122) |
May
(73) |
Jun
(33) |
Jul
(14) |
Aug
(20) |
Sep
(12) |
Oct
(33) |
Nov
(20) |
Dec
(49) |
| 2015 |
Jan
(79) |
Feb
(64) |
Mar
(49) |
Apr
(6) |
May
(9) |
Jun
(2) |
Jul
(27) |
Aug
|
Sep
|
Oct
(4) |
Nov
(1) |
Dec
(12) |
| 2016 |
Jan
(72) |
Feb
(9) |
Mar
(13) |
Apr
(1) |
May
|
Jun
(1) |
Jul
|
Aug
(1) |
Sep
(1) |
Oct
|
Nov
|
Dec
|
| S | M | T | W | T | F | S |
|---|---|---|---|---|---|---|
|
|
|
|
|
|
|
1
(1) |
|
2
(2) |
3
(1) |
4
(1) |
5
|
6
(1) |
7
|
8
(1) |
|
9
(1) |
10
|
11
|
12
|
13
|
14
|
15
|
|
16
|
17
|
18
|
19
|
20
|
21
|
22
|
|
23
|
24
|
25
|
26
|
27
|
28
|
29
|
|
30
(2) |
|
|
|
|
|
|
|
From: <ges...@us...> - 2012-09-30 15:30:47
|
Revision: 6785
http://ipcop.svn.sourceforge.net/ipcop/?rev=6785&view=rev
Author: gespinasse
Date: 2012-09-30 15:30:41 +0000 (Sun, 30 Sep 2012)
Log Message:
-----------
Fix the commented permission change, should have been o (other), not a (all)
Modified Paths:
--------------
ipcop/trunk/lfs/coreutils
Modified: ipcop/trunk/lfs/coreutils
===================================================================
--- ipcop/trunk/lfs/coreutils 2012-09-30 14:09:11 UTC (rev 6784)
+++ ipcop/trunk/lfs/coreutils 2012-09-30 15:30:41 UTC (rev 6785)
@@ -110,7 +110,7 @@
# The user running make.sh own exclusive right to tty, allow root to read stdin in mv/i-3
# This change the setting even outside of the chroot
# Commented for now. Never certain to restore permission if you stop during tests and restart the tests from another tty.
- #chmod a+r `tty`
+ #chmod o+r `tty`
-cd $(DIR_APP) && make -j 1 NON_ROOT_USERNAME=nobody check-root &> $(DIR_TEST)/$(THISAPP)-$(STAGE_ORDER).log
@@ -124,7 +124,7 @@
# need to be outside ifeq/endif in case a test fail and you recompile without test
-sed -i '/dummy/d' /etc/group
rm -f /tmp/root-owned /foo
- #chmod a-r `tty`
+ #chmod o-r `tty`
cd $(DIR_APP) && make install-exec
mv -v /usr/bin/{cat,chgrp,chmod,chown,cp,date,dd,df,echo} /bin
This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site.
|
|
From: <ges...@us...> - 2012-09-30 14:09:18
|
Revision: 6784
http://ipcop.svn.sourceforge.net/ipcop/?rev=6784&view=rev
Author: gespinasse
Date: 2012-09-30 14:09:11 +0000 (Sun, 30 Sep 2012)
Log Message:
-----------
Remove the df hacks on coreutils tests for the fluctuating df behavior.
Instead produce a correct /etc/mtab that df understand.
In particular rootfs line need to be before /dev line for / partition or df may misbehave, in particular when using -t <fstype>.
That was not the case when I first try
grep -E ' / |/sys sysfs|/proc proc|/dev/pts|/dev/shm' /proc/mounts | sort -u >/etc/mtab
sort placed rootfs after /dev/sd3 and df -T -t ext3 find no fs to process even df -T / show /dev/sda3 as type ext3
The correct /etc/mtab fix the hacked tests and more like
-skip-seek-past-dev: skipped test: failed to determine size of -
-SKIP: dd/skip-seek-past-dev
+PASS: dd/skip-seek-past-dev
...
slink: skipped test: '.' is on an XFS file system
-SKIP: du/slink
+PASS: du/slink
I was always curious of the '.' is on an XFS file system diag as my partition is ext3.
It was just another bad df behavior with an incorrect mtab.
Add one hack to not skip ls/root-rel-symlink-color test
Add one hack to not skip mv/i-3 test.
But I left this hack commented because it change permission of tty even out of chroot.
I can't warrant the permission will be restored. The corner case is that you stop the build during tests and restart from another tty.
Anyway, that enought to document why the /dev/stdin is not readable.
The right to read /dev/stdin is reserved to the user running make.sh.
As make.sh build as root, root has no right to read /dev/stdin unless we give him that right.
Update the comment for isatty that still fail on 8.19 (when not hacked)
Modified Paths:
--------------
ipcop/trunk/lfs/coreutils
ipcop/trunk/lfs/stage2
Modified: ipcop/trunk/lfs/coreutils
===================================================================
--- ipcop/trunk/lfs/coreutils 2012-09-09 18:41:10 UTC (rev 6783)
+++ ipcop/trunk/lfs/coreutils 2012-09-30 14:09:11 UTC (rev 6784)
@@ -81,13 +81,8 @@
@$(PREBUILD)
@rm -rf $(DIR_APP) && cd $(DIR_SRC) && tar xf $(DIR_DL)/$(DL_FILE)
- # Fix a 8.{16,17} test issue
+ # Fix a 8.{16,17,18,19} test issue
cd $(DIR_APP) && sed -i -e 's/! isatty/isatty/' -e '45i\ || errno == ENOENT' gnulib-tests/test-getlogin.c
- # Hack a 8.{18,19} test issues due to /etc/mtab not a symlink, df parameter should vary
- # /etc/mtab as symlink is not a panacea as no-mtab-status may fail due to a mount outside of our chroot
- cd $(DIR_APP) && sed -i -e "s/ '\.' / /" tests/df/total-unprocessed
- cd $(DIR_APP) && sed -i -e "s/df ||/df '.' ||/" tests/df/no-mtab-status
- cd $(DIR_APP) && sed -i -e "s/^df ||/df '.' ||/" -e "s/512/512 '.'/" -e "s/\-P /-P '.' /" tests/df/total-verify
ifeq "$(STAGE)" "toolchain"
# hostname is used on base stage by coreutils configure and perl base tests
@@ -108,10 +103,17 @@
ifeq "$(RUNNING_TEST)" "yes"
# To run just one test, add TESTS=[full-test-name] VERBOSE=yes
- # To be able to run rm/fail-eperm test
+ # To not skip rm/fail-eperm test
touch /tmp/root-owned
+ # To not skip ls/root-rel-symlink-color
+ ln -sf ../usr /foo
+ # The user running make.sh own exclusive right to tty, allow root to read stdin in mv/i-3
+ # This change the setting even outside of the chroot
+ # Commented for now. Never certain to restore permission if you stop during tests and restart the tests from another tty.
+ #chmod a+r `tty`
-cd $(DIR_APP) && make -j 1 NON_ROOT_USERNAME=nobody check-root &> $(DIR_TEST)/$(THISAPP)-$(STAGE_ORDER).log
+
# Temporary during tests
echo "dummy:x:1000:nobody" >> /etc/group
# To be able to run non-root tests as nobody
@@ -121,7 +123,8 @@
endif
# need to be outside ifeq/endif in case a test fail and you recompile without test
-sed -i '/dummy/d' /etc/group
- rm -f /tmp/root-owned
+ rm -f /tmp/root-owned /foo
+ #chmod a-r `tty`
cd $(DIR_APP) && make install-exec
mv -v /usr/bin/{cat,chgrp,chmod,chown,cp,date,dd,df,echo} /bin
Modified: ipcop/trunk/lfs/stage2
===================================================================
--- ipcop/trunk/lfs/stage2 2012-09-09 18:41:10 UTC (rev 6783)
+++ ipcop/trunk/lfs/stage2 2012-09-30 14:09:11 UTC (rev 6784)
@@ -110,9 +110,13 @@
chmod -R 644 /etc
find /etc -type d -exec chmod 755 {} \;
- # Use mtab as a file, not a symlink to /proc/mounts : it save 1 coreutil test cleanup
- rm -f /etc/mtab
- touch /etc/mtab
+ # Use mtab as regular file. This allow 'df' not to fail during coreutils test with mount points out
+ # of the chroot that didn't exist inside (like debian /lib/init/rw)
+ rm -f /etc/mtab # In case you experiment with symlink to /proc/mounts
+ # rootfs need to be on top or df -T -t <yourfstype> / will fail with df: no file systems processed
+ grep ' / ' /proc/mounts >/etc/mtab
+ # Remove the duplicate due to the mount --bind
+ grep -E '/sys sysfs|/proc proc|/dev/pts|/dev/shm' /proc/mounts | sort -u >>/etc/mtab
# Enable the serial line console for sparcs
ifeq "$(MACHINE)" "sparc"
@@ -150,7 +154,7 @@
# we need our diff helper before POSTBUILD
cp $(DIR_SRC)/src/scripts/install-diff.pl /usr/local/bin
- # show chroot_make existing variables
+ # show chroot_make existing variables to help debugging
env
@$(POSTBUILD)
This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site.
|
|
From: <ow...@us...> - 2012-09-09 18:41:16
|
Revision: 6783
http://ipcop.svn.sourceforge.net/ipcop/?rev=6783&view=rev
Author: owes
Date: 2012-09-09 18:41:10 +0000 (Sun, 09 Sep 2012)
Log Message:
-----------
Upgrade usb-modeswitch to 1.2.4. Upgrade usb-modeswitch-data to 20120815.
Modified Paths:
--------------
ipcop/trunk/lfs/usb-modeswitch
ipcop/trunk/lfs/usb-modeswitch-data
ipcop/trunk/updates/2.1.0/ROOTFILES.i486-2.1.0
ipcop/trunk/updates/2.1.0/information.xml
Modified: ipcop/trunk/lfs/usb-modeswitch
===================================================================
--- ipcop/trunk/lfs/usb-modeswitch 2012-09-08 19:06:12 UTC (rev 6782)
+++ ipcop/trunk/lfs/usb-modeswitch 2012-09-09 18:41:10 UTC (rev 6783)
@@ -33,7 +33,7 @@
include Config
PKG_NAME = usb-modeswitch
-VER = 1.2.3
+VER = 1.2.4
HOST_ARCH = all
OTHER_SRC = yes
@@ -52,7 +52,7 @@
$(DL_FILE) = $(DL_FROM)/$(DL_FILE)
-$(DL_FILE)_MD5 = 9b29e8b0d93d7604a9e5efc4696d37a3
+$(DL_FILE)_MD5 = dbd4ce7966d7b4a5a0604a8280f7164d
install : $(TARGET)
Modified: ipcop/trunk/lfs/usb-modeswitch-data
===================================================================
--- ipcop/trunk/lfs/usb-modeswitch-data 2012-09-08 19:06:12 UTC (rev 6782)
+++ ipcop/trunk/lfs/usb-modeswitch-data 2012-09-09 18:41:10 UTC (rev 6783)
@@ -33,7 +33,7 @@
include Config
PKG_NAME = usb-modeswitch-data
-VER = 20120531
+VER = 20120815
HOST_ARCH = all
OTHER_SRC = yes
@@ -51,7 +51,7 @@
$(DL_FILE) = $(DL_FROM)/$(DL_FILE)
-$(DL_FILE)_MD5 = 4a948331d5b9fccba4a89d3e62040cc3
+$(DL_FILE)_MD5 = 12d7de3210e45ad6f48791d12bbdbf61
install : $(TARGET)
Modified: ipcop/trunk/updates/2.1.0/ROOTFILES.i486-2.1.0
===================================================================
--- ipcop/trunk/updates/2.1.0/ROOTFILES.i486-2.1.0 2012-09-08 19:06:12 UTC (rev 6782)
+++ ipcop/trunk/updates/2.1.0/ROOTFILES.i486-2.1.0 2012-09-09 18:41:10 UTC (rev 6783)
@@ -795,7 +795,12 @@
/usr/share/zoneinfo/posix/Pacific/Easter
/usr/share/zoneinfo/posix/Pacific/Fakaofo
##
-## usb-modeswitch-data-20120531
+## usb-modeswitch-1.2.4
+/lib/udev/usb_modeswitch
+/usr/sbin/usb_modeswitch
+/usr/sbin/usb_modeswitch_dispatcher
+##
+## usb-modeswitch-data-20120815
/lib/udev/rules.d/40-usb_modeswitch.rules
/usr/share/usb_modeswitch/configPack.tar.gz
##
Modified: ipcop/trunk/updates/2.1.0/information.xml
===================================================================
--- ipcop/trunk/updates/2.1.0/information.xml 2012-09-08 19:06:12 UTC (rev 6782)
+++ ipcop/trunk/updates/2.1.0/information.xml 2012-09-09 18:41:10 UTC (rev 6783)
@@ -19,7 +19,8 @@
pciutils to 3.1.10, pcre to 8.30, pixman to 0.24.4, procps to 3.3.3, psmisc to 22.19,
rsyslog to 5.8.12, shadow to 4.1.5.1, sqlite to 3.7.13, squid to 3.1.20, squid-langpack to 20120616,
tcpdump to 4.3.0, traceroute to 2.0.18, tzdata to 2012e,
- usb-modeswitch-data to 20120531, usbutils to 006, util-linux to 2.21.2, wanpipe to 3.5.25, zlib to 1.2.7, several Perl CPAN modules.
+ usb-modeswitch to 1.2.4, usb-modeswitch-data to 20120815, usbutils to 006, util-linux to 2.21.2,
+ wanpipe to 3.5.25, zlib to 1.2.7, several Perl CPAN modules.
<br />
<b>Mandatory reboot after upgrade.</b>
</description>
This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site.
|
|
From: <eob...@us...> - 2012-09-08 19:06:19
|
Revision: 6782
http://ipcop.svn.sourceforge.net/ipcop/?rev=6782&view=rev
Author: eoberlander
Date: 2012-09-08 19:06:12 +0000 (Sat, 08 Sep 2012)
Log Message:
-----------
Remove redundant link, and tweak text.
Modified Paths:
--------------
IPCopDoc/trunk/en/admin/xml/services.xml
Modified: IPCopDoc/trunk/en/admin/xml/services.xml
===================================================================
--- IPCopDoc/trunk/en/admin/xml/services.xml 2012-09-06 06:08:45 UTC (rev 6781)
+++ IPCopDoc/trunk/en/admin/xml/services.xml 2012-09-08 19:06:12 UTC (rev 6782)
@@ -1290,13 +1290,6 @@
<para>
You can choose if you want to provide this service to your Green network
and/or your Blue network (if installed). Just tick the relevant box.
- </para><para>
- For a full explanation of DHCP you may want to read Linux Magazine's
- <ulink url="http://www.linux-mag.com/2000-04/networknirvana_01.html">
- <citetitle pubwork="article">
- Network Nirvana - How to make Network Configuration as easy as DHCP
- </citetitle>
- </ulink>
</para>
<sect3 id="dhcp_parm">
<title><guilabel>DHCP Server Parameters</guilabel></title>
@@ -1458,9 +1451,10 @@
<sect3 id="add_dhcp_lease">
<title>Fixed Leases</title>
<para>
- If you have machines whose IP addresses you would like to manage centrally but require
- that they always get the same fixed IP address you can tell the DHCP server to assign a
- fixed IP based on the MAC address of the network card in the machine,
+ If you have machines whose IP addresses you would like to manage centrally, but require
+ that they always get the same IP address, you can tell the DHCP server to assign a
+ <quote>static</quote>, or <quote>fixed</quote>,
+ IP address based on the MAC address of the network card in the machine,
or the hostname of the machine.
</para>
<para>
This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site.
|
|
From: <ges...@us...> - 2012-09-06 06:08:52
|
Revision: 6781
http://ipcop.svn.sourceforge.net/ipcop/?rev=6781&view=rev
Author: gespinasse
Date: 2012-09-06 06:08:45 +0000 (Thu, 06 Sep 2012)
Log Message:
-----------
Use our CFLAGS
Modified Paths:
--------------
ipcop/trunk/lfs/dnsmasq
Modified: ipcop/trunk/lfs/dnsmasq
===================================================================
--- ipcop/trunk/lfs/dnsmasq 2012-09-04 19:44:55 UTC (rev 6780)
+++ ipcop/trunk/lfs/dnsmasq 2012-09-06 06:08:45 UTC (rev 6781)
@@ -86,7 +86,7 @@
cd $(DIR_APP) && sed -i \
-e 's/^#define CHUSER .*$$/#define CHUSER "dnsmasq"/' \
-e 's/^#define CHGRP .*$$/#define CHGRP "dnsmasq"/' src/config.h
- cd $(DIR_APP) && make COPTS=-DNO_IPV6
+ cd $(DIR_APP) && make COPTS=-DNO_IPV6 CFLAGS="$(CFLAGS) -Wall -W"
cd $(DIR_APP) && make PREFIX=/usr install
ln -sf /var/ipcop/dhcp/dnsmasq.conf /etc/dnsmasq.conf
This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site.
|
|
From: <ges...@us...> - 2012-09-04 19:45:01
|
Revision: 6780
http://ipcop.svn.sourceforge.net/ipcop/?rev=6780&view=rev
Author: gespinasse
Date: 2012-09-04 19:44:55 +0000 (Tue, 04 Sep 2012)
Log Message:
-----------
Fix another df test that was skipped in real /etc/mtab case
Modified Paths:
--------------
ipcop/trunk/lfs/coreutils
Modified: ipcop/trunk/lfs/coreutils
===================================================================
--- ipcop/trunk/lfs/coreutils 2012-09-03 17:55:23 UTC (rev 6779)
+++ ipcop/trunk/lfs/coreutils 2012-09-04 19:44:55 UTC (rev 6780)
@@ -87,6 +87,7 @@
# /etc/mtab as symlink is not a panacea as no-mtab-status may fail due to a mount outside of our chroot
cd $(DIR_APP) && sed -i -e "s/ '\.' / /" tests/df/total-unprocessed
cd $(DIR_APP) && sed -i -e "s/df ||/df '.' ||/" tests/df/no-mtab-status
+ cd $(DIR_APP) && sed -i -e "s/^df ||/df '.' ||/" -e "s/512/512 '.'/" -e "s/\-P /-P '.' /" tests/df/total-verify
ifeq "$(STAGE)" "toolchain"
# hostname is used on base stage by coreutils configure and perl base tests
This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site.
|
|
From: <eob...@us...> - 2012-09-03 17:55:34
|
Revision: 6779
http://ipcop.svn.sourceforge.net/ipcop/?rev=6779&view=rev
Author: eoberlander
Date: 2012-09-03 17:55:23 +0000 (Mon, 03 Sep 2012)
Log Message:
-----------
Change static to fixed, for consistancy, as suggested by shubes
Modified Paths:
--------------
IPCopDoc/trunk/en/admin/xml/firewall.xml
IPCopDoc/trunk/en/admin/xml/services.xml
Modified: IPCopDoc/trunk/en/admin/xml/firewall.xml
===================================================================
--- IPCopDoc/trunk/en/admin/xml/firewall.xml 2012-09-02 18:15:40 UTC (rev 6778)
+++ IPCopDoc/trunk/en/admin/xml/firewall.xml 2012-09-03 17:55:23 UTC (rev 6779)
@@ -773,10 +773,10 @@
</listitem>
<listitem>
<para>
- You can use DHCP to serve dynamic or static addresses on
- Blue, although static is preferred for security of MAC addresses.
+ You can use DHCP to serve dynamic or fixed addresses on
+ Blue, although fixed is preferred for security of MAC addresses.
Refer to the <link linkend="services-dhcp">DHCP Server</link>
- section for more information on configuring static leases.
+ section for more information on configuring fixed leases.
</para>
</listitem>
</orderedlist>
Modified: IPCopDoc/trunk/en/admin/xml/services.xml
===================================================================
--- IPCopDoc/trunk/en/admin/xml/services.xml 2012-09-02 18:15:40 UTC (rev 6778)
+++ IPCopDoc/trunk/en/admin/xml/services.xml 2012-09-03 17:55:23 UTC (rev 6779)
@@ -1490,7 +1490,7 @@
<title><guilabel>Enabled</guilabel></title>
<para>
Click on this check box to tell the DHCP
- server to hand out this static lease.
+ server to hand out this fixed lease.
If the entry is not enabled, it will be
stored in IPCop's files, but the DHCP
server will not issue this lease.
@@ -1520,7 +1520,7 @@
<formalpara>
<title><guilabel>IP Address</guilabel></title>
<para>
- The static lease IP address that the DHCP server
+ The fixed lease IP address that the DHCP server
will always hand out for the associated MAC
address.
Do not use an address in the server's
@@ -1697,7 +1697,7 @@
<title>Dynamic DNS Administrative Web Page</title>
<para>
Dynamic DNS (DYNDNS) allows you to make your domain name available to the Internet
- even though you do not have a static IP address.
+ even though you do not have a fixed IP address.
</para>
<para>
To use DYNDNS you must first register a subdomain with a DYNDNS provider. Then
This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site.
|
|
From: <ges...@us...> - 2012-09-02 18:15:46
|
Revision: 6778
http://ipcop.svn.sourceforge.net/ipcop/?rev=6778&view=rev
Author: gespinasse
Date: 2012-09-02 18:15:40 +0000 (Sun, 02 Sep 2012)
Log Message:
-----------
Upgrade CnxADSL to 2.7, this one compile on 3.4 kernel
Modified Paths:
--------------
ipcop/trunk/lfs/CnxADSL
ipcop/trunk/updates/2.1.0/ROOTFILES.i486-2.1.0
ipcop/trunk/updates/2.1.0/information.xml
Modified: ipcop/trunk/lfs/CnxADSL
===================================================================
--- ipcop/trunk/lfs/CnxADSL 2012-09-02 18:03:01 UTC (rev 6777)
+++ ipcop/trunk/lfs/CnxADSL 2012-09-02 18:15:40 UTC (rev 6778)
@@ -33,7 +33,7 @@
include Config
PKG_NAME = CnxADSL
-VER = 6.1.2.007-PIM-2.6-2.6
+VER = 6.1.2.007-PIM-2.6-2.7
HOST_ARCH = i486
OTHER_SRC = yes
KERNEL_MOD = yes
@@ -52,7 +52,7 @@
$(DL_FILE) = $(DL_FROM)/$(DL_FILE)
-$(DL_FILE)_MD5 = ab145e6dea1abf8240aeb83bf6a07f94
+$(DL_FILE)_MD5 = cbfaf010130b2ff07dd856de0945111b
install : $(TARGET)
Modified: ipcop/trunk/updates/2.1.0/ROOTFILES.i486-2.1.0
===================================================================
--- ipcop/trunk/updates/2.1.0/ROOTFILES.i486-2.1.0 2012-09-02 18:03:01 UTC (rev 6777)
+++ ipcop/trunk/updates/2.1.0/ROOTFILES.i486-2.1.0 2012-09-02 18:15:40 UTC (rev 6778)
@@ -116,6 +116,11 @@
/usr/lib/libcairo.so.2
/usr/lib/libcairo.so.2.11000.2
##
+## CnxADSL-6.1.2.007-PIM-2.6-2.7
+/etc/Conexant/cnxadslload
+/usr/sbin/cnxadslconfig
+/usr/sbin/cnxadslstatus
+##
## conntrack-tools-1.2.2
/usr/lib/libmnl.so.0
/usr/lib/libmnl.so.0.1.0
Modified: ipcop/trunk/updates/2.1.0/information.xml
===================================================================
--- ipcop/trunk/updates/2.1.0/information.xml 2012-09-02 18:03:01 UTC (rev 6777)
+++ ipcop/trunk/updates/2.1.0/information.xml 2012-09-02 18:15:40 UTC (rev 6778)
@@ -7,8 +7,8 @@
cairo recompiled with -O3, isdn4k-utils with -Os -fno-strict-aliasing<br />
Add URL filter, xz-5.0.4<br />
Language updates.<br />
- Upgrade acpid to 2.0.16, arping to 2.12, bash to 4.2.37, bind to 9.8.3-P2, conntrack-tools to 1.2.2, coreutils to 8.19,
- dhcpcd to 5.5.6, dnsmasq to 2.63,
+ Upgrade acpid to 2.0.16, arping to 2.12, bash to 4.2.37, bind to 9.8.3-P2, CnxADSL to ..PIM-2.6-2.7
+ conntrack-tools to 1.2.2, coreutils to 8.19, dhcpcd to 5.5.6, dnsmasq to 2.63,
e2fsprogs to 1.42.5, ethtool to 3.2, expat to 2.1.0, freetype to 2.4.10, fontconfig to 2.9, gawk to 4.0.1, glib to 2.30.3,
gmp to 5.0.5, gnupg to 1.4.12, grep to 2.14, gzip to 1.5,
iproute2 to 3.5.1, iptables to 1.4.15, iptstate to 2.2.5, iw to 3.6 hdparm to 9.39, kernel to 3.0.41, krb5 to 1.10.3,
This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site.
|
|
From: <ges...@us...> - 2012-09-02 18:03:07
|
Revision: 6777
http://ipcop.svn.sourceforge.net/ipcop/?rev=6777&view=rev
Author: gespinasse
Date: 2012-09-02 18:03:01 +0000 (Sun, 02 Sep 2012)
Log Message:
-----------
bash-4.2 upgrade to patchlevel .37
Modified Paths:
--------------
ipcop/trunk/lfs/bash
ipcop/trunk/updates/2.1.0/ROOTFILES.i486-2.1.0
ipcop/trunk/updates/2.1.0/information.xml
Modified: ipcop/trunk/lfs/bash
===================================================================
--- ipcop/trunk/lfs/bash 2012-09-01 17:45:33 UTC (rev 6776)
+++ ipcop/trunk/lfs/bash 2012-09-02 18:03:01 UTC (rev 6777)
@@ -74,6 +74,7 @@
PATCH34 := $(PKG_NAME)42-034
PATCH35 := $(PKG_NAME)42-035
PATCH36 := $(PKG_NAME)42-036
+PATCH37 := $(PKG_NAME)42-037
###############################################################################
# Top-level Rules
@@ -108,7 +109,8 @@
$(PATCH33).patch \
$(PATCH34).patch \
$(PATCH35).patch \
- $(PATCH36).patch
+ $(PATCH36).patch \
+ $(PATCH37).patch
$(DL_FILE) = $(DL_FROM)/$(DL_FILE)
$(PATCH1) = $(URL_LFS)/$(PKG_NAME)/$(PATCH1)
@@ -141,6 +143,7 @@
$(PATCH34).patch = $(DL_FROM)/$(THISAPP)-patches/$(PATCH34)
$(PATCH35).patch = $(DL_FROM)/$(THISAPP)-patches/$(PATCH35)
$(PATCH36).patch = $(DL_FROM)/$(THISAPP)-patches/$(PATCH36)
+$(PATCH37).patch = $(DL_FROM)/$(THISAPP)-patches/$(PATCH37)
$(DL_FILE)_MD5 = 3fb927c7c33022f1c327f14a81c0d4b0
$(PATCH1)_MD5 = abae789c2807cb7c7c4c452fa3986f85
@@ -173,6 +176,7 @@
$(PATCH34).patch_MD5 = 4e610506c1711bf3483b965800ac3d5d
$(PATCH35).patch_MD5 = 7cd9bfdf7cbfd45274d07620ee94c8d9
$(PATCH36).patch_MD5 = 9c3142956064d175a880bcb186e51ef9
+$(PATCH37).patch_MD5 = c10692f447d4966c879f8fb8d7c8ebc9
install : $(TARGET)
@@ -207,7 +211,7 @@
cd $(DIR_APP) && patch -p0 -i $(DIR_DL)/$(PATCH09).patch
# Ubuntu lucid bash version 4.1.5(1) do nothing with $(seq 10 36), use instead ``.
# Same bash version doesn't like the variable evaluation, use a separate patch var
- cd $(DIR_APP) && for nb in `seq 10 36`; do patch="$(DIR_DL)/$(PKG_NAME)42-0$$nb.patch";echo "using $$patch"; patch -p0 -i $$patch; done
+ cd $(DIR_APP) && for nb in `seq 10 37`; do patch="$(DIR_DL)/$(PKG_NAME)42-0$$nb.patch";echo "using $$patch"; patch -p0 -i $$patch; done
# Fix not a string literal and no format arguments, debian borrowed
cd $(DIR_APP) && patch -p2 -i $(DIR_PATCHES)/$(PKG_NAME)-4.1_hardening-formatstring.patch
Modified: ipcop/trunk/updates/2.1.0/ROOTFILES.i486-2.1.0
===================================================================
--- ipcop/trunk/updates/2.1.0/ROOTFILES.i486-2.1.0 2012-09-01 17:45:33 UTC (rev 6776)
+++ ipcop/trunk/updates/2.1.0/ROOTFILES.i486-2.1.0 2012-09-02 18:03:01 UTC (rev 6777)
@@ -88,7 +88,7 @@
## arping-2.12
/usr/sbin/arping
##
-## bash-4.2.36 + format-string patch
+## bash-4.2.37 + format-string patch
/bin/sh
/bin/bash
##
Modified: ipcop/trunk/updates/2.1.0/information.xml
===================================================================
--- ipcop/trunk/updates/2.1.0/information.xml 2012-09-01 17:45:33 UTC (rev 6776)
+++ ipcop/trunk/updates/2.1.0/information.xml 2012-09-02 18:03:01 UTC (rev 6777)
@@ -7,7 +7,7 @@
cairo recompiled with -O3, isdn4k-utils with -Os -fno-strict-aliasing<br />
Add URL filter, xz-5.0.4<br />
Language updates.<br />
- Upgrade acpid to 2.0.16, arping to 2.12, bash to 4.2.36, bind to 9.8.3-P2, conntrack-tools to 1.2.2, coreutils to 8.19,
+ Upgrade acpid to 2.0.16, arping to 2.12, bash to 4.2.37, bind to 9.8.3-P2, conntrack-tools to 1.2.2, coreutils to 8.19,
dhcpcd to 5.5.6, dnsmasq to 2.63,
e2fsprogs to 1.42.5, ethtool to 3.2, expat to 2.1.0, freetype to 2.4.10, fontconfig to 2.9, gawk to 4.0.1, glib to 2.30.3,
gmp to 5.0.5, gnupg to 1.4.12, grep to 2.14, gzip to 1.5,
This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site.
|
|
From: <ges...@us...> - 2012-09-01 17:45:41
|
Revision: 6776
http://ipcop.svn.sourceforge.net/ipcop/?rev=6776&view=rev
Author: gespinasse
Date: 2012-09-01 17:45:33 +0000 (Sat, 01 Sep 2012)
Log Message:
-----------
Upgrade coreutils to 8.19
This fix some sort -u issues
As su has been removed in coreutils, follow LFS and compile shadow before coreutils to supply another su needed for coreutils tests
As /etc/mtab is not a symlink and mostly only this configuration is tested, one df test fail and another is skipped
Change the tests so they work in this configuration. I could have changed /etc/mtab to a symlink, probably we should in the futur.
(The coreutils test that was failing to umount in the 8.0 era with /etc/mtab as a symlink has been removed)
Change coreutils tests not to break the build, this mostly only loose time when pure test issue happen.
Modified Paths:
--------------
ipcop/trunk/lfs/coreutils
ipcop/trunk/make.sh
ipcop/trunk/updates/2.1.0/ROOTFILES.i486-2.1.0
ipcop/trunk/updates/2.1.0/information.xml
Modified: ipcop/trunk/lfs/coreutils
===================================================================
--- ipcop/trunk/lfs/coreutils 2012-08-28 06:34:13 UTC (rev 6775)
+++ ipcop/trunk/lfs/coreutils 2012-09-01 17:45:33 UTC (rev 6776)
@@ -33,7 +33,7 @@
include Config
PKG_NAME = coreutils
-VER = 8.17
+VER = 8.19
HOST_ARCH = all
OTHER_SRC = yes
@@ -50,7 +50,7 @@
$(DL_FILE) = $(DL_FROM)/$(DL_FILE)
-$(DL_FILE)_MD5 = bbda656ce8ca2c6903948f9faa204ba3
+$(DL_FILE)_MD5 = 1a01231a2f3ed37c0efc073ccdda9375
install : $(TARGET)
@@ -83,6 +83,10 @@
# Fix a 8.{16,17} test issue
cd $(DIR_APP) && sed -i -e 's/! isatty/isatty/' -e '45i\ || errno == ENOENT' gnulib-tests/test-getlogin.c
+ # Hack a 8.{18,19} test issues due to /etc/mtab not a symlink, df parameter should vary
+ # /etc/mtab as symlink is not a panacea as no-mtab-status may fail due to a mount outside of our chroot
+ cd $(DIR_APP) && sed -i -e "s/ '\.' / /" tests/df/total-unprocessed
+ cd $(DIR_APP) && sed -i -e "s/df ||/df '.' ||/" tests/df/no-mtab-status
ifeq "$(STAGE)" "toolchain"
# hostname is used on base stage by coreutils configure and perl base tests
@@ -90,8 +94,6 @@
cd $(DIR_APP) && FORCE_UNSAFE_CONFIGURE=1 ./configure --prefix=/$(TOOLS_DIR) --disable-nls --enable-install-program=hostname
cd $(DIR_APP) && make -j $(PARALLELISM)
cd $(DIR_APP) && make install-exec
- # su is not installed (because suid root)
- cd $(DIR_APP) && cp src/su /$(TOOLS_DIR)/bin
endif
ifeq "$(STAGE)" "base"
@@ -108,13 +110,12 @@
# To be able to run rm/fail-eperm test
touch /tmp/root-owned
- # No test should fail there
- cd $(DIR_APP) && make -j 1 NON_ROOT_USERNAME=nobody check-root &> $(DIR_TEST)/$(THISAPP)-$(STAGE_ORDER).log
+ -cd $(DIR_APP) && make -j 1 NON_ROOT_USERNAME=nobody check-root &> $(DIR_TEST)/$(THISAPP)-$(STAGE_ORDER).log
# Temporary during tests
echo "dummy:x:1000:nobody" >> /etc/group
# To be able to run non-root tests as nobody
chown -R nobody $(DIR_APP)
- cd $(DIR_APP) && su nobody -s /bin/bash -c "make -j 1 -k RUN_EXPENSIVE_TESTS=yes check" \
+ -cd $(DIR_APP) && su nobody -s /bin/bash -c "PATH=$(PATH) make -j 1 -k RUN_EXPENSIVE_TESTS=yes check" \
>> $(DIR_TEST)/$(THISAPP)-$(STAGE_ORDER).log 2>&1
endif
# need to be outside ifeq/endif in case a test fail and you recompile without test
Modified: ipcop/trunk/make.sh
===================================================================
--- ipcop/trunk/make.sh 2012-08-28 06:34:13 UTC (rev 6775)
+++ ipcop/trunk/make.sh 2012-09-01 17:45:33 UTC (rev 6776)
@@ -1693,6 +1693,7 @@
chroot_make util-linux
chroot_make psmisc
chroot_make e2fsprogs
+ chroot_make shadow # provide su for coreutils tests
chroot_make coreutils
chroot_make iana-etc
chroot_make m4
@@ -1730,7 +1731,6 @@
#chroot_make kmod
chroot_make patch
chroot_make rsyslog
- chroot_make shadow
chroot_make strace # compile early for debug purpose
chroot_make sysvinit
chroot_make tar
Modified: ipcop/trunk/updates/2.1.0/ROOTFILES.i486-2.1.0
===================================================================
--- ipcop/trunk/updates/2.1.0/ROOTFILES.i486-2.1.0 2012-08-28 06:34:13 UTC (rev 6775)
+++ ipcop/trunk/updates/2.1.0/ROOTFILES.i486-2.1.0 2012-09-01 17:45:33 UTC (rev 6776)
@@ -124,7 +124,7 @@
/usr/sbin/conntrack
/usr/sbin/nfct
##
-## coreutils-8.17
+## coreutils-8.19
/bin/cat
/bin/chgrp
/bin/chmod
Modified: ipcop/trunk/updates/2.1.0/information.xml
===================================================================
--- ipcop/trunk/updates/2.1.0/information.xml 2012-08-28 06:34:13 UTC (rev 6775)
+++ ipcop/trunk/updates/2.1.0/information.xml 2012-09-01 17:45:33 UTC (rev 6776)
@@ -7,7 +7,7 @@
cairo recompiled with -O3, isdn4k-utils with -Os -fno-strict-aliasing<br />
Add URL filter, xz-5.0.4<br />
Language updates.<br />
- Upgrade acpid to 2.0.16, arping to 2.12, bash to 4.2.36, bind to 9.8.3-P2, conntrack-tools to 1.2.2, coreutils to 8.17,
+ Upgrade acpid to 2.0.16, arping to 2.12, bash to 4.2.36, bind to 9.8.3-P2, conntrack-tools to 1.2.2, coreutils to 8.19,
dhcpcd to 5.5.6, dnsmasq to 2.63,
e2fsprogs to 1.42.5, ethtool to 3.2, expat to 2.1.0, freetype to 2.4.10, fontconfig to 2.9, gawk to 4.0.1, glib to 2.30.3,
gmp to 5.0.5, gnupg to 1.4.12, grep to 2.14, gzip to 1.5,
This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site.
|