mirror of
https://github.com/hanwckf/immortalwrt-mt798x.git
synced 2025-01-09 02:43:53 +08:00
Merge Official Source
Signed-off-by: Tianling Shen <cnsztl@immortalwrt.org>
This commit is contained in:
commit
d92f634312
@ -65,7 +65,6 @@ To build your own firmware you need a GNU/Linux, BSD or MacOSX system (case sens
|
|||||||
- [LuCI Web Interface](https://github.com/immortalwrt/luci): Modern and modular interface to control the device via a web browser.
|
- [LuCI Web Interface](https://github.com/immortalwrt/luci): Modern and modular interface to control the device via a web browser.
|
||||||
- [ImmortalWrt Packages](https://github.com/immortalwrt/packages): Community repository of ported packages.
|
- [ImmortalWrt Packages](https://github.com/immortalwrt/packages): Community repository of ported packages.
|
||||||
- [OpenWrt Routing](https://github.com/openwrt/routing): Packages specifically focused on (mesh) routing.
|
- [OpenWrt Routing](https://github.com/openwrt/routing): Packages specifically focused on (mesh) routing.
|
||||||
- [CONTRIBUTED.md](https://github.com/immortalwrt/immortalwrt/blob/master/CONTRIBUTED.md): the 3rd-party packages we introduced.
|
|
||||||
|
|
||||||
## Support Information
|
## Support Information
|
||||||
For a list of supported devices see the [OpenWrt Hardware Database](https://openwrt.org/supported_devices)
|
For a list of supported devices see the [OpenWrt Hardware Database](https://openwrt.org/supported_devices)
|
||||||
|
@ -133,7 +133,7 @@ class Path(object):
|
|||||||
def tar(path, subdir, into=None, ts=None):
|
def tar(path, subdir, into=None, ts=None):
|
||||||
"""Pack ``path`` into tarball ``into``."""
|
"""Pack ``path`` into tarball ``into``."""
|
||||||
# --sort=name requires a recent build of GNU tar
|
# --sort=name requires a recent build of GNU tar
|
||||||
args = ['tar', '--numeric-owner', '--owner=0', '--group=0', '--sort=name']
|
args = ['tar', '--numeric-owner', '--owner=0', '--group=0', '--sort=name', '--mode=a-s']
|
||||||
args += ['-C', path, '-cf', into, subdir]
|
args += ['-C', path, '-cf', into, subdir]
|
||||||
envs = os.environ.copy()
|
envs = os.environ.copy()
|
||||||
if ts is not None:
|
if ts is not None:
|
||||||
|
Loading…
x
Reference in New Issue
Block a user