| 1 | # $FreeWRT$
|
|---|
| 2 | #-
|
|---|
| 3 | # This file is part of the FreeWRT project. FreeWRT is copyrighted
|
|---|
| 4 | # material, please see the LICENCE file in the top-level directory
|
|---|
| 5 | # or at http://www.freewrt.org/license for details.
|
|---|
| 6 |
|
|---|
| 7 | menu "Target system (Broadcom)"
|
|---|
| 8 | choice
|
|---|
| 9 | prompt "Embedded Device"
|
|---|
| 10 | depends on ! FWRT_LINUX_SNAPSHOT_META_TARGET
|
|---|
| 11 | source "target/linux/brcm-2.4/Config.in"
|
|---|
| 12 | endchoice
|
|---|
| 13 |
|
|---|
| 14 | choice
|
|---|
| 15 | prompt "Target Firmware type"
|
|---|
| 16 | default FWRT_TARGET_ROOTFS_SQUASHFS_OVERLAY
|
|---|
| 17 |
|
|---|
| 18 | config FWRT_TARGET_ROOTFS_JFFS2
|
|---|
| 19 | bool "writable root filesystem (jffs2)"
|
|---|
| 20 | select FWRT_PACKAGE_MTD
|
|---|
| 21 | select FWRT_PACKAGE_FWCF
|
|---|
| 22 | select FWRT_PACKAGE_JFFS2ROOT
|
|---|
| 23 | depends on FWRT_LINUX_2_4_BRCM
|
|---|
| 24 | help
|
|---|
| 25 | Build firmware images with a writable jffs2 root filesystem.
|
|---|
| 26 |
|
|---|
| 27 | config FWRT_TARGET_ROOTFS_SQUASHFS_SYMLINKS
|
|---|
| 28 | bool "read-only root filesystem and symlinks (squashfs-symlinks)"
|
|---|
| 29 | select FWRT_PACKAGE_MTD
|
|---|
| 30 | select FWRT_PACKAGE_FWCF
|
|---|
| 31 | select FWRT_PACKAGE_JFFS2ROOT
|
|---|
| 32 | depends on FWRT_LINUX_2_4_BRCM
|
|---|
| 33 | help
|
|---|
| 34 | Build firmware images with a read-only and highly compressed
|
|---|
| 35 | (squashfs with lzma compression) root filesystem.
|
|---|
| 36 | Startup scripts will create symlinks to the writable jffs2 portion.
|
|---|
| 37 | If you want to change anything, first remove the symlink then edit
|
|---|
| 38 | the file.
|
|---|
| 39 |
|
|---|
| 40 | config FWRT_TARGET_ROOTFS_SQUASHFS_OVERLAY
|
|---|
| 41 | bool "read-only root filesystem and overlay fs (squashfs-overlay)"
|
|---|
| 42 | select FWRT_PACKAGE_MTD
|
|---|
| 43 | select FWRT_PACKAGE_FWCF
|
|---|
| 44 | select FWRT_PACKAGE_JFFS2ROOT
|
|---|
| 45 | depends on FWRT_LINUX_2_4_BRCM
|
|---|
| 46 | help
|
|---|
| 47 | Build firmware images with a read-only and highly compressed
|
|---|
| 48 | (squashfs with lzma compression) root filesystem and a overlay
|
|---|
| 49 | filesystem for a pseudo writable root filesystem. Only differences
|
|---|
| 50 | to the read-only image are kept on a writable jffs2 partition.
|
|---|
| 51 |
|
|---|
| 52 | endchoice
|
|---|
| 53 | endmenu
|
|---|