mirror of
https://gitdl.cn/https://github.com/chakralinux/core.git
synced 2025-02-10 14:14:37 +08:00
10 lines
183 B
Bash
10 lines
183 B
Bash
#!/bin/sh
|
|
|
|
post_upgrade() {
|
|
if [ "$(vercmp 0.19.20121005 "$2")" -eq 1 ]; then
|
|
echo "btrfs multi-device support now relies on linux 3.6 or later"
|
|
fi
|
|
}
|
|
|
|
# vim:set ts=2 sw=2 et:
|