2 # Copyright (C) 2007-2008 OpenWrt.org
4 # This is free software, licensed under the GNU General Public License v2.
5 # See /LICENSE for more information.
8 include $(TOPDIR
)/rules.mk
10 PKG_NAME
:=util-linux-ng
14 PKG_SOURCE
:=$(PKG_NAME
)-$(PKG_VERSION
).
tar.gz
15 PKG_SOURCE_URL
:=@KERNEL
/linux
/utils
/$(PKG_NAME
)/v2.13
16 PKG_MD5SUM
:=c841dc8743905c8f0db20c9db5094f57
18 PKG_BUILD_DEPENDS
=e2fsprogs
20 include $(INCLUDE_DIR
)/package.mk
22 define Package
/util-linux
/Default
25 URL
:=http
://www.kernel.org
/pub
/linux
/utils
/util-linux-ng
/
29 $(call Package
/util-linux
/Default
)
30 TITLE
:=Partition table manipulation utility
34 define Package
/fdisk
/description
35 This package contains a utility for managing disk partition tables.
39 $(call Package
/util-linux
/Default
)
41 TITLE
:=Partition table manipulation utility
45 define Package
/cfdisk
/description
46 This package contains a utility for managing disk partition tables.
49 define Package
/losetup
50 $(call Package
/util-linux
/Default
)
51 TITLE
:=Loopback devices setup and control utility
54 define Package
/losetup
/description
55 This package contains a utility for managing loopback devices.
58 define Package
/mount-utils
59 $(call Package
/util-linux
/Default
)
60 TITLE
:=Devices mount
/unmounting utilities
61 DEPENDS
+= +libblkid
+libuuid
64 define Package
/mount-utils
/description
65 This package contains utilities to mount
/unmount devices.
68 define Package
/swap-utils
69 $(call Package
/util-linux
/Default
)
71 TITLE
:=Swap space management utilities
72 DEPENDS
+= +libblkid
+libuuid
75 define Package
/swap-utils
/description
76 This package contains a collection of tools for managing swap space
:
82 define Package
/hwclock
83 $(call Package
/util-linux
/Default
)
84 TITLE
:=Utilities for managing the hardware clock
87 define Package
/hwclock
/description
88 This package contains a utility for managing the hardware clock.
92 $(MAKE
) -C
$(PKG_BUILD_DIR
)/disk-utils mkswap
93 $(MAKE
) -C
$(PKG_BUILD_DIR
)/mount swapon losetup umount mount
94 $(MAKE
) -C
$(PKG_BUILD_DIR
)/fdisk fdisk cfdisk
95 $(MAKE
) -C
$(PKG_BUILD_DIR
)/hwclock hwclock
98 define Package
/fdisk
/install
99 $(INSTALL_DIR
) $(1)/sbin
100 $(INSTALL_BIN
) $(PKG_BUILD_DIR
)/fdisk
/fdisk
$(1)/sbin
/
103 define Package
/cfdisk
/install
104 $(INSTALL_DIR
) $(1)/sbin
105 $(INSTALL_BIN
) $(PKG_BUILD_DIR
)/fdisk
/cfdisk
$(1)/sbin
/
108 define Package
/losetup
/install
109 $(INSTALL_DIR
) $(1)/sbin
110 $(INSTALL_BIN
) $(PKG_BUILD_DIR
)/mount
/losetup
$(1)/sbin
/
113 define Package
/mount-utils
/install
114 $(INSTALL_DIR
) $(1)/bin
/
115 $(INSTALL_BIN
) $(PKG_BUILD_DIR
)/mount
/{u
,}mount
$(1)/bin
118 define Package
/swap-utils
/install
119 $(INSTALL_DIR
) $(1)/sbin
120 $(INSTALL_BIN
) $(PKG_BUILD_DIR
)/disk-utils
/mkswap
$(PKG_BUILD_DIR
)/mount
/swapon
$(1)/sbin
/
121 ln
-sf swapon
$(1)/sbin
/swapoff
124 define Package
/hwclock
/install
125 $(INSTALL_DIR
) $(1)/sbin
126 $(INSTALL_BIN
) $(PKG_BUILD_DIR
)/hwclock
/hwclock
$(1)/sbin
/
129 $(eval
$(call BuildPackage
,fdisk
))
130 $(eval
$(call BuildPackage
,cfdisk
))
131 $(eval
$(call BuildPackage
,losetup
))
132 $(eval
$(call BuildPackage
,mount-utils
))
133 $(eval
$(call BuildPackage
,swap-utils
))
134 $(eval
$(call BuildPackage
,hwclock
))