blob: 52a3e64c8954e23941d5797fa5b8b35fe2d75dd7 (
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
|
README="$(cat << EOF
===============================================================================
This package can be customized to use other than vanilla mainline if it's
locally compiled by the user.
These are the instructions to apply the customization to the next linux-git
package compilation:
* How to customize the git remote / branch:
Please consult and edit the file /etc/linux-git/remote
* How to add user-customized config options:
Please consult and edit the file /etc/linux-git/config
* How to add extra patches on top of the selected remote / branch:
Please consult and edit the file /etc/linux-git/patches/patches
===============================================================================
EOF
)"
post_install() {
echo "${README}"
}
post_upgrade() {
echo "${README}"
}
|