Author: alexander
Date: 2007-08-30 22:23:50 -0600 (Thu, 30 Aug 2007)
New Revision: 2052
Modified:
branches/minimal/Makefile
branches/minimal/doc/lfscd-remastering-howto.txt
branches/minimal/etc/profile
branches/minimal/isolinux/options1.msg
branches/minimal/isolinux/options2.msg
branches/minimal/isolinux/options3.msg
branches/minimal/isolinux/options4.msg
branches/minimal/packages/LFS-BOOK/Makefile
branches/minimal/packages/bash/Makefile
branches/minimal/packages/bzip2/Makefile
branches/minimal/packages/coreutils/Makefile
branches/minimal/packages/db/Makefile
branches/minimal/packages/jhalfs/Makefile
branches/minimal/packages/lfs-bootscripts/Makefile
branches/minimal/packages/linux-headers/Makefile
branches/minimal/packages/linux/Makefile
branches/minimal/packages/linux64/Makefile
branches/minimal/packages/man-db/Makefile
branches/minimal/packages/ncurses/Makefile
branches/minimal/packages/readline/Makefile
branches/minimal/packages/texinfo/Makefile
branches/minimal/packages/udev/Makefile
branches/minimal/packages/vim/Makefile
Log:
Merged all applicable changes from trunk
Modified: branches/minimal/Makefile
===================================================================
--- branches/minimal/Makefile 2007-08-31 04:20:18 UTC (rev 2051)
+++ branches/minimal/Makefile 2007-08-31 04:23:50 UTC (rev 2052)
@@ -32,7 +32,7 @@
#==============================================================================
export CD_ARCH := $(shell uname -m | sed 's|i[3456]|x|')
-export VERSION ?= $(CD_ARCH)-6.3-min-pre2
+export VERSION ?= $(CD_ARCH)-6.3-min
export CFLAGS ?= -O2 -pipe -s -fno-strict-aliasing
ifeq ($(CD_ARCH),x86)
Modified: branches/minimal/doc/lfscd-remastering-howto.txt
===================================================================
--- branches/minimal/doc/lfscd-remastering-howto.txt 2007-08-31 04:20:18 UTC
(rev 2051)
+++ branches/minimal/doc/lfscd-remastering-howto.txt 2007-08-31 04:23:50 UTC
(rev 2052)
@@ -1,20 +1,21 @@
-
AUTHOR: Alexander E. Patrakov <[EMAIL PROTECTED]>, Sylvie
Migneault <[EMAIL PROTECTED]>
-DATE: 2006-08-06
+DATE: 2007-08-28
LICENSE: GNU Free Documentation License Version 1.2
-SYNOPSIS: lfscd-remastering-HOWTO, for LFS LiveCD version 6.2-x
+SYNOPSIS: lfscd-remastering-HOWTO, for LFS LiveCD version 6.3
-DESCRIPTION: This is a guide that will show you how to remaster LFS
liveCD-x86-6.2-x
+DESCRIPTION: This is a guide that shows you how to remaster LFS LiveCD 6.3
-PREREQUISITES: LFS LiveCD 6.2-x.
+PREREQUISITES: LFS LiveCD 6.3
For LFS LiveCD 6.1-x, see the old "lfscd-remastering-howto-6.1.txt" hint by
Sylvie Migneault. For LFS LiveCD 6.1.1-x, the old hint should work if one
-globally replaces LFS_CD with lfslivecd-VERSION, e.g. lfslivecd-x86-6.1.1-3
+globally replaces LFS_CD with lfslivecd-VERSION, e.g. lfslivecd-x86-6.1.1-3.
+For LFS LiveCD 6.2-x, see the old "lfscd-remastering-howto-6.2.txt" hint.
+
HINT:
You will need:
@@ -86,22 +87,31 @@
$WORK/root/dev. This is because all the necessary devices are already created
as static nodes.
+Copy the DNS configuration into the chroot:
+ cp /etc/resolv.conf $WORK/root/etc/resolv.conf
+
Chroot to the filesystem:
chroot $WORK/root
In the chroot, change the current directory to /build, and install any
additional packages you want. Modify other files as necessary.
-Get the initramfs files as a zip archive from
- http://wiki.linuxfromscratch.org/livecd/browser/trunk/packages/initramfs
+Check out the initramfs files:
+ svn co svn://svn.linuxfromscratch.org/livecd/trunk/packages/initramfs
-Unzip the archive. Remove the "include $(ROOT)/scripts/functions" line from the
-Makefile. Generate the initramfs image for your CD:
- make compile-stage2 VERSION="x86-6.3-custom"
+Remove the "include $(ROOT)/scripts/functions" and
+"cp initramfs_data.cpio.gz /boot/isolinux/initramfs_data.cpio.gz" lines
+from the Makefile. Generate the initramfs image for your CD:
-(you can replace the "x86-6.3-custom" with your own string). This produces the
-initramfs_data.cpio.gz file in the current directory. If this directory is not
-"/build", copy it to /build:
+For x86:
+ make compile-stage2 VERSION="x86-6.3-custom" LINKER=ld-linux.so.2
+
+For x86_64:
+ make compile-stage2 VERSION="x86_64-6.3-custom" \
+ LINKER=ld-linux-x86-64.so.2 64bit=true
+
+(you can replace the "6.3-custom" with your own string). This produces the
+initramfs_data.cpio.gz file in the current directory. Copy it to /build:
cp initramfs_data.cpio.gz /build
Exit from the chroot and clean up the mounts:
@@ -113,8 +123,9 @@
umount $WORK/root/build
rmdir $WORK/root/build
-Clean up bash history:
+Clean up bash history and DNS configuration:
rm $WORK/root/root/.bash_history
+ rm $WORK/root/etc/resolv.conf
You may also want to remove other history files.
@@ -142,12 +153,13 @@
Replace the stock initramfs image with your own:
cp $WORK/build/initramfs_data.cpio.gz \
- $WORK/iso/boot/isolinux/iniramfs_data.cpio.gz
+ $WORK/iso/boot/isolinux/initramfs_data.cpio.gz
Recompress the root.ext2 file:
mkzftree -F $WORK/root.ext2 $WORK/iso/root.ext2
-Recreate the CD image:
+Recreate the CD image (the string avter "lfslivecd-" must be the same as you
+used when creating the initramfs):
cd $WORK/iso ; mkisofs -z -R -l --allow-leading-dots -D -o \
../lfslivecd-x86-6.3-custom.iso -b boot/isolinux/isolinux.bin \
-c boot/boot.cat -no-emul-boot -boot-load-size 4 -boot-info-table \
@@ -164,10 +176,13 @@
CHANGELOG:
[2005-11-07]
- * Initial hint by Sylvie Migneault.
+ * Initial hint by Sylvie Migneault
[2006-08-06]
* Updated to LFS LiveCD based on device mapper (6.2-pre4 and later)
[2007-06-11]
* Updated for 6.3-pre2
+
+ [2007-08-28]
+ * Updated for the final 6.3 version
Modified: branches/minimal/etc/profile
===================================================================
--- branches/minimal/etc/profile 2007-08-31 04:20:18 UTC (rev 2051)
+++ branches/minimal/etc/profile 2007-08-31 04:23:50 UTC (rev 2052)
@@ -6,7 +6,7 @@
XML_CATALOG_FILES="/usr/share/docbook/xsl-stylesheets-1.69.1/catalog.xml
/etc/xml/catalog"
-WWW_HOME="/usr/share/LFS-BOOK-SVN-HTML/index.html"
+WWW_HOME="/usr/share/LFS-BOOK-6.3-HTML/index.html"
NNTPSERVER=news.gmane.org
Modified: branches/minimal/isolinux/options1.msg
===================================================================
--- branches/minimal/isolinux/options1.msg 2007-08-31 04:20:18 UTC (rev
2051)
+++ branches/minimal/isolinux/options1.msg 2007-08-31 04:23:50 UTC (rev
2052)
@@ -4,15 +4,7 @@
linux64 - A 64-bit kernel for use with CLFS
Options [page 1 of 4]:
-vga=[res]
- Examples:
- vga=795 (1280x1024x24) vga=792 (1024x768x24) vga=789 (800x600x24)
- vga=794 (1280x1024x16) vga=791 (1024x768x16) vga=788 (800x600x16)
- NOTE: This is for the framebuffer console and has nothing to do with X
- server resolution. Also, it causes some X video drivers (e.g., "s3virge") to
- malfunction. X server bug reports will be ignored if you use this option.
-
TZ=[timezone]
Examples: TZ=EDT-4 TZ=America/New_York
@@ -26,6 +18,11 @@
LANG=[locale]
Example: LANG=fr_FR.UTF-8
-If you don't specify your timezone or locale at the boot prompt,
-a configuration dialog will appear later during boot.
+ If you don't specify your timezone or locale at the boot prompt,
+ a configuration dialog will appear later during boot.
+nodhcp
+ Prevents the CD from attempting to obtain an IP address automatically.
+ May be required for wireless networking, because the WEP or WPA key
+ needs to be set up first.
+
Modified: branches/minimal/isolinux/options2.msg
===================================================================
--- branches/minimal/isolinux/options2.msg 2007-08-31 04:20:18 UTC (rev
2051)
+++ branches/minimal/isolinux/options2.msg 2007-08-31 04:23:50 UTC (rev
2052)
@@ -4,6 +4,7 @@
linux64 - A 64-bit kernel for use with CLFS
Options [page 2 of 4]:
+
toram
Loads the whole CD contents (except sources and proprietary video
drivers) to RAM.
@@ -11,11 +12,6 @@
Note: this needs at least 512 MB of RAM, and you also need
to enable swap if you have less than 768 MB of RAM.
-nodhcp
- Prevents the CD from attempting to obtain an IP address automatically.
- May be required for wireless networking, because the WEP or WPA key
- needs to be set up first.
-
rootdelay=X
Waits X seconds before attempting to find the CD. Required (with X=20)
for booting from USB or FireWire CD-ROMs.
@@ -29,3 +25,4 @@
Uses /dev/XXX for software suspending (AKA hibernation) and resuming.
See /root/README for details.
+
Modified: branches/minimal/isolinux/options3.msg
===================================================================
--- branches/minimal/isolinux/options3.msg 2007-08-31 04:20:18 UTC (rev
2051)
+++ branches/minimal/isolinux/options3.msg 2007-08-31 04:23:50 UTC (rev
2052)
@@ -14,9 +14,6 @@
VIA, or Winbond. Drivers for other chipsets are likely to contain bugs that
lead to data loss.
-new_firewire
- Uses the new FireWire drivers.
-
load=module1,module2,...
Loads the specified modules unconditionally from initramfs. Use if your SCSI
or IDE controller is not autodetected. If you don't specify this parameter
Modified: branches/minimal/isolinux/options4.msg
===================================================================
--- branches/minimal/isolinux/options4.msg 2007-08-31 04:20:18 UTC (rev
2051)
+++ branches/minimal/isolinux/options4.msg 2007-08-31 04:23:50 UTC (rev
2052)
@@ -4,6 +4,9 @@
linux64 - A 64-bit kernel for use with CLFS
Options [page 4 of 4]:
+new_firewire
+ Uses the new FireWire stack.
+
nomsi noapic nolapic pci=noacpi acpi=off blacklist=yenta-socket ide=nodma
These options work around various chipset bugs. Try them one-by-one in the
order given above and in various combinations if the CD does not boot, or if
@@ -11,7 +14,15 @@
brltty=drv[,dev[,tbl]]
Example: brltty=bm,usb:
-
Enables a refreshable Braille display supported by driver drv, connected to
device dev, with a translation table tbl. The example specifies a BAUM
SuperVario 40 Braille display connected by USB with default Braille table.
+
+vga=[res]
+ Examples:
+ vga=795 (1280x1024x24) vga=792 (1024x768x24) vga=789 (800x600x24)
+ vga=794 (1280x1024x16) vga=791 (1024x768x16) vga=788 (800x600x16)
+
+ NOTE: This is for the framebuffer console and has nothing to do with X
+ server resolution. Also, it causes some X video drivers (e.g., "s3virge") to
+ malfunction. X server bug reports will be ignored if you use this option.
Modified: branches/minimal/packages/LFS-BOOK/Makefile
===================================================================
--- branches/minimal/packages/LFS-BOOK/Makefile 2007-08-31 04:20:18 UTC (rev
2051)
+++ branches/minimal/packages/LFS-BOOK/Makefile 2007-08-31 04:23:50 UTC (rev
2052)
@@ -1,7 +1,7 @@
# LFS Book Makefile
NM= LFS-BOOK
-VRS= SVN
+VRS= 6.3
DIRBASE= $(NM)-$(VRS)
DIR= $(DIRBASE)-XML
HTMLDIR= $(DIRBASE)-HTML
@@ -10,11 +10,11 @@
#URL-$(FILE)= http://www.linuxfromscratch.org/lfs/downloads/6.2/$(FILE)
#SHA-$(FILE)= 729bcf04d8e4ed0af3c58daf0d289e94d6385052
-REV= 8319
+REV= 8348
REVPARM= -r $(REV)
ifeq ($(CD_ARCH),x86)
-URL= svn://svn.linuxfromscratch.org/LFS/branches/6.3/BOOK
+URL= svn://svn.linuxfromscratch.org/LFS/tags/6.3/BOOK
endif
ifeq ($(CD_ARCH),x86_64)
URL= svn://svn.linuxfromscratch.org/LFS/branches/x86_64/BOOK
Modified: branches/minimal/packages/bash/Makefile
===================================================================
--- branches/minimal/packages/bash/Makefile 2007-08-31 04:20:18 UTC (rev
2051)
+++ branches/minimal/packages/bash/Makefile 2007-08-31 04:23:50 UTC (rev
2052)
@@ -9,7 +9,7 @@
SHA-$(FILE)= fe6466c7ee98061e044dae0347ca5d1a8eab4a0d
PATCH1= $(DIR)-fixes-5.patch
-URL-$(PATCH1)=
http://www.linuxfromscratch.org/patches/lfs/development/$(PATCH1)
+URL-$(PATCH1)= http://www.linuxfromscratch.org/patches/lfs/6.3/$(PATCH1)
SHA-$(PATCH1)= b85f303e6317fe50b6f5d0c204e2e68824010a88
FILE1 = $(NM)-doc-$(VRS).tar.gz
Modified: branches/minimal/packages/bzip2/Makefile
===================================================================
--- branches/minimal/packages/bzip2/Makefile 2007-08-31 04:20:18 UTC (rev
2051)
+++ branches/minimal/packages/bzip2/Makefile 2007-08-31 04:23:50 UTC (rev
2052)
@@ -9,7 +9,7 @@
SHA-$(FILE)= f2388ec8f2c506e02aa89e67577b3c6331cbaa4c
PATCH1= $(DIR)-install_docs-1.patch
-URL-$(PATCH1)=
http://www.linuxfromscratch.org/patches/lfs/development/$(PATCH1)
+URL-$(PATCH1)= http://www.linuxfromscratch.org/patches/lfs/6.3/$(PATCH1)
SHA-$(PATCH1)= 86fa168b260bb12651ebfa6d47939e926e067036
# Targets
Modified: branches/minimal/packages/coreutils/Makefile
===================================================================
--- branches/minimal/packages/coreutils/Makefile 2007-08-31 04:20:18 UTC
(rev 2051)
+++ branches/minimal/packages/coreutils/Makefile 2007-08-31 04:23:50 UTC
(rev 2052)
@@ -9,15 +9,15 @@
SHA-$(FILE)= 10310a78c4e1d9f742f3815ac28e9bf1086a5885
PATCH1= $(DIR)-uname-1.patch
-URL-$(PATCH1)=
http://www.linuxfromscratch.org/patches/lfs/development/$(PATCH1)
+URL-$(PATCH1)= http://www.linuxfromscratch.org/patches/lfs/6.3/$(PATCH1)
SHA-$(PATCH1)= 42cc795e56b96994a4dc9e8f2a8dd72b6a25665f
PATCH2= $(DIR)-suppress_uptime_kill_su-1.patch
-URL-$(PATCH2)=
http://www.linuxfromscratch.org/patches/lfs/development/$(PATCH2)
+URL-$(PATCH2)= http://www.linuxfromscratch.org/patches/lfs/6.3/$(PATCH2)
SHA-$(PATCH2)= e1e783efd515639b78627c37025b96168594f408
PATCH3= $(DIR)-i18n-1.patch
-URL-$(PATCH3)=
http://www.linuxfromscratch.org/patches/lfs/development/$(PATCH3)
+URL-$(PATCH3)= http://www.linuxfromscratch.org/patches/lfs/6.3/$(PATCH3)
SHA-$(PATCH3)= 5db7b7919910ccda018d01f2fc1b65e1c1da954d
# Targets
Modified: branches/minimal/packages/db/Makefile
===================================================================
--- branches/minimal/packages/db/Makefile 2007-08-31 04:20:18 UTC (rev
2051)
+++ branches/minimal/packages/db/Makefile 2007-08-31 04:23:50 UTC (rev
2052)
@@ -9,7 +9,7 @@
SHA-$(FILE)= 0e5a6c152c5d7089899481d9de689d1f7e77bde1
PATCH1= $(DIR)-fixes-1.patch
-URL-$(PATCH1)=
http://www.linuxfromscratch.org/patches/lfs/development/$(PATCH1)
+URL-$(PATCH1)= http://www.linuxfromscratch.org/patches/lfs/6.3/$(PATCH1)
SHA-$(PATCH1)= adf217ef8606f25b6fd4e7c9a0c1ea9f01c4f250
# Targets
Modified: branches/minimal/packages/jhalfs/Makefile
===================================================================
--- branches/minimal/packages/jhalfs/Makefile 2007-08-31 04:20:18 UTC (rev
2051)
+++ branches/minimal/packages/jhalfs/Makefile 2007-08-31 04:23:50 UTC (rev
2052)
@@ -1,12 +1,12 @@
# jhalfs Makefile
NM= jhalfs
-VRS= 2.3
+VRS= 2.3.1
DIR= $(NM)-$(VRS)
FILE= $(DIR).tar.bz2
URL-$(FILE)=
http://www.linuxfromscratch.org/alfs/downloads/jhalfs/stable/$(FILE)
-SHA-$(FILE)= 1d4d9530692cced7bccf10122d28ff814d5195a6
+SHA-$(FILE)= 95a41e2e1c3ff01feaaefafeda7d187760a24dfe
FILE1= configuration
# Targets
Modified: branches/minimal/packages/lfs-bootscripts/Makefile
===================================================================
--- branches/minimal/packages/lfs-bootscripts/Makefile 2007-08-31 04:20:18 UTC
(rev 2051)
+++ branches/minimal/packages/lfs-bootscripts/Makefile 2007-08-31 04:23:50 UTC
(rev 2052)
@@ -1,12 +1,12 @@
# LFS-Bootscripts Makefile
NM= lfs-bootscripts
-VRS= 20070813
+VRS= 6.3
DIR= $(NM)-$(VRS)
FILE= $(DIR).tar.bz2
-URL-$(FILE)= http://www.linuxfromscratch.org/lfs/downloads/development/$(FILE)
-SHA-$(FILE)= ab777ce44476494caba80518be9ced4f724a89d5
+URL-$(FILE)= http://www.linuxfromscratch.org/lfs/downloads/6.3/$(FILE)
+SHA-$(FILE)= f2447b29f99e9b4d6700d89a4d572584951531b8
PATCH1= $(NM)-livecd-1.patch
Modified: branches/minimal/packages/linux/Makefile
===================================================================
--- branches/minimal/packages/linux/Makefile 2007-08-31 04:20:18 UTC (rev
2051)
+++ branches/minimal/packages/linux/Makefile 2007-08-31 04:23:50 UTC (rev
2052)
@@ -1,12 +1,12 @@
# Linux Kernel Makefile
NM= linux
-VRS= 2.6.22.2
+VRS= 2.6.22.5
DIR= $(NM)-$(VRS)
FILE= $(DIR).tar.bz2
URL-$(FILE)= http://www.kernel.org/pub/linux/kernel/v2.6/$(FILE)
-SHA-$(FILE)= e2606e42a3b40e16f65f750f1dd7cf6a580ea71a
+SHA-$(FILE)= a04e4efb32884ab95fe0ec38d60552cf3e0c49b8
PATCH1= reiser4-for-2.6.22-2.patch.gz
URL-$(PATCH1)= ftp://ftp.namesys.com/pub/reiser4-for-2.6/2.6.22/$(PATCH1)
Modified: branches/minimal/packages/linux-headers/Makefile
===================================================================
--- branches/minimal/packages/linux-headers/Makefile 2007-08-31 04:20:18 UTC
(rev 2051)
+++ branches/minimal/packages/linux-headers/Makefile 2007-08-31 04:23:50 UTC
(rev 2052)
@@ -1,12 +1,12 @@
# Linux-headers Makefile
NM= linux
-VRS= 2.6.22.2
+VRS= 2.6.22.5
DIR= $(NM)-$(VRS)
FILE= $(DIR).tar.bz2
URL-$(FILE)= http://www.kernel.org/pub/linux/kernel/v2.6/$(FILE)
-SHA-$(FILE)= e2606e42a3b40e16f65f750f1dd7cf6a580ea71a
+SHA-$(FILE)= a04e4efb32884ab95fe0ec38d60552cf3e0c49b8
# Targets
Modified: branches/minimal/packages/linux64/Makefile
===================================================================
--- branches/minimal/packages/linux64/Makefile 2007-08-31 04:20:18 UTC (rev
2051)
+++ branches/minimal/packages/linux64/Makefile 2007-08-31 04:23:50 UTC (rev
2052)
@@ -1,12 +1,12 @@
# Linux Kernel Makefile
NM= linux
-VRS= 2.6.22.2
+VRS= 2.6.22.5
DIR= $(NM)-$(VRS)
FILE= $(DIR).tar.bz2
URL-$(FILE)= http://www.kernel.org/pub/linux/kernel/v2.6/$(FILE)
-SHA-$(FILE)= e2606e42a3b40e16f65f750f1dd7cf6a580ea71a
+SHA-$(FILE)= a04e4efb32884ab95fe0ec38d60552cf3e0c49b8
PATCH1= reiser4-for-2.6.22-2.patch.gz
URL-$(PATCH1)= ftp://ftp.namesys.com/pub/reiser4-for-2.6/2.6.22/$(PATCH1)
Modified: branches/minimal/packages/man-db/Makefile
===================================================================
--- branches/minimal/packages/man-db/Makefile 2007-08-31 04:20:18 UTC (rev
2051)
+++ branches/minimal/packages/man-db/Makefile 2007-08-31 04:23:50 UTC (rev
2052)
@@ -8,6 +8,10 @@
URL-$(FILE)= http://savannah.nongnu.org/download/man-db/$(FILE)
SHA-$(FILE)= 5c6ba8eb287a69f14433feb34e720b066536d163
+PATCH1= $(DIR)-fixes-1.patch
+URL-$(PATCH1)= http://www.linuxfromscratch.org/patches/lfs/6.3/$(PATCH1)
+SHA-$(PATCH1)= 5ac2a79c2e471991503173982728e65f60f3e071
+
# Targets
include $(ROOT)/scripts/functions
@@ -16,7 +20,7 @@
chroot "$(MP)" $(chenv-post-bash) \
'cd $(ROOT) && make ch-$(NM) $(chbash-post-bash)'
-stage2: Makefile $(FILE)
+stage2: Makefile $(FILE) $(PATCH1)
$(std_build)
compile-stage2:
@@ -30,6 +34,7 @@
echo '#define COL "/usr/bin/col"' >>include/manconfig.h.in
echo '#define VGRIND "/usr/bin/vgrind"' >>include/manconfig.h.in
echo '#define GRAP "/usr/bin/grap"' >>include/manconfig.h.in
+ patch -Np1 -i ../$(PATCH1)
./configure --prefix=/usr --enable-mb-groff --disable-setuid
make
make install
Modified: branches/minimal/packages/ncurses/Makefile
===================================================================
--- branches/minimal/packages/ncurses/Makefile 2007-08-31 04:20:18 UTC (rev
2051)
+++ branches/minimal/packages/ncurses/Makefile 2007-08-31 04:23:50 UTC (rev
2052)
@@ -9,7 +9,7 @@
SHA-$(FILE)= 4d54d8ad0b90fffa2780a0a45edb6fcb027ef18d
PATCH1=$(DIR)-coverity_fixes-1.patch
-URL-$(PATCH1)=
http://www.linuxfromscratch.org/patches/lfs/development/$(PATCH1)
+URL-$(PATCH1)= http://www.linuxfromscratch.org/patches/lfs/6.3/$(PATCH1)
SHA-$(PATCH1)= ad7a49ad6e35e61d975700226279594106842f59
# Targets
Modified: branches/minimal/packages/readline/Makefile
===================================================================
--- branches/minimal/packages/readline/Makefile 2007-08-31 04:20:18 UTC (rev
2051)
+++ branches/minimal/packages/readline/Makefile 2007-08-31 04:23:50 UTC (rev
2052)
@@ -9,7 +9,7 @@
SHA-$(FILE)= 18f3412c73068509d5f491b7b4535aeaf9522834
PATCH1= $(DIR)-fixes-3.patch
-URL-$(PATCH1)=
http://www.linuxfromscratch.org/patches/lfs/development/$(PATCH1)
+URL-$(PATCH1)= http://www.linuxfromscratch.org/patches/lfs/6.3/$(PATCH1)
SHA-$(PATCH1)= de765322d083e26685469f84d75de7465a866cfa
# Targets
Modified: branches/minimal/packages/texinfo/Makefile
===================================================================
--- branches/minimal/packages/texinfo/Makefile 2007-08-31 04:20:18 UTC (rev
2051)
+++ branches/minimal/packages/texinfo/Makefile 2007-08-31 04:23:50 UTC (rev
2052)
@@ -9,11 +9,11 @@
SHA-$(FILE)= 19a0cc0b56cbfcfe610925bef31e0bdf749492c9
PATCH1= $(DIR)-tempfile_fix-1.patch
-URL-$(PATCH1)=
http://www.linuxfromscratch.org/patches/lfs/development/$(PATCH1)
+URL-$(PATCH1)= http://www.linuxfromscratch.org/patches/lfs/6.3/$(PATCH1)
SHA-$(PATCH1)= 2ead28cb8e2679cdb53e1e4908209f0a31397dfe
PATCH2= $(DIR)-multibyte-1.patch
-URL-$(PATCH2)=
http://www.linuxfromscratch.org/patches/lfs/development/$(PATCH2)
+URL-$(PATCH2)= http://www.linuxfromscratch.org/patches/lfs/6.3/$(PATCH2)
SHA-$(PATCH2)= b97ae3468c03f8389dbf5c9b6eed64f996f9ed5c
# Targets
Modified: branches/minimal/packages/udev/Makefile
===================================================================
--- branches/minimal/packages/udev/Makefile 2007-08-31 04:20:18 UTC (rev
2051)
+++ branches/minimal/packages/udev/Makefile 2007-08-31 04:23:50 UTC (rev
2052)
@@ -2,7 +2,7 @@
NM= udev
VRS= 113
-CONFVRS= 20070731
+CONFVRS= 6.3
DIR= $(NM)-$(VRS)
CONFDIR=$(NM)-config-$(CONFVRS)
@@ -11,8 +11,8 @@
SHA-$(FILE)= 55bea7ec61026b2ecc9d2013da0ef4eed76de948
FILE1= $(CONFDIR).tar.bz2
-URL-$(FILE1)=
http://www.linuxfromscratch.org/lfs/downloads/development/$(FILE1)
-SHA-$(FILE1)= f2163c98f3cae0312ec13e4efbbbe9a9af4a8d19
+URL-$(FILE1)= http://www.linuxfromscratch.org/lfs/downloads/6.3/$(FILE1)
+SHA-$(FILE1)= c21ade3df7c121694dd56668b0fdc2f3995e2779
# Targets
Modified: branches/minimal/packages/vim/Makefile
===================================================================
--- branches/minimal/packages/vim/Makefile 2007-08-31 04:20:18 UTC (rev
2051)
+++ branches/minimal/packages/vim/Makefile 2007-08-31 04:23:50 UTC (rev
2052)
@@ -13,11 +13,11 @@
SHA-$(FILE2)= 7c1e2f498e1f8304879e73b88562f9036801c7ee
PATCH1= $(NM)-$(VRS)-fixes-1.patch
-URL-$(PATCH1)=
http://www.linuxfromscratch.org/patches/lfs/development/$(PATCH1)
+URL-$(PATCH1)= http://www.linuxfromscratch.org/patches/lfs/6.3/$(PATCH1)
SHA-$(PATCH1)= 6005e12fc31ce07a4da2806ea4c503cb569f235e
PATCH2= $(NM)-$(VRS)-mandir-1.patch
-URL-$(PATCH2)=
http://www.linuxfromscratch.org/patches/lfs/development/$(PATCH2)
+URL-$(PATCH2)= http://www.linuxfromscratch.org/patches/lfs/6.3/$(PATCH2)
SHA-$(PATCH2)= 182f46dfacefdd3bf6f821dea71f90547d414230
# Targets
--
http://linuxfromscratch.org/mailman/listinfo/livecd
FAQ: http://www.linuxfromscratch.org/faq/
Unsubscribe: See the above information page