Changeset 2362
- Timestamp:
- 04/15/07 16:45:50 (5 years ago)
- Files:
-
- trunk/freewrt/Config.in (modified) (1 diff)
- trunk/freewrt/mk/pkg-depend.mk (modified) (3 diffs)
- trunk/freewrt/mk/targets.mk (modified) (2 diffs)
- trunk/freewrt/package/Config.in (modified) (1 diff)
- trunk/freewrt/package/Makefile (modified) (3 diffs)
- trunk/freewrt/package/cryptsetup-luks (added)
- trunk/freewrt/package/cryptsetup-luks/Config.in (added)
- trunk/freewrt/package/cryptsetup-luks/Makefile (added)
- trunk/freewrt/package/cryptsetup-luks/ipkg (added)
- trunk/freewrt/package/cryptsetup-luks/ipkg/cryptsetup-luks.control (added)
- trunk/freewrt/package/e2fsprogs/Makefile (modified) (1 diff)
- trunk/freewrt/package/libp11 (added)
- trunk/freewrt/package/libp11/Config.in (added)
- trunk/freewrt/package/libp11/Makefile (added)
- trunk/freewrt/package/libp11/ipkg (added)
- trunk/freewrt/package/libp11/ipkg/libp11.control (added)
- trunk/freewrt/package/openct (added)
- trunk/freewrt/package/openct/Config.in (added)
- trunk/freewrt/package/openct/Makefile (added)
- trunk/freewrt/package/openct/ipkg (added)
- trunk/freewrt/package/openct/ipkg/openct.control (added)
- trunk/freewrt/package/opensc (added)
- trunk/freewrt/package/opensc/Config.in (added)
- trunk/freewrt/package/opensc/Makefile (added)
- trunk/freewrt/package/opensc/ipkg (added)
- trunk/freewrt/package/opensc/ipkg/opensc.control (added)
- trunk/freewrt/package/opensc/patches (added)
- trunk/freewrt/package/opensc/patches/patch-src_Makefile_in (added)
- trunk/freewrt/package/openssl-pkcs11 (added)
- trunk/freewrt/package/openssl-pkcs11/Config.in (added)
- trunk/freewrt/package/openssl-pkcs11/Makefile (added)
- trunk/freewrt/package/openssl-pkcs11/ipkg (added)
- trunk/freewrt/package/openssl-pkcs11/ipkg/openssl-pkcs11.control (added)
- trunk/freewrt/package/openssl-pkcs11/patches (added)
- trunk/freewrt/package/openssl-pkcs11/patches/patch-configure (added)
- trunk/freewrt/package/uclibc++/files/config.i386 (modified) (1 diff)
- trunk/freewrt/target/Config.in (modified) (2 diffs)
- trunk/freewrt/target/image/x86/Makefile (modified) (3 diffs)
- trunk/freewrt/target/linux/x86-2.6/Config.in (modified) (1 diff)
- trunk/freewrt/target/linux/x86-2.6/initramfs (added)
- trunk/freewrt/target/linux/x86-2.6/initramfs/files (added)
- trunk/freewrt/target/linux/x86-2.6/initramfs/files/init (added)
- trunk/freewrt/target/linux/x86-2.6/initramfs/kernelconfig (added)
Legend:
- Unmodified
- Added
- Removed
- Modified
- Copied
- Moved
trunk/freewrt/Config.in
r2360 r2362 111 111 config FWRT_LINUX_2_6_X86 112 112 bool 113 config FWRT_LINUX_2_4_X86 114 bool 113 115 114 116 source "target/Config.in" trunk/freewrt/mk/pkg-depend.mk
r2316 r2362 23 23 curl-compile: openssl-compile zlib-compile 24 24 ctorrent-compile: openssl-compile uclibc++-compile 25 cryptsetup-luks-compile: libgcrypt-compile popt-compile e2fsprogs-compile 25 26 cxxtools-compile: libiconv-compile uclibc++-compile 26 27 cyrus-sasl-compile: openssl-compile … … 95 96 obexftp-compile: openobex-compile libiconv-compile 96 97 opencdk-compile: libgcrypt-compile 98 openct-compile: libtool-compile libusb-compile 97 99 openldap-compile: cyrus-sasl-compile openssl-compile 98 100 ifneq ($(FWRT_PACKAGE_OPENSER_MOD_AUTH_RADIUS)$(FWRT_PACKAGE_OPENSER_MOD_AVP_RADIUS),) … … 101 103 openssh-compile: zlib-compile openssl-compile 102 104 openssl-compile: zlib-compile 105 openssl-pkcs11-compile: libp11-compile 103 106 openswan-compile: gmp-compile 104 107 osiris-compile: openssl-compile trunk/freewrt/mk/targets.mk
r2322 r2362 63 63 # PC engine WRAP 64 64 $(eval $(call target_template,2.6,x86,wrap,2_6_X86_WRAP)) 65 $(eval $(call target_template,2.6,x86,cryptotoken,2_6_X86_CRYPTOTOKEN)) 65 66 66 67 define rootfs_template … … 75 76 $(eval $(call rootfs_template,ext2-cf,EXT2_CF)) 76 77 $(eval $(call rootfs_template,yaffs2,YAFFS2)) 78 $(eval $(call rootfs_template,initramfs,INITRAMFS)) 77 79 78 80 trunk/freewrt/package/Config.in
r2360 r2362 234 234 endmenu 235 235 236 menu "Crypto" 237 source "package/cryptsetup-luks/Config.in" 238 source "package/libp11/Config.in" 239 source "package/openct/Config.in" 240 source "package/opensc/Config.in" 241 source "package/openssl-pkcs11/Config.in" 242 endmenu 243 236 244 menu "IPv6" 237 245 source "package/6tunnel/Config.in" trunk/freewrt/package/Makefile
r2330 r2362 42 42 package-$(FWRT_COMPILE_CURL) += curl 43 43 package-$(FWRT_PACKAGE_CUTTER) += cutter 44 package-$(FWRT_PACKAGE_CRYPTSETUP_LUKS) += cryptsetup-luks 44 45 package-$(FWRT_COMPILE_CYRUS_SASL) += cyrus-sasl 45 46 package-$(FWRT_PACKAGE_CXXTOOLS) += cxxtools … … 136 137 package-$(FWRT_PACAKGE_LIBOL) += libol 137 138 package-$(FWRT_PACKAGE_LIBOSIP2) += libosip2 139 package-$(FWRT_PACKAGE_LIBP11) += libp11 138 140 package-$(FWRT_PACKAGE_LIBPCAP) += libpcap 139 141 package-$(FWRT_PACKAGE_LIBPNG) += libpng … … 194 196 package-$(FWRT_PACKAGE_OLSRD) += olsrd 195 197 package-$(FWRT_COMPILE_OPENCDK) += opencdk 198 package-$(FWRT_PACKAGE_OPENCT) += openct 196 199 package-$(FWRT_PACKAGE_OPENOBEX) += openobex 197 200 package-$(FWRT_COMPILE_OPENLDAP) += openldap 198 201 package-$(FWRT_PACKAGE_OPENNTPD) += openntpd 202 package-$(FWRT_PACKAGE_OPENSC) += opensc 199 203 package-$(FWRT_PACKAGE_OPENSER) += openser 200 204 package-$(FWRT_COMPILE_OPENSSH) += openssh 201 205 package-$(FWRT_COMPILE_OPENSSL) += openssl 206 package-$(FWRT_PACKAGE_OPENSSL_PKCS11) += openssl-pkcs11 202 207 package-$(FWRT_PACKAGE_OPENSWAN) += openswan 203 208 package-$(FWRT_PACKAGE_OPENVPN) += openvpn trunk/freewrt/package/e2fsprogs/Makefile
r1906 r2362 39 39 ${CP} ${WRKINST}/usr/lib/lib{blkid,com_err,e2p,ext2fs,uuid}.so.* \ 40 40 ${IDIR_E2FSPROGS}/usr/lib/ 41 # install some headers explicitely 42 ${INSTALL_DIR} ${STAGING_DIR}/usr/include/uuid 43 ${CP} ${WRKBUILD}/lib/uuid/uuid.h \ 44 ${STAGING_DIR}/usr/include/uuid 41 45 42 46 include ${TOPDIR}/mk/pkg-bottom.mk trunk/freewrt/package/uclibc++/files/config.i386
r1 r2362 2 2 # Automatically generated make config: don't edit 3 3 # 4 # TARGET_arm is not set5 TARGET_i386=y6 # TARGET_mips is not set7 # TARGET_powerpc is not set8 4 9 5 # 10 # Target ArchitectureFeatures and Options6 # Target Features and Options 11 7 # 12 HAVE_ELF=y13 TARGET_ARCH="i386"14 # CONFIG_GENERIC_386 is not set15 # CONFIG_386 is not set16 CONFIG_486=y17 # CONFIG_586 is not set18 # CONFIG_586MMX is not set19 # CONFIG_686 is not set20 # CONFIG_PENTIUMIII is not set21 # CONFIG_PENTIUM4 is not set22 # CONFIG_K6 is not set23 # CONFIG_K7 is not set24 # CONFIG_CRUSOE is not set25 # CONFIG_WINCHIPC6 is not set26 # CONFIG_WINCHIP2 is not set27 # CONFIG_CYRIXIII is not set28 ARCH_LITTLE_ENDIAN=y29 # ARCH_BIG_ENDIAN is not set30 8 UCLIBCXX_HAS_FLOATS=y 9 # UCLIBCXX_HAS_LONG_DOUBLE is not set 10 # UCLIBCXX_HAS_TLS is not set 31 11 WARNINGS="-Wall" 12 BUILD_EXTRA_LIBRARIES="" 32 13 HAVE_DOT_CONFIG=y 33 14 trunk/freewrt/target/Config.in
r2360 r2362 58 58 FWRT_LINUX_2_6_RB || \ 59 59 FWRT_LINUX_2_4_X86 || \ 60 FWRT_LINUX_2_6_X86 60 FWRT_LINUX_2_6_X86 && \ 61 ! FWRT_LINUX_2_6_X86_CRYPTOTOKEN 61 62 help 62 63 Use this option if you have a compact flash … … 70 71 Use this option if you want to install FreeWRT to RouterBoard's 71 72 internal NAND flash. 73 74 config FWRT_TARGET_ROOTFS_INITRAMFS 75 bool "initramfs image (cpio archive)" 76 depends on FWRT_LINUX_2_6_X86_CRYPTOTOKEN 77 help 78 create a initramfs only. 72 79 73 80 endchoice trunk/freewrt/target/image/x86/Makefile
r2035 r2362 10 10 11 11 INSTPREPSCRIPT = instprep-wrap.sh 12 ROOTFSTARBALL = rootfs-$(BOARD)-$(KERNEL)-$(DEVICE)-$(FS).tar.gz 12 ROOTFSTARBALL = $(FWRT_PREFIX)-$(DEVICE)-$(BOARD)-$(KERNEL)-$(FS).tar.gz 13 INITRAMFS = $(FWRT_PREFIX)-$(DEVICE)-$(BOARD)-$(KERNEL)-$(FS).gz 13 14 CF_DOC_URL = https://www.freewrt.org/trac/wiki/Documentation/Filesystems/CompactFlash 14 15 … … 22 23 cp $(LINUX_DIR)/arch/i386/boot/bzImage $(KDIR)/root/kernel 23 24 24 install-prepare_DEPS= instprep-scriptkernel-install25 install-prepare_DEPS= kernel-install 25 26 26 27 install-prepare-md: … … 29 30 $(KDIR)/root: install-prepare kernel-install 30 31 31 $(BIN_DIR)/$(ROOTFSTARBALL): $(KDIR)/root 32 $(BIN_DIR)/$(ROOTFSTARBALL): $(KDIR)/root instprep-script 32 33 (cd $(KDIR)/root ; tar cf - * | gzip -9 > $(BIN_DIR)/$(ROOTFSTARBALL)) 34 35 $(BIN_DIR)/$(INITRAMFS): $(KDIR)/root 36 (cd $(KDIR)/root ; find . | cpio -o -H newc | gzip > $(BIN_DIR)/$(INITRAMFS)) 37 38 ifeq ($(FS),initramfs) 39 install: $(BIN_DIR)/$(INITRAMFS) 40 @echo 41 @echo "The initramfs is: $(BIN_DIR)/$(INITRAMFS)" 42 endif 33 43 34 44 ifeq ($(FS),ext2-cf) trunk/freewrt/target/linux/x86-2.6/Config.in
r2360 r2362 9 9 help 10 10 PC Engine WRAP 11 12 config FWRT_LINUX_2_6_X86_CRYPTOTOKEN 13 bool "Initramfs with tools for cryptotokens [Linux 2.6]" 14 select FWRT_i386 15 select FWRT_LINUX_2_6_X86 16 select BUSYBOX_CONFIG_MDEV 17 select BUSYBOX_CONFIG_FEATURE_MDEV_CONF 18 select BUSYBOX_CONFIG_FEATURE_MDEV_EXEC 19 select FWRT_PACKAGE_CRYPTSETUP_LUKS 20 select FWRT_PACKAGE_LIBOPENSSL 21 select FWRT_PACKAGE_OPENSSL_PKCS11 22 select FWRT_PACKAGE_OPENSC 23 select FWRT_PACKAGE_OPENCT 24 depends FWRT_DEVEL 25 help 26 Initramfs with tools for cryptotokens.


