source: freewrt/target/Config.in@ 5d4c61f

freewrt_1_0 freewrt_2_0
Last change on this file since 5d4c61f was ebe3105, checked in by Waldemar Brodkorb <wbx@…>, 19 years ago

try to rework snapshot build

git-svn-id: svn://www.freewrt.org/branches/freewrt_1_0@1250 afb5a338-a214-0410-bd46-81f09a774fd1

  • Property mode set to 100644
File size: 1.7 KB
Line 
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
7menu "Target system (Broadcom)"
8choice
9prompt "Embedded Device"
10depends on ! FWRT_LINUX_SNAPSHOT_META_TARGET
11source "target/linux/brcm-2.4/Config.in"
12endchoice
13
14choice
15prompt "Target Firmware type"
16 default FWRT_TARGET_ROOTFS_SQUASHFS_OVERLAY
17
18config 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
27config 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
40config 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
52endchoice
53endmenu
Note: See TracBrowser for help on using the repository browser.