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 (49 lines) | stat: -rw-r--r-- 816 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
# vim: filetype=sh

target_get_name() {
    echo "Raspberry Pi board"
}

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

target_use_lvm() {
    echo false
}

target_preliminary_steps() {
    echo "I: Some operations will require CPU EMULATION - Please be patient!"
}

# 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 'rootfs' file

target_prepare_rootfs() {
    prepare_rootfs $@
}

target_cleanup_rootfs() {
    cleanup_rootfs $@
}

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

target_configure_bootloader() {
    configure_bootloader
}

target_install_bootloader() {
    install_bootloader
}