From d5dc9a90873047ab07107833a950320ae3b2b41f Mon Sep 17 00:00:00 2001 From: thepeople Date: Sat, 16 Aug 2008 06:35:14 +0000 Subject: make opkg the default package manager, disable busybox ipkg from building by default git-svn-id: svn://svn.openwrt.org/openwrt/trunk@12319 3c298f89-4303-0410-b956-a3cf2f4a3e73 --- package/base-files/Makefile | 2 -- package/base-files/files/bin/firstboot | 2 +- package/base-files/files/etc/ipkg.conf | 4 ---- package/busybox/config/archival/Config.in | 2 +- package/dropbear/Makefile | 6 +++--- package/opkg/Makefile | 10 +++++++++- package/opkg/files/opkg.conf | 4 ++++ package/opkg/files/postinst | 3 --- 8 files changed, 18 insertions(+), 15 deletions(-) delete mode 100644 package/base-files/files/etc/ipkg.conf create mode 100644 package/opkg/files/opkg.conf delete mode 100644 package/opkg/files/postinst (limited to 'package') diff --git a/package/base-files/Makefile b/package/base-files/Makefile index 231647e98..9f745aa17 100644 --- a/package/base-files/Makefile +++ b/package/base-files/Makefile @@ -53,7 +53,6 @@ define Package/base-files$(TARGET)/conffiles /etc/passwd /etc/profile /etc/shells -/etc/ipkg.conf /etc/sysctl.conf $(call $(TARGET)/conffiles) endef @@ -149,7 +148,6 @@ define Package/base-files$(TARGET)/install ) $(if $(CONFIG_BUSYBOX_CONFIG_FEATURE_SHADOWPASSWDS),cp $(1)/etc/passwd $(1)/etc/shadow) $(SED) 's,$$$$R,$(REVISION),g' $(1)/etc/banner - $(SED) 's,$$$$S,$(BOARD),g' -e 's,$$$$A,$(ARCH),g' $(1)/etc/ipkg.conf mkdir -p $(1)/dev mkdir -p $(1)/etc/crontabs mkdir -p $(1)/jffs diff --git a/package/base-files/files/bin/firstboot b/package/base-files/files/bin/firstboot index ad87f7482..c245d517c 100755 --- a/package/base-files/files/bin/firstboot +++ b/package/base-files/files/bin/firstboot @@ -25,7 +25,7 @@ dupe() { # case "$file" in ./rom/note) ;; #nothing ./etc/config*|\ - ./usr/lib/ipkg/info/*) cp -af $2/$file $file;; + ./usr/lib/opkg/info/*) cp -af $2/$file $file;; *) ln -sf /rom/${file#./*} $file;; esac done diff --git a/package/base-files/files/etc/ipkg.conf b/package/base-files/files/etc/ipkg.conf deleted file mode 100644 index c6c9dc717..000000000 --- a/package/base-files/files/etc/ipkg.conf +++ /dev/null @@ -1,4 +0,0 @@ -src snapshots http://downloads.openwrt.org/snapshots/$S/packages -dest root / -dest ram /tmp -lists_dir ext /var/ipkg-lists diff --git a/package/busybox/config/archival/Config.in b/package/busybox/config/archival/Config.in index 4350076b9..0cfbbcc3d 100644 --- a/package/busybox/config/archival/Config.in +++ b/package/busybox/config/archival/Config.in @@ -133,7 +133,7 @@ config BUSYBOX_CONFIG_GZIP config BUSYBOX_CONFIG_IPKG bool "ipkg" - default y + default n select BUSYBOX_CONFIG_MD5SUM select BUSYBOX_CONFIG_WGET select BUSYBOX_CONFIG_DIFF diff --git a/package/dropbear/Makefile b/package/dropbear/Makefile index bbea72fee..96eb5911d 100644 --- a/package/dropbear/Makefile +++ b/package/dropbear/Makefile @@ -88,9 +88,9 @@ define Package/dropbear/install $(INSTALL_DATA) ./files/dropbear.config $(1)/etc/config/dropbear $(INSTALL_DIR) $(1)/etc/init.d $(INSTALL_BIN) ./files/dropbear.init $(1)/etc/init.d/dropbear - $(INSTALL_DIR) $(1)/usr/lib/ipkg/info - echo /etc/dropbear/dropbear_rsa_host_key > $(1)/usr/lib/ipkg/info/dropbear.conffiles - echo /etc/dropbear/dropbear_dss_host_key >> $(1)/usr/lib/ipkg/info/dropbear.conffiles + $(INSTALL_DIR) $(1)/usr/lib/opkg/info + echo /etc/dropbear/dropbear_rsa_host_key > $(1)/usr/lib/opkg/info/dropbear.conffiles + echo /etc/dropbear/dropbear_dss_host_key >> $(1)/usr/lib/opkg/info/dropbear.conffiles endef define Package/dropbearconvert/install diff --git a/package/opkg/Makefile b/package/opkg/Makefile index 97971b3af..67de0bcb6 100644 --- a/package/opkg/Makefile +++ b/package/opkg/Makefile @@ -36,6 +36,10 @@ define Package/opkg/description opkg knows how to install both .ipk and .deb packages. endef +define Package/opkg/conffiles +/etc/opkg.conf +endef + TARGET_CFLAGS += $(FPIC) EXTRA_CFLAGS+=-I$(STAGING_DIR)/usr/include -I$(STAGING_DIR)/include -I$(STAGING_DIR)/usr/lib EXTRA_LDFLAGS+=-L$(STAGING_DIR)/usr/lib -Wl,-rpath-link,$(STAGING_DIR)/usr/lib @@ -59,8 +63,12 @@ define Build/Compile endef define Package/opkg/install - $(INSTALL_BIN) ./files/postinst $(1)/CONTROL/postinst + $(INSTALL_DIR) $(1)/usr/lib/opkg $(INSTALL_DIR) $(1)/bin + $(INSTALL_DIR) $(1)/etc + $(INSTALL_DATA) ./files/opkg.conf $(1)/etc/ + $(SED) 's,$$$$S,$(BOARD),g' -e 's,$$$$A,$(ARCH),g' $(1)/etc/opkg.conf + $(SED) 's,$$$$S,$(BOARD),g' $(1)/etc/opkg.conf $(INSTALL_BIN) $(PKG_INSTALL_DIR)/usr/bin/opkg-cl $(1)/bin/opkg $(INSTALL_DIR) $(1)/usr/lib $(CP) $(PKG_INSTALL_DIR)/usr/lib/libopkg.so.* $(1)/usr/lib/ diff --git a/package/opkg/files/opkg.conf b/package/opkg/files/opkg.conf new file mode 100644 index 000000000..f7f96fe2b --- /dev/null +++ b/package/opkg/files/opkg.conf @@ -0,0 +1,4 @@ +src snapshots http://downloads.openwrt.org/snapshots/$S/packages +dest root / +dest ram /tmp +lists_dir ext /var/opkg-lists diff --git a/package/opkg/files/postinst b/package/opkg/files/postinst deleted file mode 100644 index c2bb38187..000000000 --- a/package/opkg/files/postinst +++ /dev/null @@ -1,3 +0,0 @@ -#!/bin/sh -ln -sf "/usr/lib/ipkg" "${IPKG_INSTROOT}/usr/lib/opkg" -ln -sf "/etc/ipkg.conf" "${IPKG_INSTROOT}/etc/opkg.conf" -- cgit v1.2.3