[Why] prevent initramfs OS file from becoming too large
[How] import packages from depends cgz file
Signed-off-by: Wang Yong wangyong0117@qq.com --- distro/depends/cci-depends | 2 ++ distro/depends/cci-makepkg | 10 ++++++++++ 2 files changed, 12 insertions(+) create mode 100644 distro/depends/cci-depends create mode 100644 distro/depends/cci-makepkg
diff --git a/distro/depends/cci-depends b/distro/depends/cci-depends new file mode 100644 index 000000000..1f7f73ac3 --- /dev/null +++ b/distro/depends/cci-depends @@ -0,0 +1,2 @@ +cifs-utils +cpio diff --git a/distro/depends/cci-makepkg b/distro/depends/cci-makepkg new file mode 100644 index 000000000..a7ee67537 --- /dev/null +++ b/distro/depends/cci-makepkg @@ -0,0 +1,10 @@ +curl +libarchive-tools +bzip2 +fakeroot +gnupg +gettext +openssl +ncurses-bin +binutils +cifs-utils
On Wed, Oct 28, 2020 at 02:09:46PM +0800, Wang Yong wrote:
[Why] prevent initramfs OS file from becoming too large
It's not good reason. Depend file has always been to write. Just not added before.
Thanks, Jiaxin
[How] import packages from depends cgz file
Signed-off-by: Wang Yong wangyong0117@qq.com
On Wed, Oct 28, 2020 at 02:59:30PM +0800, Lin Jiaxin wrote:
On Wed, Oct 28, 2020 at 02:09:46PM +0800, Wang Yong wrote:
[Why] prevent initramfs OS file from becoming too large
It's not good reason. Depend file has always been to write. Just not added before.
If not add depends file, we'll install packages in OS, this will cause size problem.
Thanks, Wang Yong