#
# Copyright (C) 2006-2012 OpenWrt.org
# Copyright (C) 2016 LEDE project
#
# This is free software, licensed under the GNU General Public License v2.
# See /LICENSE for more information.
#

PROJECT_GIT = https://git.openwrt.org

OPENWRT_GIT = $(PROJECT_GIT)
LEDE_GIT = $(PROJECT_GIT)

ifdef PKG_SOURCE_VERSION
PKG_VERSION ?= $(if $(PKG_SOURCE_DATE),$(PKG_SOURCE_DATE)-)$(call version_abbrev,$(PKG_SOURCE_VERSION))
PKG_SOURCE_SUBDIR ?= $(PKG_NAME)-$(PKG_VERSION)
PKG_SOURCE ?= $(PKG_SOURCE_SUBDIR).tar.xz
endif

DOWNLOAD_RDEP=$(STAMP_PREPARED) $(HOST_STAMP_PREPARED)

define dl_method_git
$(if $(filter https://github.com/% git://github.com/%,$(1)),github_archive,git)
endef

# Try to guess the download method from the URL
define dl_method
$(strip \
  $(if $(filter git,$(2)),$(call dl_method_git,$(1),$(2)),
    $(if $(2),$(2), \
      $(if $(filter @APACHE/% @GITHUB/% @GNOME/% @GNU/% @KERNEL/% @SF/% @SAVANNAH/% ftp://% http://% https://% file://%,$(1)),default, \
        $(if $(filter git://%,$(1)),$(call dl_method_git,$(1),$(2)), \
          $(if $(filter svn://%,$(1)),svn, \
            $(if $(filter cvs://%,$(1)),cvs, \
              $(if $(filter hg://%,$(1)),hg, \
                $(if $(filter sftp://%,$(1)),bzr, \
                  unknown \
                ) \
              ) \
            ) \
          ) \
        ) \
      ) \
    ) \
  ) \
)
endef

# code for creating tarballs from cvs/svn/git/bzr/hg/darcs checkouts - useful for mirror support
dl_pack/bz2=bzip2 -c > $(1)
dl_pack/gz=gzip -nc > $(1)
dl_pack/xz=xz -zc -7e > $(1)
dl_pack/unknown=$(error ERROR: Unknown pack format for file $(1))
define dl_pack
	$(if $(dl_pack/$(call ext,$(1))),$(dl_pack/$(call ext,$(1))),$(dl_pack/unknown))
endef
define dl_tar_pack
	$(TAR) --numeric-owner --owner=0 --group=0 --mode=a-s --sort=name \
		$$$${TAR_TIMESTAMP:+--mtime="$$$$TAR_TIMESTAMP"} -c $(2) | $(call dl_pack,$(1))
endef

ifdef CHECK
check_escape=$(subst ','\'',$(1))
#')

# $(1): suffix of the F_, C_ variables, e.g. hash_deprecated, hash_mismatch, etc.
# $(2): filename
# $(3): expected hash value
# $(4): var name of the the form: {PKG_,Download/<name>:}{,MIRROR_}{HASH,MIRROR_HASH}
check_warn_nofix = $(info $(shell printf "$(_R)WARNING: %s$(_N)" '$(call check_escape,$(call C_$(1),$(2),$(3),$(4)))'))
ifndef FIXUP
  check_warn = $(check_warn_nofix)
else
  check_warn = $(if $(filter-out undefined,$(origin F_$(1))),$(filter ,$(shell $(call F_$(1),$(2),$(3),$(4)) >&2)),$(check_warn_nofix))
endif

gen_sha256sum = $(shell mkhash sha256 $(DL_DIR)/$(1))

ifdef FIXUP
F_hash_deprecated = $(SCRIPT_DIR)/fixup-makefile.pl $(CURDIR)/Makefile fix-hash $(3) $(call gen_sha256sum,$(1)) $(2)
F_hash_mismatch = $(F_hash_deprecated)
F_hash_missing = $(SCRIPT_DIR)/fixup-makefile.pl $(CURDIR)/Makefile add-hash $(3) $(call gen_sha256sum,$(1))
endif

# $(1): filename
# $(2): expected hash value
# $(3): var name of the the form: {PKG_,Download/<name>:}{,MIRROR_}{HASH,MIRROR_HASH}
C_download_missing = $(1) is missing, please run make download before re-running this check
C_hash_mismatch = $(3) does not match $(1) hash $(call gen_sha256sum,$(1))
C_hash_deprecated = $(3) uses deprecated hash, set to $(call gen_sha256sum,$(1))
C_hash_missing = $(3) is missing, set to $(call gen_sha256sum,$(1))

# $(1): filename
# $(2): expected hash value
# $(3): var name of the the form: {PKG_,Download/<name>:}{,MIRROR_}{HASH,MIRROR_HASH}
check_hash = \
  $(if $(wildcard $(DL_DIR)/$(1)), \
    $(if $(filter-out x,$(2)), \
      $(if $(filter 64,$(shell printf '%s' '$(2)' | wc -c)), \
        $(if $(filter $(2),$(call gen_sha256sum,$(1))),, \
          $(call check_warn,hash_mismatch,$(1),$(2),$(3)) \
        ), \
        $(call check_warn,hash_deprecated,$(1),$(2),$(3)), \
      ), \
      $(call check_warn,hash_missing,$(1),$(2),$(3)) \
    ), \
    $(call check_warn,download_missing,$(1),$(2),$(3)) \
  )

ifdef FIXUP
F_md5_deprecated = $(SCRIPT_DIR)/fixup-makefile.pl $(CURDIR)/Makefile rename-var $(2) $(3)
endif

C_md5_deprecated = Use of $(2) is deprecated, switch to $(3)

check_md5 = \
  $(if $(filter-out x,$(1)), \
    $(call check_warn,md5_deprecated,$(1),$(2),$(3)) \
  )

hash_var = $(if $(filter-out x,$(1)),MD5SUM,HASH)
endif

define DownloadMethod/unknown
	echo "ERROR: No download method available"; false
endef

define DownloadMethod/default
	$(SCRIPT_DIR)/download.pl "$(DL_DIR)" "$(FILE)" "$(HASH)" "$(URL_FILE)" $(foreach url,$(URL),"$(url)") \
	$(if $(filter check,$(1)), \
		$(call check_hash,$(FILE),$(HASH),$(2)$(call hash_var,$(MD5SUM))) \
		$(call check_md5,$(MD5SUM),$(2)MD5SUM,$(2)HASH) \
	)
endef

# $(1): "check"
# $(2): "PKG_" if <name> as in Download/<name> is "default", otherwise "Download/<name>:"
# $(3): shell command sequence to do the download
define wrap_mirror
$(if $(if $(MIRROR),$(filter-out x,$(MIRROR_HASH))),$(SCRIPT_DIR)/download.pl "$(DL_DIR)" "$(FILE)" "$(MIRROR_HASH)" "" || ( $(3) ),$(3)) \
$(if $(filter check,$(1)), \
	$(call check_hash,$(FILE),$(MIRROR_HASH),$(2)MIRROR_$(call hash_var,$(MIRROR_MD5SUM))) \
	$(call check_md5,$(MIRROR_MD5SUM),$(2)MIRROR_MD5SUM,$(2)MIRROR_HASH) \
)
endef

define DownloadMethod/cvs
	$(call wrap_mirror,$(1),$(2), \
		echo "Checking out files from the cvs repository..."; \
		mkdir -p $(TMP_DIR)/dl && \
		cd $(TMP_DIR)/dl && \
		rm -rf $(SUBDIR) && \
		[ \! -d $(SUBDIR) ] && \
		cvs -d $(URL) export $(VERSION) $(SUBDIR) && \
		echo "Packing checkout..." && \
		$(call dl_tar_pack,$(TMP_DIR)/dl/$(FILE),$(SUBDIR)) && \
		mv $(TMP_DIR)/dl/$(FILE) $(DL_DIR)/ && \
		rm -rf $(SUBDIR); \
	)
endef

define DownloadMethod/svn
	$(call wrap_mirror,$(1),$(2), \
		echo "Checking out files from the svn repository..."; \
		mkdir -p $(TMP_DIR)/dl && \
		cd $(TMP_DIR)/dl && \
		rm -rf $(SUBDIR) && \
		[ \! -d $(SUBDIR) ] && \
		( svn help export | grep -q trust-server-cert && \
		svn export --non-interactive --trust-server-cert -r$(VERSION) $(URL) $(SUBDIR) || \
		svn export --non-interactive -r$(VERSION) $(URL) $(SUBDIR) ) && \
		echo "Packing checkout..." && \
		export TAR_TIMESTAMP="" && \
		$(call dl_tar_pack,$(TMP_DIR)/dl/$(FILE),$(SUBDIR)) && \
		mv $(TMP_DIR)/dl/$(FILE) $(DL_DIR)/ && \
		rm -rf $(SUBDIR); \
	)
endef

define DownloadMethod/git
	$(call wrap_mirror,$(1),$(2), \
		$(call DownloadMethod/rawgit) \
	)
endef

define DownloadMethod/github_archive
	$(call wrap_mirror,$(1),$(2), \
		$(SCRIPT_DIR)/dl_github_archive.py \
			--dl-dir="$(DL_DIR)" \
			--url="$(URL)" \
			--version="$(VERSION)" \
			--subdir="$(SUBDIR)" \
			--source="$(FILE)" \
			--hash="$(MIRROR_HASH)" \
		|| ( $(call DownloadMethod/rawgit) ); \
	)
endef

# Only intends to be called as a submethod from other DownloadMethod
define DownloadMethod/rawgit
	echo "Checking out files from the git repository..."; \
	mkdir -p $(TMP_DIR)/dl && \
	cd $(TMP_DIR)/dl && \
	rm -rf $(SUBDIR) && \
	[ \! -d $(SUBDIR) ] && \
	git clone $(OPTS) $(URL) $(SUBDIR) && \
	(cd $(SUBDIR) && git checkout $(VERSION) && \
	git submodule update --init --recursive) && \
	echo "Packing checkout..." && \
	export TAR_TIMESTAMP=`cd $(SUBDIR) && git log -1 --format='@%ct'` && \
	rm -rf $(SUBDIR)/.git && \
	$(call dl_tar_pack,$(TMP_DIR)/dl/$(FILE),$(SUBDIR)) && \
	mv $(TMP_DIR)/dl/$(FILE) $(DL_DIR)/ && \
	rm -rf $(SUBDIR);
endef

define DownloadMethod/bzr
	$(call wrap_mirror,$(1),$(2), \
		echo "Checking out files from the bzr repository..."; \
		mkdir -p $(TMP_DIR)/dl && \
		cd $(TMP_DIR)/dl && \
		rm -rf $(SUBDIR) && \
		[ \! -d $(SUBDIR) ] && \
		bzr export --per-file-timestamps -r$(VERSION) $(SUBDIR) $(URL) && \
		echo "Packing checkout..." && \
		export TAR_TIMESTAMP="" && \
		$(call dl_tar_pack,$(TMP_DIR)/dl/$(FILE),$(SUBDIR)) && \
		mv $(TMP_DIR)/dl/$(FILE) $(DL_DIR)/ && \
		rm -rf $(SUBDIR); \
	)
endef

define DownloadMethod/hg
	$(call wrap_mirror,$(1),$(2), \
		echo "Checking out files from the hg repository..."; \
		mkdir -p $(TMP_DIR)/dl && \
		cd $(TMP_DIR)/dl && \
		rm -rf $(SUBDIR) && \<style>pre { line-height: 125%; margin: 0; }
td.linenos pre { color: #000000; background-color: #f0f0f0; padding: 0 5px 0 5px; }
span.linenos { color: #000000; background-color: #f0f0f0; padding: 0 5px 0 5px; }
td.linenos pre.special { color: #000000; background-color: #ffffc0; padding: 0 5px 0 5px; }
span.linenos.special { color: #000000; background-color: #ffffc0; padding: 0 5px 0 5px; }
.highlight .hll { background-color: #ffffcc }
.highlight { background: #ffffff; }
.highlight .c { color: #888888 } /* Comment */
.highlight .err { color: #a61717; background-color: #e3d2d2 } /* Error */
.highlight .k { color: #008800; font-weight: bold } /* Keyword */
.highlight .ch { color: #888888 } /* Comment.Hashbang */
.highlight .cm { color: #888888 } /* Comment.Multiline */
.highlight .cp { color: #cc0000; font-weight: bold } /* Comment.Preproc */
.highlight .cpf { color: #888888 } /* Comment.PreprocFile */
.highlight .c1 { color: #888888 } /* Comment.Single */
.highlight .cs { color: #cc0000; font-weight: bold; background-color: #fff0f0 } /* Comment.Special */
.highlight .gd { color: #000000; background-color: #ffdddd } /* Generic.Deleted */
.highlight .ge { font-style: italic } /* Generic.Emph */
.highlight .gr { color: #aa0000 } /* Generic.Error */
.highlight .gh { color: #333333 } /* Generic.Heading */
.highlight .gi { color: #000000; background-color: #ddffdd } /* Generic.Inserted */
.highlight .go { color: #888888 } /* Generic.Output */
.highlight .gp { color: #555555 } /* Generic.Prompt */
.highlight .gs { font-weight: bold } /* Generic.Strong */
.highlight .gu { color: #666666 } /* Generic.Subheading */
.highlight .gt { color: #aa0000 } /* Generic.Traceback */
.highlight .kc { color: #008800; font-weight: bold } /* Keyword.Constant */
.highlight .kd { color: #008800; font-weight: bold } /* Keyword.Declaration */
.highlight .kn { color: #008800; font-weight: bold } /* Keyword.Namespace */
.highlight .kp { color: #008800 } /* Keyword.Pseudo */
.highlight .kr { color: #008800; font-weight: bold } /* Keyword.Reserved */
.highlight .kt { color: #888888; font-weight: bold } /* Keyword.Type */
.highlight .m { color: #0000DD; font-weight: bold } /* Literal.Number */
.highlight .s { color: #dd2200; background-color: #fff0f0 } /* Literal.String */
.highlight .na { color: #336699 } /* Name.Attribute */
.highlight .nb { color: #003388 } /* Name.Builtin */
.highlight .nc { color: #bb0066; font-weight: bold } /* Name.Class */
.highlight .no { color: #003366; font-weight: bold } /* Name.Constant */
.highlight .nd { color: #555555 } /* Name.Decorator */
.highlight .ne { color: #bb0066; font-weight: bold } /* Name.Exception */
.highlight .nf { color: #0066bb; font-weight: bold } /* Name.Function */
.highlight .nl { color: #336699; font-style: italic } /* Name.Label */
.highlight .nn { color: #bb0066; font-weight: bold } /* Name.Namespace */
.highlight .py { color: #336699; font-weight: bold } /* Name.Property */
.highlight .nt { color: #bb0066; font-weight: bold } /* Name.Tag */
.highlight .nv { color: #336699 } /* Name.Variable */
.highlight .ow { color: #008800 } /* Operator.Word */
.highlight .w { color: #bbbbbb } /* Text.Whitespace */
.highlight .mb { color: #0000DD; font-weight: bold } /* Literal.Number.Bin */
.highlight .mf { color: #0000DD; font-weight: bold } /* Literal.Number.Float */
.highlight .mh { color: #0000DD; font-weight: bold } /* Literal.Number.Hex */
.highlight .mi { color: #0000DD; font-weight: bold } /* Literal.Number.Integer */
.highlight .mo { color: #0000DD; font-weight: bold } /* Literal.Number.Oct */
.highlight .sa { color: #dd2200; background-color: #fff0f0 } /* Literal.String.Affix */
.highlight .sb { color: #dd2200; background-color: #fff0f0 } /* Literal.String.Backtick */
.highlight .sc { color: #dd2200; background-color: #fff0f0 } /* Literal.String.Char */
.highlight .dl { color: #dd2200; background-color: #fff0f0 } /* Literal.String.Delimiter */
.highlight .sd { color: #dd2200; background-color: #fff0f0 } /* Literal.String.Doc */
.highlight .s2 { color: #dd2200; background-color: #fff0f0 } /* Literal.String.Double */
.highlight .se { color: #0044dd; background-color: #fff0f0 } /* Literal.String.Escape */
.highlight .sh { color: #dd2200; background-color: #fff0f0 } /* Literal.String.Heredoc */
.highlight .si { color: #3333bb; background-color: #fff0f0 } /* Literal.String.Interpol */
.highlight .sx { color: #22bb22; background-color: #f0fff0 } /* Literal.String.Other */
.highlight .sr { color: #008800; background-color: #fff0ff } /* Literal.String.Regex */
.highlight .s1 { color: #dd2200; background-color: #fff0f0 } /* Literal.String.Single */
.highlight .ss { color: #aa6600; background-color: #fff0f0 } /* Literal.String.Symbol */
.highlight .bp { color: #003388 } /* Name.Builtin.Pseudo */
.highlight .fm { color: #0066bb; font-weight: bold } /* Name.Function.Magic */
.highlight .vc { color: #336699 } /* Name.Variable.Class */
.highlight .vg { color: #dd7700 } /* Name.Variable.Global */
.highlight .vi { color: #3333bb } /* Name.Variable.Instance */
.highlight .vm { color: #336699 } /* Name.Variable.Magic */
.highlight .il { color: #0000DD; font-weight: bold } /* Literal.Number.Integer.Long */</style><div class="highlight"><pre><span></span><span class="cp">/dts-v1/</span><span class="p">;</span>

<span class="cp">/include/</span><span class="cm"> </span><span class="cpf">&quot;rt3050.dtsi&quot;</span>

<span class="nf">/</span><span class="cm"> </span><span class="p">{</span>
	<span class="kr">compatible</span> <span class="o">=</span> <span class="s">&quot;3G300M&quot;</span><span class="p">,</span> <span class="s">&quot;ralink,rt3050-soc&quot;</span><span class="p">;</span>
	<span class="kr">model</span> <span class="o">=</span> <span class="s">&quot;Tenda 3G300M&quot;</span><span class="p">;</span>

	<span class="nf">memorydetect</span><span class="cm"> </span><span class="p">{</span>
		<span class="n">ralink</span><span class="p">,</span><span class="n">memory</span> <span class="o">=</span> <span class="o">&lt;</span><span class="mh">0x0</span> <span class="mh">0x200000</span> <span class="mh">0x4000000</span><span class="o">&gt;</span><span class="p">;</span>
	<span class="p">};</span>

	<span class="nf">chosen</span><span class="cm"> </span><span class="p">{</span>
		<span class="n">bootargs</span> <span class="o">=</span> <span class="s">&quot;console=ttyS0,57600 mtdparts=1f000000.cfi:192k(u-boot)ro,64k(u-boot-env)ro,64k(factory)ro,3872k@0x50000(firmware)&quot;</span><span class="p">;</span>
	<span class="p">};</span>

	<span class="nf">palmbus</span><span class="o">@</span><span class="mi">10000000</span><span class="cm"> </span><span class="p">{</span>
		<span class="nf">sysc</span><span class="o">@</span><span class="mi">0</span><span class="cm"> </span><span class="p">{</span>
			<span class="n">ralink</span><span class="p">,</span><span class="n">pinmux</span> <span class="o">=</span> <span class="s">&quot;i2c&quot;</span><span class="p">,</span> <span class="s">&quot;spi&quot;</span><span class="p">,</span> <span class="s">&quot;uartlite&quot;</span><span class="p">,</span> <span class="s">&quot;mdio&quot;</span><span class="p">,</span> <span class="s">&quot;sdram&quot;</span><span class="p">,</span> <span class="s">&quot;rgmii&quot;</span><span class="p">,</span> <span class="s">&quot;jtag&quot;</span><span class="p">;</span>
			<span class="n">ralink</span><span class="p">,</span><span class="n">uartmux</span> <span class="o">=</span> <span class="s">&quot;gpio&quot;</span><span class="p">;</span>
			<span class="n">ralink</span><span class="p">,</span><span class="n">wdtmux</span> <span class="o">=</span> <span class="o">&lt;</span><span class="mi">1</span><span class="o">&gt;</span><span class="p">;</span>
		<span class="p">};</span>

		<span class="nl">gpio0</span><span class="p">:</span> <span class="nf">gpio</span><span class="o">@</span><span class="mi">600</span><span class="cm"> </span><span class="p">{</span>
			<span class="kr">status</span> <span class="o">=</span> <span class="s">&quot;okay&quot;</span><span class="p">;</span>
		<span class="p">};</span>
	<span class="p">};</span>

	<span class="nf">cfi</span><span class="o">@</span><span class="mi">1f000000</span><span class="cm"> </span><span class="p">{</span>
		<span class="kr">compatible</span> <span class="o">=</span> <span class="s">&quot;cfi-flash&quot;</span><span class="p">;</span>
		<span class="kr">reg</span> <span class="o">=</span> <span class="o">&lt;</span><span class="mh">0x1f000000</span> <span class="mh">0x800000</span><span class="o">&gt;</span><span class="p">;</span>

		<span class="n">bank-width</span> <span class="o">=</span> <span class="o">&lt;</span><span class="mi">2</span><span class="o">&gt;</span><span class="p">;</span>
		<span class="n">device-width</span> <span class="o">=</span> <span class="o">&lt;</span><span class="mi">2</span><span class="o">&gt;</span><span class="p">;</span>
		<span class="kr">#address-cells</span> <span class="o">=</span> <span class="o">&lt;</span><span class="mi">1</span><span class="o">&gt;</span><span class="p">;</span>
		<span class="kr">#size-cells</span> <span class="o">=</span> <span class="o">&lt;</span><span class="mi">1</span><span class="o">&gt;</span><span class="p">;</span>

		<span class="nf">partition</span><span class="o">@</span><span class="mi">0</span><span class="cm"> </span><span class="p">{</span>
			<span class="n">label</span> <span class="o">=</span> <span class="s">&quot;u-boot&quot;</span><span class="p">;</span>
			<span class="kr">reg</span> <span class="o">=</span> <span class="o">&lt;</span><span class="mh">0x0</span> <span class="mh">0x30000</span><span class="o">&gt;</span><span class="p">;</span>
			<span class="n">read-only</span><span class="p">;</span>
		<span class="p">};</span>

		<span class="nf">partition</span><span class="o">@</span><span class="mi">30000</span><span class="cm"> </span><span class="p">{</span>
			<span class="n">label</span> <span class="o">=</span> <span class="s">&quot;u-boot-env&quot;</span><span class="p">;</span>
			<span class="kr">reg</span> <span class="o">=</span> <span class="o">&lt;</span><span class="mh">0x30000</span> <span class="mh">0x10000</span><span class="o">&gt;</span><span class="p">;</span>
			<span class="n">read-only</span><span class="p">;</span>
		<span class="p">};</span>

		<span class="nl">factory</span><span class="p">:</span> <span class="nf">partition</span><span class="o">@</span><span class="mi">40000</span><span class="cm"> </span><span class="p">{</span>
			<span class="n">label</span> <span class="o">=</span> <span class="s">&quot;factory&quot;</span><span class="p">;</span>
			<span class="kr">reg</span> <span class="o">=</span> <span class="o">&lt;</span><span class="mh">0x40000</span> <span class="mh">0x10000</span><span class="o">&gt;</span><span class="p">;</span>
			<span class="n">read-only</span><span class="p">;</span>
		<span class="p">};</span>

		<span class="nf">partition</span><span class="o">@</span><span class="mi">50000</span><span class="cm"> </span><span class="p">{</span>
			<span class="n">label</span> <span class="o">=</span> <span class="s">&quot;firmware&quot;</span><span class="p">;</span>
			<span class="kr">reg</span> <span class="o">=</span> <span class="o">&lt;</span><span class="mh">0x50000</span> <span class="mh">0x3c8000</span><span class="o">&gt;</span><span class="p">;</span>
		<span class="p">};</span>
	<span class="p">};</span>

	<span class="nf">gpio-leds</span><span class="cm"> </span><span class="p">{</span>
		<span class="kr">compatible</span> <span class="o">=</span> <span class="s">&quot;gpio-leds&quot;</span><span class="p">;</span>
		<span class="nf">3grouter</span><span class="cm"> </span><span class="p">{</span>
			<span class="n">label</span> <span class="o">=</span> <span class="s">&quot;tenda:blue:3grouter&quot;</span><span class="p">;</span>
			<span class="n">gpios</span> <span class="o">=</span> <span class="o">&lt;&amp;</span><span class="na">gpio0</span> <span class="mi">11</span> <span class="mi">1</span><span class="o">&gt;</span><span class="p">;</span>
		<span class="p">};</span>
		<span class="nf">ap</span><span class="cm"> </span><span class="p">{</span>
			<span class="n">label</span> <span class="o">=</span> <span class="s">&quot;tenda:blue:ap&quot;</span><span class="p">;</span>
			<span class="n">gpios</span> <span class="o">=</span> <span class="o">&lt;&amp;</span><span class="na">gpio0</span> <span class="mi">12</span> <span class="mi">1</span><span class="o">&gt;</span><span class="p">;</span>
		<span class="p">};</span>
		<span class="nf">wisprouter</span><span class="cm"> </span><span class="p">{</span>
			<span class="n">label</span> <span class="o">=</span> <span class="s">&quot;tenda:blue:wisprouter&quot;</span><span class="p">;</span>
			<span class="n">gpios</span> <span class="o">=</span> <span class="o">&lt;&amp;</span><span class="na">gpio0</span> <span class="mi">9</span> <span class="mi">1</span><span class="o">&gt;</span><span class="p">;</span>
		<span class="p">};</span>
		<span class="nf">wirelessrouter</span><span class="cm"> </span><span class="p">{</span>
			<span class="n">label</span> <span class="o">=</span> <span class="s">&quot;tenda:blue:wirelessrouter&quot;</span><span class="p">;</span>
			<span class="n">gpios</span> <span class="o">=</span> <span class="o">&lt;&amp;</span><span class="na">gpio0</span> <span class="mi">13</span> <span class="mi">1</span><span class="o">&gt;</span><span class="p">;</span>
		<span class="p">};</span>
		<span class="nf">3g</span><span class="cm"> </span><span class="p">{</span>
			<span class="n">label</span> <span class="o">=</span> <span class="s">&quot;tenda:blue:3g&quot;</span><span class="p">;</span>
			<span class="n">gpios</span> <span class="o">=</span> <span class="o">&lt;&amp;</span><span class="na">gpio0</span> <span class="mi">7</span> <span class="mi">1</span><span class="o">&gt;</span><span class="p">;</span>
		<span class="p">};</span>
		<span class="nf">wpsreset</span><span class="cm"> </span><span class="p">{</span>
			<span class="n">label</span> <span class="o">=</span> <span class="s">&quot;tenda:blue:wpsreset&quot;</span><span class="p">;</span>
			<span class="n">gpios</span> <span class="o">=</span> <span class="o">&lt;&amp;</span><span class="na">gpio0</span> <span class="mi">14</span> <span class="mi">1</span><span class="o">&gt;</span><span class="p">;</span>
		<span class="p">};</span>
	<span class="p">};</span>

	<span class="nf">gpio-keys-polled</span><span class="cm"> </span><span class="p">{</span>
		<span class="kr">compatible</span> <span class="o">=</span> <span class="s">&quot;gpio-keys-polled&quot;</span><span class="p">;</span>
		<span class="kr">#address-cells</span> <span class="o">=</span> <span class="o">&lt;</span><span class="mi">1</span><span class="o">&gt;</span><span class="p">;</span>
		<span class="kr">#size-cells</span> <span class="o">=</span> <span class="o">&lt;</span><span class="mi">0</span><span class="o">&gt;</span><span class="p">;</span>
		<span class="n">poll-interval</span> <span class="o">=</span> <span class="o">&lt;</span><span class="mi">20</span><span class="o">&gt;</span><span class="p">;</span>
		<span class="nf">reset</span><span class="cm"> </span><span class="p">{</span>
			<span class="n">label</span> <span class="o">=</span> <span class="s">&quot;reset&quot;</span><span class="p">;</span>
			<span class="n">gpios</span> <span class="o">=</span> <span class="o">&lt;&amp;</span><span class="na">gpio0</span> <span class="mi">0</span> <span class="mi">1</span><span class="o">&gt;</span><span class="p">;</span>
			<span class="n">linux</span><span class="p">,</span><span class="n">code</span> <span class="o">=</span> <span class="o">&lt;</span><span class="mh">0x198</span><span class="o">&gt;</span><span class="p">;</span>
		<span class="p">};</span>
		<span class="nf">mode</span><span class="cm"> </span><span class="p">{</span>
			<span class="n">label</span> <span class="o">=</span> <span class="s">&quot;mode&quot;</span><span class="p">;</span>
			<span class="n">gpios</span> <span class="o">=</span> <span class="o">&lt;&amp;</span><span class="na">gpio0</span> <span class="mi">10</span> <span class="mi">1</span><span class="o">&gt;</span><span class="p">;</span>
			<span class="n">linux</span><span class="p">,</span><span class="n">code</span> <span class="o">=</span> <span class="o">&lt;</span><span class="mh">0x100</span><span class="o">&gt;</span><span class="p">;</span>
		<span class="p">};</span>
	<span class="p">};</span>

	<span class="nf">ethernet</span><span class="o">@</span><span class="mi">10100000</span><span class="cm"> </span><span class="p">{</span>
		<span class="kr">status</span> <span class="o">=</span> <span class="s">&quot;okay&quot;</span><span class="p">;</span>
	<span class="p">};</span>

	<span class="nf">esw</span><span class="o">@</span><span class="mi">10110000</span><span class="cm"> </span><span class="p">{</span>
		<span class="kr">status</span> <span class="o">=</span> <span class="s">&quot;okay&quot;</span><span class="p">;</span>
		<span class="n">ralink</span><span class="p">,</span><span class="n">portmap</span> <span class="o">=</span> <span class="o">&lt;</span><span class="mh">0x2f</span><span class="o">&gt;</span><span class="p">;</span>
	<span class="p">};</span>

	<span class="nf">wmac</span><span class="o">@</span><span class="mi">10180000</span><span class="cm"> </span><span class="p">{</span>
		<span class="kr">status</span> <span class="o">=</span> <span class="s">&quot;okay&quot;</span><span class="p">;</span>
	<span class="p">};</span>
<span class="p">};</span>
</pre></div>
</code></pre></td></tr></table>
</div> <!-- class=content -->
<div class='footer'>generated by <a href='https://git.zx2c4.com/cgit/about/'>cgit v1.2.3</a> (<a href='https://git-scm.com/'>git 2.25.1</a>) at 2025-03-10 08:14:43 +0000</div>
</div> <!-- id=cgit -->
</body>
</html>