URI:
       toverrides - arm-sdk - os build toolkit for various embedded devices
  HTML git clone https://git.parazyd.org/arm-sdk
   DIR Log
   DIR Files
   DIR Refs
   DIR Submodules
   DIR README
   DIR LICENSE
       ---
       toverrides (1377B)
       ---
            1 #!/usr/bin/env zsh
            2 # Copyright (c) 2016-2017 Dyne.org Foundation
            3 # arm-sdk is written and maintained by Ivan J. <parazyd@dyne.org>
            4 #
            5 # This file is part of arm-sdk
            6 #
            7 # This source code is free software: you can redistribute it and/or modify
            8 # it under the terms of the GNU General Public License as published by
            9 # the Free Software Foundation, either version 3 of the License, or
           10 # (at your option) any later version.
           11 #
           12 # This software is distributed in the hope that it will be useful,
           13 # but WITHOUT ANY WARRANTY; without even the implied warranty of
           14 # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
           15 # GNU General Public License for more details.
           16 #
           17 # You should have received a copy of the GNU General Public License
           18 # along with this source code. If not, see <http://www.gnu.org/licenses/>.
           19 
           20 ## overrided functions for arm-sdk
           21 
           22 conf_print_sourceslist() {
           23         fn conf_print_sourceslist
           24         req=(mirror release section)
           25         ckreq || return 1
           26 
           27         cat <<EOF
           28 ## package repositories
           29 deb ${mirror} ${release} ${section}
           30 deb ${mirror} ${release}-updates ${section}
           31 deb ${mirror} ${release}-security ${section}
           32 #deb ${mirror} ${release}-backports ${section}
           33 
           34 ## source repositories
           35 #deb-src ${mirror} ${release} ${section}
           36 #deb-src ${mirror} ${release}-updates ${section}
           37 #deb-src ${mirror} ${release}-security ${section}
           38 #deb-src ${mirror} ${release}-backports ${section}
           39 EOF
           40 }