1
0
mirror of git://git.2f30.org/morpheus.git synced 2024-06-25 22:28:34 +00:00
morpheus/pkgs/kernel

13 lines
213 B
Plaintext
Raw Normal View History

2013-09-17 14:43:37 +00:00
url=$mirror/bzImage
2013-09-17 14:44:59 +00:00
urlconfig=$mirror/bzImage-config
2013-09-06 08:50:29 +00:00
fetch() {
wget -c $url -O src/bzImage
2013-09-17 14:44:59 +00:00
wget -c $urlconfig -O src/bzImage-config
2013-09-06 08:50:29 +00:00
}
install() {
cp src/bzImage $root/boot
2013-09-17 14:44:59 +00:00
cp src/bzImage-config $root/boot
2013-09-06 08:50:29 +00:00
}