summaryrefslogtreecommitdiffstats
path: root/_scripts
diff options
context:
space:
mode:
authorNatanael Copa <ncopa@alpinelinux.org>2016-05-31 19:36:59 +0200
committerNatanael Copa <ncopa@alpinelinux.org>2016-05-31 19:36:59 +0200
commitc7d3ddc985694bd3ad0f8cdafb462741023fc2fa (patch)
tree3c5ae04561e215120d07eeb871e15af68524a10d /_scripts
parentab8a9f884bb7998e6623ae924192699efb343390 (diff)
downloadalpine-mksite-c7d3ddc985694bd3ad0f8cdafb462741023fc2fa.tar.bz2
alpine-mksite-c7d3ddc985694bd3ad0f8cdafb462741023fc2fa.tar.xz
generate_releases: fix descriptions of the flavors, use dl-cdn as mirror
Diffstat (limited to '_scripts')
-rw-r--r--_scripts/generate_releases.lua15
1 files changed, 9 insertions, 6 deletions
diff --git a/_scripts/generate_releases.lua b/_scripts/generate_releases.lua
index 028996b..5ca7367 100644
--- a/_scripts/generate_releases.lua
+++ b/_scripts/generate_releases.lua
@@ -2,28 +2,31 @@
lyaml = require("lyaml")
-url_prefix="http://wiki.alpinelinux.org/cgi-bin/dl.cgi"
+url_prefix="http://dl-cdn.alpinelinux.org/alpine"
t = { flavors={} }
flavor_def = {
["alpine"] = {
title = "Standard",
- desc = "Most common used packages included. Use this for"
- .." routers and servers that run from RAM." },
- ["alpine-mini"] = {
- title = "Mini",
desc = "Only the basic packages included. Use this for disk"
.." installs from network." },
+ ["alpine-extended"] = {
+ title = "Extended",
+ desc = "Most common used packages included. Use this for"
+ .." routers and servers that run from RAM." },
["alpine-vanilla"] = {
title = "Vanilla",
desc = "Similar to 'Mini' but with a vanilla kernel. This is"
.." for troubleshooting kernel issues." },
+ ["alpine-virt"] = {
+ title = "Virtual",
+ desc = "Only basic packages included. Kernel optimized for virtual machines." },
["alpine-xen"] = {
title = "Xen",
desc = "Xen Dom0 LiveCD and Xen packages." },
["alpine-rpi"] = {
title = "Raspberry Pi",
- desc = "Build for Raspberry Pi (version 1 and 2)." },
+ desc = "Build for Raspberry Pi (version 0, 1, 2, 3)." },
["alpine-uboot"] = {
title = "Generic ARM",
desc = "General build for ARM architecture (wandboard and others)." },