blob: 3ea50ca06aaaa3595e6e9e4b71a9abfe607e31e4 (
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
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
|
#!/bin/bash
# Copyright 1999-2003 Gentoo Technologies, Inc.
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo/src/catalyst/targets/embedded/embedded-controller.sh,v 1.5 2005/08/09 19:02:31 rocket Exp $
. ${clst_sharedir}/targets/support/functions.sh
. ${clst_sharedir}/targets/support/filesystem-functions.sh
case $1 in
enter)
;;
build_packages)
shift
export clst_packages="$*"
exec_in_chroot ${clst_sharedir}/targets/${clst_target}/${clst_target}-chroot.sh
;;
preclean)
;;
# package)
# export root_fs_path="${clst_chroot_path}/tmp/mergeroot"
# install -d ${clst_image_path}
# ${clst_sharedir}/targets/embedded/embedded-fs-runscript.sh ${clst_embedded_fs_type} || exit 1
# imagesize=`du -sk ${clst_image_path}/root.img | cut -f1`
# echo "Created ${clst_embedded_fs_type} image at ${clst_image_path}/root.img"
# echo "Image size: ${imagesize}k"
# ;;
kernel)
shift
export clst_kname="$1"
# if we have our own linuxrc, copy it in
if [ -n "${clst_linuxrc}" ]
then
cp -a ${clst_linuxrc} ${clst_chroot_path}/tmp/linuxrc
fi
exec_in_chroot ${clst_sharedir}/targets/support/pre-kmerge.sh
exec_in_chroot ${clst_sharedir}/targets/support/kmerge.sh
delete_from_chroot tmp/linuxrc
exec_in_chroot ${clst_sharedir}/targets/support/post-kmerge.sh
;;
target_image_setup)
shift
${clst_sharedir}/targets/support/target_image_setup.sh $1
;;
livecd-update)
# now, finalize and tweak the livecd fs (inside of the chroot)
exec_in_chroot ${clst_sharedir}/targets/support/livecdfs-update.sh
;;
bootloader)
shift
# Here is where we poke in our identifier
touch $1/livecd
${clst_sharedir}/targets/support/bootloader-setup.sh $1
;;
iso)
shift
${clst_sharedir}/targets/support/create-iso.sh $1
;;
clean)
;;
*)
;;
esac
exit $?
|