aboutsummaryrefslogtreecommitdiffstats
path: root/scripts/feeds
Commit message (Expand)AuthorAgeFilesLines
* scripts/feeds: fix a bug in the metadata caching changeFelix Fietkau2010-08-261-2/+2
* scripts/feeds: switch to the right feed metadata when installing a package to...Felix Fietkau2010-08-261-2/+5
* scripts/feeds: cache feed metadata instead of re-reading it on every get_feed...Felix Fietkau2010-08-261-14/+24
* Revert r22094 and r22095Hamish Guthrie2010-07-081-1/+1
* Added --non-interactive flag to svn package downloadsHamish Guthrie2010-07-081-1/+1
* add --trust-server-cert to svn checkout of feedsHamish Guthrie2010-07-081-1/+1
* scripts/feeds: fix an error messageFelix Fietkau2009-08-311-1/+1
* scripts/feeds: ignore virtual packagesFelix Fietkau2009-05-081-0/+3
* move host build in packages into a separate namespace: package/<name>/host/<t...Felix Fietkau2009-03-171-1/+2
* check for correct make version ( thanks to Thomas )Ralph Hempel2009-03-021-2/+10
* feeds: extend 'search' to lookup in source package names tooNicolas Thill2009-02-171-1/+1
* scripts/feeds update:Felix Fietkau2008-12-311-50/+42
* increased SCAN_DEPTH for feeds/ by 1Mirko Vogt2008-12-091-1/+1
* Detect changed feed urls and rebase working copies if needed. (Patch by xMff)Steven Barth2008-11-071-7/+43
* add support for conditional depends to the feeds scriptFelix Fietkau2008-10-181-1/+2
* implement conditional dependencies for menuconfig and build depsFelix Fietkau2008-10-011-0/+1
* scripts/feeds: allow multiple alternative urls for a single feed. this will b...Felix Fietkau2008-09-271-5/+12
* Fixed dependency handling for feedsSteven Barth2008-09-161-1/+1
* replace the deprecated git-* command calls with git *Felix Fietkau2008-08-241-1/+1
* rename feeds.conf to feeds.conf.default, make feeds.conf override feeds.conf....Felix Fietkau2008-08-171-1/+3
* scripts/feeds calls 'make' irrespective of the platform it is running on. The...Florian Fainelli2008-08-081-5/+9
* scripts/feeds: fix some installation warnings for locally installed packagesFelix Fietkau2008-08-041-1/+1
* fix scripts/feeds dependency lookup: process deps for all virtual packages of...Felix Fietkau2008-08-041-4/+6
* install dependencies after installing package to avoid deep recursion and mas...Nicolas Thill2008-04-131-7/+7
* install build-depends packages as wellNicolas Thill2008-04-121-1/+1
* fix error message in scripts/feeds when indexes are missingFelix Fietkau2008-04-051-1/+7
* fix a recursive symlink issue with scripts/feeds and src-linkFelix Fietkau2008-04-021-1/+1
* fix package/symlinks target, will call scripts/feeds update / install introdu...Ralph Hempel2008-03-201-5/+5
* fix multiple update (cpy), added index generation (allows to re-create the in...Ralph Hempel2008-03-181-40/+124
* - added package list function -r list packages of specified feed -s list the ...Ralph Hempel2008-01-301-7/+47
* cleanups, small fixes and improvements for the feeds scriptFelix Fietkau2008-01-271-37/+28
* scripts/feeds: Add support for git feeds.Felix Fietkau2008-01-271-1/+22
* the attached patch adds the -a option to the feeds install command. Therefore...Felix Fietkau2008-01-251-15/+80
* fix a warningFelix Fietkau2007-12-071-1/+1
* add initial version of a package feeds management scriptFelix Fietkau2007-09-231-0/+322
KERNEL_UTS_NS +@KERNEL_IPC_NS +@KERNEL_PID_NS +libubox +libblobmsg-json TITLE:=OpenWrt process jail helper endef define Package/procd-seccomp SECTION:=base CATEGORY:=Base system DEPENDS:=@arm||@armeb||@mips||@mipsel||@i386||@x86_64 @!TARGET_uml @KERNEL_SECCOMP +libubox +libblobmsg-json TITLE:=OpenWrt process seccomp helper + utrace endef define Package/procd-nand SECTION:=utils CATEGORY:=Utilities DEPENDS:=@NAND_SUPPORT +ubi-utils TITLE:=OpenWrt sysupgrade nand helper endef define Package/procd-nand-firstboot SECTION:=utils CATEGORY:=Utilities DEPENDS:=procd-nand TITLE:=OpenWrt firstboot nand helper endef define Package/procd/config menu "Configuration" depends on PACKAGE_procd config PROCD_SHOW_BOOT bool default n prompt "Print the shutdown to the console as well as logging it to syslog" config PROCD_ZRAM_TMPFS bool default n prompt "Mount /tmp using zram." endmenu endef ifeq ($(CONFIG_NAND_SUPPORT),y) CMAKE_OPTIONS += -DBUILD_UPGRADED=1 endif ifeq ($(CONFIG_PROCD_SHOW_BOOT),y) CMAKE_OPTIONS += -DSHOW_BOOT_ON_CONSOLE=1 endif ifeq ($(CONFIG_PROCD_ZRAM_TMPFS),y) CMAKE_OPTIONS += -DZRAM_TMPFS=1 endif ifdef CONFIG_PACKAGE_procd-ujail CMAKE_OPTIONS += -DJAIL_SUPPORT=1 endif ifdef CONFIG_PACKAGE_procd-seccomp CMAKE_OPTIONS += -DSECCOMP_SUPPORT=1 -DUTRACE_SUPPORT=1 endif define Package/procd/install $(INSTALL_DIR) $(1)/sbin $(1)/etc $(1)/lib/functions $(INSTALL_BIN) $(PKG_INSTALL_DIR)/usr/sbin/{init,procd,askfirst,udevtrigger} $(1)/sbin/ $(INSTALL_DATA) $(PKG_INSTALL_DIR)/usr/lib/libsetlbf.so $(1)/lib $(INSTALL_BIN) ./files/reload_config $(1)/sbin/ $(INSTALL_DATA) ./files/hotplug*.json $(1)/etc/ $(INSTALL_DATA) ./files/procd.sh $(1)/lib/functions/ endef define Package/procd-ujail/install $(INSTALL_DIR) $(1)/sbin $(INSTALL_BIN) $(PKG_INSTALL_DIR)/usr/sbin/ujail $(1)/sbin/ endef define Package/procd-seccomp/install $(INSTALL_DIR) $(1)/sbin $(1)/lib $(INSTALL_DATA) $(PKG_INSTALL_DIR)/usr/lib/libpreload-seccomp.so $(1)/lib $(INSTALL_BIN) $(PKG_INSTALL_DIR)/usr/sbin/utrace $(1)/sbin/ $(INSTALL_DATA) $(PKG_INSTALL_DIR)/usr/lib/libpreload-trace.so $(1)/lib endef define Package/procd-nand/install $(INSTALL_DIR) $(1)/sbin $(1)/lib/upgrade $(INSTALL_BIN) $(PKG_INSTALL_DIR)/usr/sbin/upgraded $(1)/sbin/ $(INSTALL_DATA) ./files/nand.sh $(1)/lib/upgrade/ endef define Package/procd-nand-firstboot/install $(INSTALL_DIR) $(1)/lib/preinit $(INSTALL_DATA) ./files/nand-preinit.sh $(1)/lib/preinit/60-nand-firstboot.sh endef $(eval $(call BuildPackage,procd)) $(eval $(call BuildPackage,procd-ujail)) $(eval $(call BuildPackage,procd-seccomp)) $(eval $(call BuildPackage,procd-nand)) $(eval $(call BuildPackage,procd-nand-firstboot))