hi guys,
looks like 5.7 just got released upstream. The rpm build and the distro build services for the 5.x distro is independant from the 6.x stuff, so it should build in parallel and be available shortly ( via the CR setup )
There are a couple of updates from 5.6 still pending - I just pushed those out.
- KB
On 21 July 2011 11:20, Karanbir Singh mail-lists@karan.org wrote:
looks like 5.7 just got released upstream.
ACK.
The rpm build and the distro build services for the 5.x distro is independant from the 6.x stuff, so it should build in parallel and be available shortly ( via the CR setup )
Noted.
There are a couple of updates from 5.6 still pending - I just pushed those out.
Thanks. So if we hear "grumbles", we know what to say.
Alan.
Hi.
I guess there will be still automatic minor release upgrade via 'yum update' working?
Regards, Marko On Thu, 21 Jul 2011, Karanbir Singh wrote:
hi guys,
looks like 5.7 just got released upstream. The rpm build and the distro build services for the 5.x distro is independant from the 6.x stuff, so it should build in parallel and be available shortly ( via the CR setup )
There are a couple of updates from 5.6 still pending - I just pushed those out.
- KB
CentOS-devel mailing list CentOS-devel@centos.org http://lists.centos.org/mailman/listinfo/centos-devel
I was wondering why CentOS 5 can't use network installation via proxy. I've just made a patch. Not compiled/tested yet. Does somebody want to try? -------------------- [Request for testers] PATCH: Network installation via proxy.
/sbin/loader included in the installation media's isolinux/initrd.img provides support for network installation via proxy. However, due to a bug in mountUrlImage() in loader2/urlinstall.c , users cannot use proxy. Fix this bug by forcibly calling screen for configuring proxy if the kernel command line contains the string "useproxy".
Signed-off-by: Tetsuo Handa penguin-kernel@I-love.SAKURA.ne.jp --- loader2/urls.c | 19 +++++++++++++++++++ 1 file changed, 19 insertions(+)
--- anaconda-11.1.2.242.orig/loader2/urls.c +++ anaconda-11.1.2.242/loader2/urls.c @@ -279,6 +279,25 @@ int urlMainSetupPanel(struct iurlinfo * else *doSecondarySetup = ' ';
+ /* + * Since mountUrlImage() in loader2/urlinstall.c calls this function with + * memset(&ui, 0, sizeof(ui)); called, *doSecondarySetup is always ' '. + * As a result, users can't use network installation via proxy. + * Fix it by forcibly changing *doSecondarySetup to '*' if /proc/cmdline + * contains the string "useproxy". + */ + { + const int fd = open("/proc/cmdline", O_RDONLY); + if (fd != EOF) { + char buffer[1024]; + memset(buffer, 0, sizeof(buffer)); + read(fd, buffer, sizeof(buffer) - 1); + close(fd); + if (strstr(buffer, "useproxy")) + *doSecondarySetup = '*'; + } + } + buttons = newtButtonBar(_("OK"), &okay, _("Back"), &cancel, NULL);
switch (protocol) {