aboutsummaryrefslogtreecommitdiffstats
path: root/feeds.conf.default
Commit message (Expand)AuthorAgeFilesLines
* Add xorg feed to feeds.conf.defaultMichael Büsch2011-11-161-0/+1
* [feeds] switch to LuCI trunk, should be stable enough for common use nowJo-Philipp Wich2010-11-161-1/+1
* Add lxde feed to feeds.conf.defaultLars-Peter Clausen2010-08-121-0/+1
* [packages] add a src-link example to feeds.conf.defaultJo-Philipp Wich2009-12-131-0/+1
* [feeds] switch back to LuCI main repoJo-Philipp Wich2009-11-071-1/+1
* [feeds] LuCI main repo is down due to server crash, switch to repo mirrorJo-Philipp Wich2009-11-041-1/+1
* [feeds] switch to LuCI 0.9.x branchJo-Philipp Wich2009-06-101-1/+1
* feeds.conf.default: Change openwrt feeds urls from https to svnAndy Boyett2009-04-011-5/+5
* Add desktop and xfce feed to feeds.conf.defaultLars-Peter Clausen2009-01-191-0/+2
* move <efl> (Enlightenment Foundation Libraries) and bindings into own feed <f...Mirko Vogt2009-01-171-0/+1
* move <packages/phone> into own feed <feeds/phone> and add entry to <feeds.con...Mirko Vogt2009-01-171-0/+1
* Switched LuCI-SVN to another serverSteven Barth2008-10-161-1/+1
* feeds: Switched to LuCI stable branchSteven Barth2008-09-061-1/+1
* rename feeds.conf to feeds.conf.default, make feeds.conf override feeds.conf....Felix Fietkau2008-08-171-0/+3
-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 */
# 
# Copyright (C) 2006 OpenWrt.org
#
# This is free software, licensed under the GNU General Public License v2.
# See /LICENSE for more information.
#

ifeq ($(NO_TRACE_MAKE),)
NO_TRACE_MAKE := $(MAKE) V=99
export NO_TRACE_MAKE
endif

ifndef KBUILD_VERBOSE
  KBUILD_VERBOSE:=0
endif
ifeq ("$(origin V)", "command line")
  KBUILD_VERBOSE:=$(V)
endif

ifeq ($(IS_TTY),1)
  ifneq ($(strip $(NO_COLOR)),1)
    _Y:=\\033[33m
    _N:=\\033[m
  endif
endif

ifneq ($(KBUILD_VERBOSE),99)
  define MESSAGE
	printf "$(_Y)%s$(_N)\n" "$(1)" >&8
  endef

  ifeq ($(QUIET),1)
    ifneq ($(CURDIR),$(TOPDIR))
      _DIR:=$(patsubst $(TOPDIR)/%,%,${CURDIR})
    else
      _DIR:=
    endif
    _NULL:=$(if $(MAKECMDGOALS),$(shell \
		$(call MESSAGE, make[$(MAKELEVEL)]$(if $(_DIR), -C $(_DIR)) $(MAKECMDGOALS)); \
    ))
    SUBMAKE=$(MAKE)
  else
    ifeq ($(KBUILD_VERBOSE),0)
      SILENT:=>/dev/null 2>&1
    else
      SILENT:=
    endif
    export QUIET:=1
    SUBMAKE=cmd() { $(SILENT) $(MAKE) -s $$* < /dev/null || { echo "make $$*: build failed. Please re-run make with V=99 to see what's going on"; false; } } 8>&1 9>&2; cmd
  endif

  .SILENT: $(MAKECMDGOALS)
else
  SUBMAKE=$(MAKE) -w
  define MESSAGE
    printf "%s\n" "$(1)"
  endef
endif