summaryrefslogtreecommitdiff
path: root/check-linux-versions
diff options
context:
space:
mode:
Diffstat (limited to 'check-linux-versions')
-rwxr-xr-xcheck-linux-versions12
1 files changed, 2 insertions, 10 deletions
diff --git a/check-linux-versions b/check-linux-versions
index 7d3e6d3..38fcdcd 100755
--- a/check-linux-versions
+++ b/check-linux-versions
@@ -1,7 +1,7 @@
#!/bin/bash
for a in i486 i686 pentium4; do
- for r in core extra community testing community-testing; do
+ for r in core extra community testing community-testing staging community-staging; do
for k in '' '-lts' '-pae' '-zen'; do
kernels=$(
find /mnt/archlinux32/${a}/${r} \
@@ -21,15 +21,7 @@ for a in i486 i686 pentium4; do
| uniq -cf2 \
| grep -v '^\s*3\s'
) || continue
- echo "$a/$r/linux$k" \
- | sed '
- s@/\(community-\)\?testing/@/\1staging/@
- t
- s@/\(core\|extra\)/@/testing/@
- t
- s@/community/@/community-testing/@
- t
- '
+ echo "$a/$r/linux$k"
echo "$kernels"
echo
done