~asac/live-build/live-helper.install-kernel-with-no-initramfs

« back to all changes in this revision

Viewing changes to helpers/lh_binary_manifest

  • Committer: Daniel Baumann
  • Date: 2007-09-23 08:04:47 UTC
  • Revision ID: git-v1:f4383da69d4642521cb07f8f970d9c9c759b44ee
Tags: 1.0_a2-1
Adding live-helper 1.0~a2-1.

Show diffs side-by-side

added added

removed removed

Lines of Context:
16
16
Set_defaults
17
17
 
18
18
# Requiring stage file
19
 
Require_stagefile "${LIVE_ROOT}"/.stage/bootstrap
 
19
Require_stagefile .stage/bootstrap
20
20
 
21
21
# Checking lock file
22
 
Check_lockfile "${LIVE_ROOT}"/.lock
 
22
Check_lockfile .lock
23
23
 
24
24
# Creating lock file
25
 
Create_lockfile "${LIVE_ROOT}"/.lock
 
25
Create_lockfile .lock
26
26
 
27
27
# Checking stage file
28
 
Check_stagefile "${LIVE_ROOT}"/.stage/binary_manifest
 
28
Check_stagefile .stage/binary_manifest
29
29
 
30
30
# Add filesystem.manifest
31
 
Chroot "dpkg --get-selections" | awk '{ print $1 }' | sort -u > "${LIVE_ROOT}"/binary/casper/filesystem.manifest
 
31
Chroot "dpkg --get-selections" | awk '{ print $1 }' | sort -u > binary/casper/filesystem.manifest
 
32
 
 
33
# Add packages.list
 
34
Chroot "dpkg -l" > packages.txt
32
35
 
33
36
# Creating stage file
34
 
Create_stagefile "${LIVE_ROOT}"/.stage/binary_manifest
 
37
Create_stagefile .stage/binary_manifest