Changeset 1718

Show
Ignore:
Timestamp:
09/05/06 21:41:57 (2 years ago)
Author:
alexander
Message:

Not everyone's BIOS handles multisession bootable CDs correctly.
Thus, the method to customize the CD contents using a second session has
been dropped in favour of proper remastering.

Files:
1 added
1 removed
3 modified

Legend:

Unmodified
Added
Removed
  • branches/6.2/doc/README

    r1706 r1718  
    142142It is possible to burn a customized version of the official Linux From 
    143143Scratch LiveCD, with your own files added. To do that, follow the 
    144 instructions below. 
    145  
    146 * Burn the official CD in multi session mode: 
    147     cdrecord dev=/dev/cdrom -v -multi -tao lfslivecd-[version].iso 
    148  
    149 * Prepare a directory with the files you want to add, delete or change: 
    150     mkdir second-session && cd second-session 
    151     vim path/to/new-file 
    152     vim path/to/file-to-be-changed 
    153     echo path/to/file1-to-be-deleted >.delete 
    154     echo path/to/file2-to-be-deleted >>.delete 
    155     cd .. 
    156  
    157 * Make an image contatining those files: 
    158     mkisofs -l -M lfslivecd-[version].iso \ 
    159         -C `cdrecord -msinfo dev=/dev/cdrom` \ 
    160         -R -o second-session.iso second-session 
    161  
    162 * Append the image you just created to the official Linux From Scratch 
    163   LiveCD: 
    164     cdrecord dev=/dev/cdrom -v -multi -tao second-session.iso 
     144instructions in the /root/lfscd-remastering-howto.txt file. 
    165145 
    166146AUTOSSHD 
    167147============================ 
    168148It is possible to start the sshd daemon automatically upon boot. To do that, 
    169 you have to customize the CD as described above. Add the following files: 
     149you have to customize the CD. Modify the following files: 
    170150 
    171151* /.autosshd 
     
    192172 
    193173* /etc/udev/rules.d/50-network.rules 
    194     Create an empty file in order to prevent udev from running dhcpcd. 
     174    Remove this file in order to prevent udev from running dhcpcd. 
    195175 
    196176INTERNATIONALIZATION 
  • branches/6.2/packages/livecd-bootscripts/Makefile

    r1580 r1718  
    44# Targets 
    55 
    6 SCRIPTS= customize clkconf langconf brltty brltty-restart 
     6SCRIPTS= clkconf langconf brltty brltty-restart 
    77DATA= font.dat font-errors.dat lang.dat 
    88 
     
    2222        install -m754 $(SCRIPTS) /etc/rc.d/init.d 
    2323        install -m644 $(DATA) /etc/langconf 
    24         ln -sf ../init.d/customize /etc/rc.d/rcsysinit.d/S09customize 
    2524        ln -sf ../init.d/brltty /etc/rc.d/rcsysinit.d/S11brltty 
    2625        ln -sf ../init.d/clkconf /etc/rc.d/rcsysinit.d/S59clkconf 
  • trunk/Makefile

    r1707 r1718  
    397397endif 
    398398        @sed -i "s/Version:/Version: $(VERSION)/" $(MP)/etc/issue 
    399         @install -m644 doc/README $(MP)/root/README 
     399        @install -m644 doc/README doc/lfscd-remastering-howto.txt $(MP)/root/README 
    400400        @sed -i "s/\[version\]/$(VERSION)/" $(MP)/root/README 
    401401        @install -m600 root/.bashrc $(MP)/root/.bashrc