Changeset 1777
- Timestamp:
- 12/10/06 03:53:17 (2 years ago)
- Location:
- branches/6.2
- Files:
-
- 1 added
- 5 modified
-
doc/README (modified) (1 diff)
-
etc/group (modified) (1 diff)
-
etc/passwd (modified) (1 diff)
-
packages/jhalfs/Makefile (modified) (2 diffs)
-
packages/jhalfs/configuration (added)
-
packages/sudo/Makefile (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
-
branches/6.2/doc/README
r1757 r1777 339 339 the computer state from the swap device. 340 340 341 AUTOMATING THE BUILD 342 =========================== 343 This CD comes with the "jhalfs" tool that allows extracting commands from the 344 XML version of LFS or CLFS book into Makefiles and shell scripts. You can find 345 the jhalfs installation in the home directory of the "jhalfs" user, and the 346 XML LFS book is in /usr/share/LFS-BOOK-6.2-XML. In order to use jhalfs, you 347 have to: 348 349 * create a directory for your future LFS system and mount a partition there 350 * change the ownership of that directory to the "jhalfs" user 351 * run "su - jhalfs" in order to become that user 352 * as user "jhalfs", follow the instructions in the jhalfs README file 353 354 Note that this user already has the required sudo access. 355 341 356 THANKS 342 357 =========================== -
branches/6.2/etc/group
r1135 r1777 19 19 sshd:x:50: 20 20 nogroup:x:99: 21 jhalfs:x:101: -
branches/6.2/etc/passwd
r1135 r1777 3 3 sshd:x:50:50:sshd:/var/lib/sshd:/bin/false 4 4 nobody:x:99:99:nobody:/dev/null:/bin/false 5 jhalfs:x:101:101:jhalfs:/home/jhalfs:/bin/bash -
branches/6.2/packages/jhalfs/Makefile
r1675 r1777 2 2 3 3 NM= jhalfs 4 VRS= 1.04 VRS= 2.1 5 5 DIR= $(NM)-$(VRS) 6 6 7 7 FILE= $(DIR).tar.bz2 8 8 URL-$(FILE)= http://www.linuxfromscratch.org/alfs/downloads/jhalfs/stable/$(FILE) 9 SHA-$(FILE)= e153315fe642b76095356cccd22ea828b688a7999 SHA-$(FILE)= 41439fb254d7a2e28d5e2e592105077ad886b4dc 10 10 11 FILE1= configuration 11 12 # Targets 12 13 … … 17 18 'cd $(ROOT) && make ch-$(NM) $(chbash-post-bash)' 18 19 19 stage2: Makefile $(FILE) 20 $(std_build) 21 22 compile-stage2: 23 cp -av . /root/$(DIR) 20 stage2: Makefile $(FILE) $(FILE1) 21 @$(call echo_message, Building) 22 mkdir -p /home/jhalfs 23 cp -v $(ROOT)/root/.bashrc /home/jhalfs/.bashrc 24 cd /home/jhalfs ; unpack $(SRC)/$(FILE) 25 cp -v $(FILE1) /home/jhalfs/$(DIR) 26 chown -R jhalfs:jhalfs /home/jhalfs 27 @touch $@ 24 28 25 29 clean: -
branches/6.2/packages/sudo/Makefile
r1475 r1777 30 30 --enable-shell-sets-home 31 31 make 32 rm -f /etc/sudoers 33 echo 'jhalfs ALL=(ALL) NOPASSWD:ALL' >>sudoers 32 34 env -i PATH=$$PATH make install 33 35
