| OLD | NEW | 
| (Empty) |  | 
 |   1 # This file contains the table of known operating system names. | 
 |   2 # | 
 |   3 # Architecture names are formed as a combination of the system name | 
 |   4 # (from this table) and CPU name (from cputable) after mapping from | 
 |   5 # the Debian triplet (from triplettable). | 
 |   6 # | 
 |   7 # Column 1 is the Debian name for the system, used to form the system part | 
 |   8 # in the Debian triplet. | 
 |   9 # Column 2 is the GNU name for the system, used to output build and host | 
 |  10 # targets in ‘dpkg-architecture’. | 
 |  11 # Column 3 is an extended regular expression used to match against the | 
 |  12 # system part of the output of the GNU config.guess script. | 
 |  13 # | 
 |  14 # <Debian name>         <GNU name>              <config.guess regex> | 
 |  15 uclibceabi-linux        linux-uclibceabi        linux[^-]*-uclibceabi | 
 |  16 uclibc-linux            linux-uclibc            linux[^-]*-uclibc | 
 |  17 musleabihf-linux        linux-musleabihf        linux[^-]*-musleabihf | 
 |  18 musl-linux              linux-musl              linux[^-]*-musl | 
 |  19 gnueabihf-linux         linux-gnueabihf         linux[^-]*-gnueabihf | 
 |  20 gnueabi-linux           linux-gnueabi           linux[^-]*-gnueabi | 
 |  21 gnuabin32-linux         linux-gnuabin32         linux[^-]*-gnuabin32 | 
 |  22 gnuabi64-linux          linux-gnuabi64          linux[^-]*-gnuabi64 | 
 |  23 gnuspe-linux            linux-gnuspe            linux[^-]*-gnuspe | 
 |  24 gnux32-linux            linux-gnux32            linux[^-]*-gnux32 | 
 |  25 gnulp-linux             linux-gnulp             linux[^-]*-gnulp | 
 |  26 gnu-linux               linux-gnu               linux[^-]*(-gnu.*)? | 
 |  27 gnu-kfreebsd            kfreebsd-gnu            kfreebsd[^-]*(-gnu.*)? | 
 |  28 gnu-knetbsd             knetbsd-gnu             knetbsd[^-]*(-gnu.*)? | 
 |  29 gnu-kopensolaris        kopensolaris-gnu        kopensolaris[^-]*(-gnu.*)? | 
 |  30 gnu-hurd                gnu                     gnu[^-]* | 
 |  31 bsd-darwin              darwin                  darwin[^-]* | 
 |  32 bsd-freebsd             freebsd                 freebsd[^-]* | 
 |  33 bsd-netbsd              netbsd                  netbsd[^-]* | 
 |  34 bsd-openbsd             openbsd                 openbsd[^-]* | 
 |  35 sysv-solaris            solaris                 solaris[^-]* | 
 |  36 uclibceabi-uclinux      uclinux-uclibceabi      uclinux[^-]*-uclibceabi | 
 |  37 uclibc-uclinux          uclinux-uclibc          uclinux[^-]*(-uclibc.*)? | 
 |  38 tos-mint                mint                    mint[^-]* | 
| OLD | NEW |