mirror of
https://github.com/hak5/wifipineapple-openwrt.git
synced 2025-10-29 16:57:19 +00:00
*** empty log message ***
git-svn-id: svn://svn.openwrt.org/openwrt/trunk/openwrt@213 3c298f89-4303-0410-b956-a3cf2f4a3e73
This commit is contained in:
6
target/squashfs/Config.in
Normal file
6
target/squashfs/Config.in
Normal file
@@ -0,0 +1,6 @@
|
||||
config BR2_TARGET_ROOTFS_SQUASHFS
|
||||
bool "squashfs (ro) root filesystem for the target device"
|
||||
default n
|
||||
help
|
||||
Build a squashfs root filesystem
|
||||
|
||||
3
target/squashfs/Makefile.in
Normal file
3
target/squashfs/Makefile.in
Normal file
@@ -0,0 +1,3 @@
|
||||
ifeq ($(strip $(BR2_TARGET_ROOTFS_SQUASHFS)),y)
|
||||
TARGETS+=squashfsroot openwrt-code.bin.squashfs
|
||||
endif
|
||||
50
target/squashfs/squashfsroot.mk
Normal file
50
target/squashfs/squashfsroot.mk
Normal file
@@ -0,0 +1,50 @@
|
||||
#############################################################
|
||||
#
|
||||
# squashfs target
|
||||
#
|
||||
#############################################################
|
||||
|
||||
SQUASHFS_DIR=$(BUILD_DIR)/squashfs2.1-r2
|
||||
SQUASHFS_SOURCE=squashfs2.1-r2.tar.gz
|
||||
SQUASHFS_SITE=http://dl.sourceforge.net/sourceforge/squashfs
|
||||
|
||||
$(DL_DIR)/$(SQUASHFS_SOURCE):
|
||||
$(WGET) -P $(DL_DIR) $(SQUASHFS_SITE)/$(SQUASHFS_SOURCE)
|
||||
|
||||
$(SQUASHFS_DIR)/.unpacked: $(DL_DIR)/$(SQUASHFS_SOURCE)
|
||||
zcat $(DL_DIR)/$(SQUASHFS_SOURCE) | tar -C $(BUILD_DIR) -xvf -
|
||||
touch $(SQUASHFS_DIR)/.unpacked
|
||||
|
||||
$(SQUASHFS_DIR)/squashfs-tools/mksquashfs: $(SQUASHFS_DIR)/.unpacked
|
||||
$(MAKE) -C $(SQUASHFS_DIR)/squashfs-tools;
|
||||
|
||||
squashfs: $(SQUASHFS_DIR)/squashfs-tools/mksquashfs
|
||||
|
||||
squashfs-source: $(DL_DIR)/$(SQUASHFS_SOURCE)
|
||||
|
||||
squashfs-clean:
|
||||
-$(MAKE) -C $(SQUASHFS_DIR)/squashfs-tools clean
|
||||
|
||||
squashfs-dirclean:
|
||||
rm -rf $(SQUASHFS_DIR)
|
||||
|
||||
|
||||
#############################################################
|
||||
#
|
||||
# Build the squashfs root filesystem image
|
||||
#
|
||||
#############################################################
|
||||
|
||||
squashfsroot: squashfs
|
||||
@rm -rf $(TARGET_DIR)/usr/man
|
||||
@rm -rf $(TARGET_DIR)/usr/info
|
||||
$(SQUASHFS_DIR)/squashfs-tools/mksquashfs $(TARGET_DIR) $(IMAGE).squashfs -noappend -root-owned -le
|
||||
|
||||
squashfsroot-source: squashfs-source
|
||||
|
||||
squashfsroot-clean:
|
||||
-$(MAKE) -C $(SQUASHFS_DIR) clean
|
||||
|
||||
squashfsroot-dirclean:
|
||||
rm -rf $(SQUASHFS_DIR)
|
||||
|
||||
Reference in New Issue
Block a user