From 99dd3e13fc1c48a75842dbe87ddd1e87a3e213de Mon Sep 17 00:00:00 2001 From: Travis Kemen Date: Sat, 16 Aug 2008 06:35:14 +0000 Subject: make opkg the default package manager, disable busybox ipkg from building by default SVN-Revision: 12319 --- package/opkg/Makefile | 10 +++++++++- package/opkg/files/opkg.conf | 4 ++++ package/opkg/files/postinst | 3 --- 3 files changed, 13 insertions(+), 4 deletions(-) create mode 100644 package/opkg/files/opkg.conf delete mode 100644 package/opkg/files/postinst (limited to 'package/opkg') diff --git a/package/opkg/Makefile b/package/opkg/Makefile index 97971b3af5..67de0bcb6d 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 0000000000..f7f96fe2b6 --- /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 c2bb38187d..0000000000 --- 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