blob: 5d08385f728eb67c82ff6dd0e2a044448778ee71 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
|
#!/bin/sh
# lh_source(1) - building the source images
# Source common functions
for FUNCTION in /usr/share/live-helper/functions/*.sh
do
. ${FUNCTION}
done
# Reading configuration files
Read_conffile config/common
Read_conffile config/image
Set_defaults
# Enabling network in chroot
lh_chroot_hosts install
lh_chroot_resolv install
lh_chroot_sources install
# Preparing images
lh_source_download
# Building images
lh_source_generic
lh_source_iso
lh_source_net
lh_source_usb
# Deconfiguring chroot
rm -f "${LIVE_ROOT}"/.stage/chroot_sources
lh_chroot_resolv remove
lh_chroot_hosts remove
|