blob: 592c2283f14f2cd82847f46496cecf07cbc4c75d (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
|
#!/bin/sh -e
# desc: test triggers in kernel package
$APK add --root $ROOT --initdb -U --repository $PWD/repo1 \
--repository $SYSREPO alpine-keys linux-vanilla
test -e "$ROOT"/boot/vmlinuz-vanilla
test -e "$ROOT"/boot/initramfs-vanilla
|