diff options
-rwxr-xr-x | update-archlinux32-package | 5 | ||||
-rwxr-xr-x | watch-versions | 3 |
2 files changed, 5 insertions, 3 deletions
diff --git a/update-archlinux32-package b/update-archlinux32-package index bcb2768..8c321fe 100755 --- a/update-archlinux32-package +++ b/update-archlinux32-package @@ -13,6 +13,7 @@ # flashplugin # freebasic # linux +# linux-galileo-gen2 # linux-lts # linux-olpc-xo1 (no upstream) # linux-pae (no upstream) @@ -113,7 +114,7 @@ case "${pkgname}" in # a kernel which exists upstream -> different config and checksums update_path='kernel with upstream' ;; - 'linux-olpc-xo1'|'linux-pae') + 'linux-galileo-gen2'|'linux-olpc-xo1'|'linux-pae') # a kernel which does not exist upstream -> complete package sources # in our repository update_path='kernel without upstream' @@ -294,7 +295,7 @@ case ${update_path} in update_checksum case "${pkgname}" in - 'linux-olpc-xo1'|'linux-pae') + 'linux-galileo-gen2'|'linux-olpc-xo1'|'linux-pae') config_name=$( ls "${git_repo_path}/${repo}/${pkgname}" \ | grep '^config' diff --git a/watch-versions b/watch-versions index 99eff3d..6c01f81 100755 --- a/watch-versions +++ b/watch-versions @@ -97,7 +97,8 @@ case "${pkgbase}" in *) # It might be a (slightly modified) copy of an upstream package: # Then we simply take the upstream pkgver. - if [ "${pkgbase}" = 'linux-olpc-xo1' ]; then + if [ "${pkgbase}" = 'linux-olpc-xo1' ] \ + || [ "${pkgbase}" = 'linux-galileo-gen2' ]; then _pkgbase='linux' else _pkgbase="${pkgbase}" |