Changeset 2001
- Timestamp:
- 08/01/07 11:49:01 (1 year ago)
- Files:
-
- branches/minimal/Makefile (modified) (3 diffs)
- branches/minimal/isolinux/boot.msg (modified) (1 diff)
- branches/minimal/isolinux/options.msg (modified) (1 diff)
- branches/minimal/packages/linux/Makefile (modified) (1 diff)
- branches/minimal/packages/linux64 (added)
- branches/minimal/packages/linux64/Makefile (added)
- branches/minimal/packages/linux64/config.x86_64 (added)
- branches/minimal/packages/linux64/tulip-is-not-a-proper-driver-for-dm910x.patch (added)
- branches/minimal/packages/traceroute/Makefile (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
- Modified
- Copied
- Moved
branches/minimal/Makefile
r1996 r2001 276 276 ch-device-mapper ch-LVM2 ch-dmraid ch-dhcpcd ch-distcc ch-ppp ch-rp-pppoe ch-pptp \ 277 277 ch-cpio ch-mutt ch-msmtp ch-tin ch-mdadm ch-which ch-brltty \ 278 ch-strace ch-iptables ch-eject ch-hdparm ch-linux\278 ch-strace ch-iptables ch-eject ch-hdparm \ 279 279 ch-sysfsutils ch-pcmcia-cs ch-pcmciautils \ 280 280 ch-blfs-bootscripts ch-oui-data ch-hibernate-script ch-slang ch-mc \ … … 283 283 ifeq ($(CD_ARCH),x86) 284 284 make ch-grub 285 make ch-linux 286 make ch-binutils64 287 make ch-gcc64 285 288 endif 289 make ch-linux64 290 make ch-initramfs 286 291 make update-caches 287 292 … … 381 386 @>$(MP)/var/log/wtmp 382 387 @>$(MP)/var/log/lastlog 383 @install -m644 isolinux/{isolinux.cfg,*.msg,splash.lss} $(MP)/boot/isolinux 388 @install -m644 isolinux/{isolinux.cfg,splash.lss} $(MP)/boot/isolinux 389 ifeq ($(CD_ARCH),x86_64) 390 @sed -i -e '/linux64/d' -e 's/ 32-bit//' $(MP)/boot/isolinux/options.msg 391 @sed -i '/linux64/,$$d' $(MP)/boot/isolinux/isolinux.cfg 392 endif 384 393 @sed -i "s/Version:/Version: $(VERSION)/" $(MP)/boot/isolinux/boot.msg 385 394 @sed -i "s/Version:/Version: $(VERSION)/" $(MP)/etc/issue* branches/minimal/isolinux/boot.msg
r1574 r2001 2 2 splash.lss 3 3 07This is the Official LFS LiveCD, Version: 4 07Press [Enter] to boot or press F1 for more options.4 07Press [Enter] to boot, F1 for basic options 5 5 branches/minimal/isolinux/options.msg
r1994 r2001 1 7007To use a framebuffer console, type "linux vga=xxx"2 where xxx denotes a screen resolution and color depth. 3 This has nothing to do with X server resolution, and bug reports 4 about X window system will be ignored if you pass this parameter. 1 7007To specify options at boot time, type [kernel] [options] 2 Available kernels: 3 linux - The default 32-bit kernel 4 linux64 - A 64-bit kernel for use with CLFS 5 5 6 Examples: 6 Basic options: 7 vga=[res] 8 Examples: 9 vga=795 (1280x1024x24) vga=794 (1280x1024x16) 10 vga=792 (1024x768x24) vga=791 (1024x768x16) 11 vga=789 (800x600x24) vga=788 (800x600x16) 7 12 8 795 = 1280x1024x24 794 = 1280x1024x16 9 792 = 1024x768x24 791 = 1024x768x16 10 789 = 800x600x24 788 = 800x600x16 13 NOTE: This is for the framebuffer console and has nothing 14 to do with X server resolution. 11 15 12 To set your timezone, add TZ=your_timezone anywhere 13 after "linux" or "linux.ata". For example, TZ=EDT+4 means that the 14 timezone is named "EDT" and is 4 hours behind (west) of UTC. 15 Specifications like TZ=America/New_York also work. 16 Also, add UTC=1 if the hardware clock in your computer 17 is set to UTC instead of local time. 16 TZ=[timezone] 17 Examples: 18 TZ=EDT-4 TZ=America/New_York 18 19 19 Set your locale by adding LANG=your_locale anywhere after "linux". 20 The first example means that the timezone is named "EDT" 21 and is 4 hours behind (west) of UTC. 22 23 UTC=[0,1] 24 Use UTC=1 if the hardware clock is set to UTC or 25 use UTC=0 if the hardware clock is set to local time. 26 27 LANG=[locale] 20 28 21 29 If you don't specify your timezone or locale at the boot prompt, 22 30 a configuration dialog will appear later during boot. 23 31 24 More information is available in /root/README on this CD.25 branches/minimal/packages/linux/Makefile
r1996 r2001 24 24 compile-stage2: 25 25 patch -Np1 -i ../$(PATCH3) 26 mkdir -p/boot/isolinux26 install -d /boot/isolinux 27 27 make mrproper 28 28 cp ../config.$(CD_ARCH) .config 29 29 make 30 30 make modules_install 31 ifeq ($(CD_ARCH),x86)32 31 cp -v arch/i386/boot/bzImage /boot/isolinux/linux 33 endif34 ifeq ($(CD_ARCH),x86_64)35 cp -v arch/x86_64/boot/bzImage /boot/isolinux/linux36 endif37 32 cd .. ; ./debian-style-headers.sh $(DIR) 38 33 branches/minimal/packages/traceroute/Makefile
r1994 r2001 25 25 26 26 compile-stage2: 27 ifeq ($(CD_ARCH),x86_64)28 27 patch -Np1 -i ../$(PATCH) 29 endif30 28 sed -i -e 's/-o bin/-o root/' Makefile.in 31 29 ./configure --prefix=/usr
