blob: 1d839a9256961306875438a90bfffd277c2d033a (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
|
#!/bin/sh
# lh_build(1) - build a Debian system
set -e
# Bootstrapping system
lh_bootstrap
# Customizing chroot
lh_chroot
# Building binary image
lh_binary
# Building source image
lh_source
|