[Bug 194132] rm(1) is ignoring more errors than it should in rm_tree(..)
https://bugs.freebsd.org/bugzilla/show_bug.cgi?id=194132 Jilles Tjoelker changed: What|Removed |Added CC||jil...@freebsd.org --- Comment #3 from Jilles Tjoelker --- The problem here is in fts(3), not in rm(1). If fts_read() aborts the traversal because of a concurrent modification, that is a bug. If a concurrent rm -rf X/Y causes an rm -rf X to abort, this may cause X/Z to escape removal erroneously. A possible fix is to use the pathnames to go back to grandparent directories if opening ".." fails (as with "..", st_dev and st_ino must be checked). A consequence is that the current directory and fts_accpath in the FTS_DP result will be different (fts_accpath will contain a slash, which it normally doesn't if fts is changing directory). Also, this will not work in deep directory trees with pathnames longer than PATH_MAX. -- You are receiving this mail because: You are the assignee for the bug. ___ freebsd-bugs@freebsd.org mailing list http://lists.freebsd.org/mailman/listinfo/freebsd-bugs To unsubscribe, send any mail to "freebsd-bugs-unsubscr...@freebsd.org"
Release generation failure from 10.0-RELEASE to RELENG_10_0
Good afternoon, Have found what seems to be a bug in the generate-release.sh script. When running the command for example : sh generate-release.sh releng/10.0 /expert/release-generada it fails when stats building pkg in the chrooted env. I think this is because in the chroot env are not created the shared library cache hint files…. so it seems to be solved when modifying the script int he following way : --- /root/generate-release.sh-defecto 2014-10-05 08:30:49.0 +0200 +++ /usr/src/release/generate-release.sh2014-10-05 08:30:57.0 +0200 @@ -108,6 +108,8 @@ if [ -d ${CHROOTDIR}/usr/doc ]; then cp /etc/resolv.conf ${CHROOTDIR}/etc/resolv.conf + ${CHROOT_CMD} /etc/rc.d/ldconfig onerestart + # Install docproj to build release documentation ${CHROOT_CMD} /bin/sh -c \ 'make -C /usr/ports/textproc/docproj \ I think this is similar as reported in ports/186554 bug. Could someone say if this should had been solved in another way?. I think this is correct. Isn’t it?. Best regards, ___ freebsd-bugs@freebsd.org mailing list http://lists.freebsd.org/mailman/listinfo/freebsd-bugs To unsubscribe, send any mail to "freebsd-bugs-unsubscr...@freebsd.org"
[Bug 192324] [uefi] 2014-07-14 11.0-CURRENT snapshot doesn't boot
https://bugs.freebsd.org/bugzilla/show_bug.cgi?id=192324 freebsdb...@gushi.org changed: What|Removed |Added CC||freebsdb...@gushi.org --- Comment #4 from freebsdb...@gushi.org --- So, I did a presentation on this board at BAFUG recently. In that presentation, I included boot results and screenshots: What I've found works is to get to an EFI shell, and then launch the loader from the command line -- but ONLY when connected to an HDMI console. You can see my output (they're embedded videos) at http://www.gushi.org/minnowpreso Hope these help. -- You are receiving this mail because: You are the assignee for the bug. ___ freebsd-bugs@freebsd.org mailing list http://lists.freebsd.org/mailman/listinfo/freebsd-bugs To unsubscribe, send any mail to "freebsd-bugs-unsubscr...@freebsd.org"
[Bug 194173] New: Timezones (zoneinfo) starting from October 2014 wrong for Russia, etc
https://bugs.freebsd.org/bugzilla/show_bug.cgi?id=194173 Bug ID: 194173 Summary: Timezones (zoneinfo) starting from October 2014 wrong for Russia, etc Product: Base System Version: 9.3-RELEASE Hardware: Any OS: Any Status: Needs Triage Severity: Affects Many People Priority: --- Component: bin Assignee: freebsd-bugs@FreeBSD.org Reporter: l...@sai.msu.ru The current installed version of FreeBSD 8.4-RELEASE-p16, 9.3-RELEASE-p2 and 10.0-RELEASE-p9 incorrectly convert UTC to/from local time. Differences between actual zoneinfo IANA and FreeBSD versions [name wrong source file from the directory contrib/tzdata (share/zoneinfo); country; one of the cities for which an error has been observed; the near future for which the observed error]: FreeBSD 8.4-RELEASE-p16: europe Russia Europe/Moscow (26 Oct 2014) africa Egypt Africa/Cairo(24 Apr 2015) Libya Africa/Tripoli (31 Oct 2014) asiaPalestine Asia/Hebron (27 Mar 2015) ZionAsia/Jerusalem (6 Oct 2014) FreeBSD 10.0-RELEASE-p9: europe Russia Europe/Moscow (26 Oct 2014) africa Egypt Africa/Cairo(24 Apr 2015) FreeBSD 9.3-RELEASE-p2: europe Russia Europe/Moscow (26 Oct 2014) Workarounds: 1. Temporarily use the current version of /usr/ports/misc/zoneinfo (see attachment zoneinfo-2014.f.txz): # portsnap fetch # portsnap update # cd /usr/ports/misc/zoneinfo # make install Add WITHOUT_ZONEINFO="yes" to your /etc/src.conf; Run tzsetup(8) again to install the right file to /etc/localtime. 2. Copy directory /usr/share/zoneinfo from FreeBSD stable/8, stable/9 or 10.1-RC1. Updated source files, see: https://svnweb.freebsd.org/base/stable/8/share/zoneinfo/antarctica?revision=270814&view=markup https://svnweb.freebsd.org/base/stable/9/contrib/tzdata/etcetera?revision=270815&view=markup https://svnweb.freebsd.org/base/stable/10/contrib/tzdata/backward?revision=270817&view=markup -- You are receiving this mail because: You are the assignee for the bug. ___ freebsd-bugs@freebsd.org mailing list http://lists.freebsd.org/mailman/listinfo/freebsd-bugs To unsubscribe, send any mail to "freebsd-bugs-unsubscr...@freebsd.org"
[Bug 192324] [uefi] 2014-07-14 11.0-CURRENT snapshot doesn't boot
https://bugs.freebsd.org/bugzilla/show_bug.cgi?id=192324 --- Comment #5 from Oliver Pinter --- take a look at this PR: https://bugs.freebsd.org/bugzilla/show_bug.cgi?id=194063 -- You are receiving this mail because: You are the assignee for the bug. ___ freebsd-bugs@freebsd.org mailing list http://lists.freebsd.org/mailman/listinfo/freebsd-bugs To unsubscribe, send any mail to "freebsd-bugs-unsubscr...@freebsd.org"
[Bug 194063] [uefi] installer fails to boot / kernel panic on HP Probook 430 G1
https://bugs.freebsd.org/bugzilla/show_bug.cgi?id=194063 Oliver Pinter changed: What|Removed |Added Summary|installer fails to boot / |[uefi] installer fails to |kernel panic on HP Probook |boot / kernel panic on HP |430 G1 |Probook 430 G1 -- You are receiving this mail because: You are the assignee for the bug. ___ freebsd-bugs@freebsd.org mailing list http://lists.freebsd.org/mailman/listinfo/freebsd-bugs To unsubscribe, send any mail to "freebsd-bugs-unsubscr...@freebsd.org"
[Bug 194173] Timezones (zoneinfo) starting from October 2014 wrong for Russia, etc
https://bugs.freebsd.org/bugzilla/show_bug.cgi?id=194173 --- Comment #1 from l...@sai.msu.ru --- P.S. Require changes only zone info data files (one, two, or three files). C code or command files changes do not require. -- Sorry for my best English. -- You are receiving this mail because: You are the assignee for the bug. ___ freebsd-bugs@freebsd.org mailing list http://lists.freebsd.org/mailman/listinfo/freebsd-bugs To unsubscribe, send any mail to "freebsd-bugs-unsubscr...@freebsd.org"
[Bug 194173] Timezones (zoneinfo) starting from October 2014 wrong for Russia, etc
https://bugs.freebsd.org/bugzilla/show_bug.cgi?id=194173 --- Comment #2 from l...@sai.msu.ru --- Created attachment 148016 --> https://bugs.freebsd.org/bugzilla/attachment.cgi?id=148016&action=edit Package with zoneinfo data files -- You are receiving this mail because: You are the assignee for the bug. ___ freebsd-bugs@freebsd.org mailing list http://lists.freebsd.org/mailman/listinfo/freebsd-bugs To unsubscribe, send any mail to "freebsd-bugs-unsubscr...@freebsd.org"
Problem reports for freebsd-bugs@FreeBSD.org that need special attention
To view an individual PR, use: https://bugs.freebsd.org/bugzilla/show_bug.cgi?id=(Bug Id). The following is a listing of current problems submitted by FreeBSD users, which need special attention. These represent problem reports covering all versions including experimental development code and obsolete releases. Status |Bug Id | Description +---+- Needs MFC |155028 | init(8): "init q" in single user causes segfaul Needs MFC |156481 | [kernel] [patch] kernel incorrectly reports PPS Needs MFC |165630 | [ndis][panic][patch] IRQL_NOT_GREATER_THAN Needs MFC |167133 | stale files in /usr/share/examples Needs MFC |169471 | [patch] pw(8) deletes group "username" on userd Needs MFC |171779 | [patch] passwd(1): make option NO_FSCHG incompl Needs MFC |181155 | [libc] [patch] *access*(2) does not handle inva Needs MFC |184681 | A bug of bsdconfig(8) in 10.0 RC1 Needs MFC |190186 | [patch] i915 driver: enable opregion handling Needs MFC |192730 | [build] make checkdpadd failures with LD* varia Needs MFC |192760 | [build] sbin/ifconfig: missing DPADD for LIBM Patch Ready |192350 | [ipf] ipnat doesn't work with INET6 kernel opti 12 problems total for which you should take action. ___ freebsd-bugs@freebsd.org mailing list http://lists.freebsd.org/mailman/listinfo/freebsd-bugs To unsubscribe, send any mail to "freebsd-bugs-unsubscr...@freebsd.org"