File: entrypoints

package info (click to toggle)
debootstick 2.8
  • links: PTS, VCS
  • area: main
  • in suites: bookworm, forky, sid, trixie
  • size: 296 kB
  • sloc: sh: 1,364; makefile: 34
file content (51 lines) | stat: -rw-r--r-- 778 bytes parent folder | download | duplicates (2)
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
# vim: filetype=sh

target_get_name() {
    echo "$(get_target_cpu "$ORIG_TREE") PC"
}

target_use_lvm() {
    echo true
}

target_get_vg_rename_command() {
    echo grub_vg_rename
}

# for details about the following functions
# see 'packages' file

target_kernel_default_package() {
    kernel_default_package
}

target_custom_packages() {
    custom_packages
}

# for details about the following functions
# see 'grub' file

target_configure_bootloader() {
    configure_bootloader
}

target_install_bootloader() {
    install_bootloader
}

target_get_bootloader_install_command() {
    echo grub-install
}

# for details about the following functions
# see 'rootfs' file

target_prepare_rootfs() {
    prepare_rootfs $@
}

target_cleanup_rootfs() {
    cleanup_rootfs $@
}