~asac/live-build/virtual-hdd-mtab-hack

« back to all changes in this revision

Viewing changes to helpers/lh_chroot_local-patches

  • Committer: Daniel Baumann
  • Date: 2009-11-22 13:38:00 UTC
  • Revision ID: git-v1:a62f12110b19a52a58d7eae871012202cfa16055
Renaming categories to archive areas (Closes: #519690).

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
#!/bin/sh
 
2
 
 
3
# lh_chroot_local-patches(1) - apply local patches against chroot
 
4
# Copyright (C) 2006-2009 Daniel Baumann <daniel@debian.org>
 
5
#
 
6
# live-helper comes with ABSOLUTELY NO WARRANTY; for details see COPYING.
 
7
# This is free software, and you are welcome to redistribute it
 
8
# under certain conditions; see COPYING for details.
 
9
 
 
10
set -e
 
11
 
 
12
# Including common functions
 
13
. "${LH_BASE:-/usr/share/live-helper}"/functions.sh
 
14
 
 
15
# Setting static variables
 
16
DESCRIPTION="$(Echo 'apply local patches against chroot')"
 
17
HELP=""
 
18
USAGE="${PROGRAM} [--force]"
 
19
 
 
20
Arguments "${@}"
 
21
 
 
22
# Reading configuration files
 
23
Read_conffiles config/all config/common config/bootstrap config/chroot config/binary config/source
 
24
Set_defaults
 
25
 
 
26
Echo_message "Begin applying chroot local patches..."
 
27
 
 
28
# Requiring stage file
 
29
Require_stagefile .stage/config .stage/bootstrap
 
30
 
 
31
# Checking stage file
 
32
Check_stagefile .stage/chroot_local-patches
 
33
 
 
34
# Checking lock file
 
35
Check_lockfile .lock
 
36
 
 
37
# Creating lock file
 
38
Create_lockfile .lock
 
39
 
 
40
if Find_files config/chroot_local-patches/
 
41
then
 
42
        # Restoring cache
 
43
        Restore_cache cache/packages_chroot
 
44
 
 
45
        # Checking depends
 
46
        Check_package chroot/usr/bin/patch patch
 
47
 
 
48
        # Installing depends
 
49
        Install_package
 
50
 
 
51
        for PATCH in config/chroot_local-patches/*
 
52
        do
 
53
                Echo_message "Applying patch %s..." "${PATCH}"
 
54
                Chroot chroot "patch -p1" < ${PATCH}
 
55
        done
 
56
 
 
57
        # Removing depends
 
58
        Remove_package
 
59
 
 
60
        # Saving cache
 
61
        Save_cache cache/packages_chroot
 
62
 
 
63
        # Creating stage file
 
64
        Create_stagefile .stage/chroot_local-patches
 
65
fi