Diff for /freem/scripts/_fmd_common.bash between versions 1.2 and 1.3

version 1.2, 2025/04/07 00:45:52 version 1.3, 2025/04/07 01:23:10
Line 23 Line 23
 #   along with FreeM.  If not, see <https://www.gnu.org/licenses/>.  #   along with FreeM.  If not, see <https://www.gnu.org/licenses/>.
 #  #
 #   $Log$  #   $Log$
   #   Revision 1.3  2025/04/07 01:23:10  snw
   #   Add OS detection for Raspbian
   #
 #   Revision 1.2  2025/04/07 00:45:52  snw  #   Revision 1.2  2025/04/07 00:45:52  snw
 #   Enhance fmd-pkg-dpkg to auto-generate the debian/changelog file from the FreeM ChangeLog  #   Enhance fmd-pkg-dpkg to auto-generate the debian/changelog file from the FreeM ChangeLog
 #  #
Line 179  function _fmd_os_detect() Line 182  function _fmd_os_detect()
                     export _fmd_distfamily="debian"                      export _fmd_distfamily="debian"
                     export _fmd_can_package=1                      export _fmd_can_package=1
                     export _fmd_pkg_mechanism="dpkg"                      export _fmd_pkg_mechanism="dpkg"
                       ;;
   
                   raspbian)
                       export _fmd_distribution="raspbian"
                       export _fmd_distfamily="debian"
                       export _fmd_can_package=1
                       export _fmd_pkg_mechanism="dpkg"
                     ;;                      ;;
                                   
                 ubuntu)                  ubuntu)

Removed from v.1.2  
changed lines
  Added in v.1.3


FreeBSD-CVSweb <freebsd-cvsweb@FreeBSD.org>