From mboxrd@z Thu Jan 1 00:00:00 1970 From: Michael Tremer To: development@lists.ipfire.org Subject: Re: Compress images with XZ Date: Sat, 12 May 2018 20:40:30 +0100 Message-ID: <2aa8a6dde8175ce942e1add5cc06954918049c7f.camel@ipfire.org> In-Reply-To: <606450a7-50ef-d1f3-4e8f-3f7c745b9ed7@ipfire.org> MIME-Version: 1.0 Content-Type: multipart/mixed; boundary="===============6583986047839355695==" List-Id: --===============6583986047839355695== Content-Type: text/plain; charset="utf-8" Content-Transfer-Encoding: quoted-printable Hi, On Sat, 2018-05-12 at 16:14 +0200, Matthias Fischer wrote: > HI, >=20 > On 11.05.2018 22:27, Michael Tremer wrote: > > Hey Matthias, > >=20 > > are you still working on this? >=20 > Its still on my list, but I must confess: I didn't get a grip on this yet. > =20 > > I am asking because I just noticed that the new next build is about 50MB = larger > > than the old one due to the larger kernel and loads more of firmware file= s. >=20 > Yes, I saw this too. I was waiting for you to ask... ;-) :) > I'll try to explain what I did and where I'm stuck: >=20 > > ... > > > >=20 > > > > On 06.02.2018 02:05, Michael Tremer wrote: > > > > > > ... > > > > > > ((XZ_MEM=3D(($HOST_MEM)/10)*7)) && XZ_MEM=3D${XZ_MEM}MiB > > > > >=20 > > > > > You can write this even short: > > > > >=20 > > > > > XZ_MEM=3D"$(( HOST_MEM * 7 / 10 ))MiB" > > > >=20 > > > > Oneliner! Yes. I was looking for something like that... ;-) >=20 > This did work, no problem here. >=20 > > > > ... > > > > # Host memory is ok, calculating XZ memory > > > > XZ_MEM=3D"$(( HOST_MEM * 7 / 10 ))MiB" > > > > XZ_OPT=3D"--threads=3D0 -8 $XZ_MEM" > > > > echo XZ-Memory: $XZ_MEM > > > > echo XZ-Options: $XZ_OPT > > > > echo "XZ memory size is OK (must be at least 700MiB), starting build= ..." > > > > ... > > > > ["echoes" for debugging!] > > > >=20 > > > > This is working. '$XZ_OPT' now gives me: --threads=3D0 -8 5450MiB > > >=20 > > > Will there be some checks in make.sh now that check if at least 1024MB > > > of memory are available for build? > > > ... >=20 > For this, I changed the above ("read -p..."-lines are just for debugging): >=20 > ***SNIP*** > ... > # Get the amount of memory in this build system > HOST_MEM=3D$(system_memory) >=20 > # XZ-TUNING BEGIN > # Checking host memory >=20 > if [ $HOST_MEM -ge 1024 ]; then > print_build_stage "Host-Memory: $HOST_MEM MiB" > print_build_stage "Host memory is OK (must be at least 1024 MiB), calculat= ing XZ memory..." >=20 > # Host memory is ok, calculating XZ memory > echo >=20 > XZ_MEM=3D"$(( HOST_MEM * 7 / 10 ))MiB" > XZ_OPT=3D"--threads=3D0 -8 $XZ_MEM" > print_build_stage "XZ-Memory:" $XZ_MEM > print_build_stage "XZ-Options:" $XZ_OPT > print_build_stage "XZ memory size is OK (must be at least 700 MiB), moving= on..." >=20 > echo > read -p "Press [Enter] key to continue..." >=20 > else >=20 > print_build_stage "Host-Memory: $HOST_MEM MiB" > print_build_stage "Not enough host memory (less than 1024 MiB, consider up= grading)," > print_build_stage "building will use standard XZ options." > XZ_OPT=3D"-T0" # alte Standardparameter einsetzen >=20 > echo > read -p "Press [Enter] key to continue..." >=20 > fi > ... > # XZ-TUNING END >=20 > ***SNAP*** I don't think that this needs to be so verbose. I just just ending the build script when there is less than 1024 MB of memory detected will do. With that little memory you won't only have issues with XZ but also the rest of the build environment. > > > ... > > > I think there should be a warning if > > > not enough memory is available, but we should still try to build. >=20 > As far as I can see, this could be done by replacing the above 'echoes' > with 'print_build_stage'(?). >=20 > E.g.: > print_build_stage "Not enough host memory (less than 1024MiB, consider upgr= ading)," > print_build_stage "building will use standard XZ options." >=20 > > > ... > > > > But. ;-) > > > >=20 > > > > > You can put this probably next under "HOST_MEM=3D$(system_memory)" = and then > > > > > export this to the internal shell by adding the variable to lfsmake= 2 for > > > > > the disk image and ipfiredist for the packages. > > > >=20 > > > > Sorry, I must confess that I don't know exactly how to do this. As I = wrote: > > > > "How do I pass the 'XZ_MEM'-variable to 'cdrom' and 'Config'?" Or in = this case, > > > > XZ_OPT!? >=20 > And this is still my problem! I don't get this to work. How do I "pass" thi= s variable? >=20 > > > > > Then in lfs/cdrom and lfs/Config for the dist > > > > > target, you just need to add the parameters to the command line. > > > >=20 > > > > In 'Config' I changed: > > > >=20 > > > > ... > > > > cd /install/packages/package/tmp/ && XZ_OPT=3D-T0 tar -c -p --numeric= -owner -J > > > > -f > > > > /install/packages/package/files.tar.xz * > > > > ... > > > >=20 > > > > To: > > > > ... > > > > cd /install/packages/package/tmp/ && $XZ_OPT tar -c -p --numeric-owne= r -J -f > > > > /install/packages/package/files.tar.xz * > > > > ... > > > >=20 > > > > > Maybe it is a good idea to have a variable XZ_OPT that adds everyth= ing > > > > > together and is then used in both places. >=20 > I tried that with no luck. I added the variable '$XZ_OPT' to 'lfs/Config' i= n line > 212: >=20 > cd /install/packages/package/tmp/ && $XZ_OPT tar -c -p --numeric-owner... > =20 > But this usually ends - like today - in '_build_packages.log' with: >=20 > ***SNIP*** > ... > #Change xxxKVERxxx to Kernelversion > sed -e "s/xxxKVERxxx/4.14.40/g" -i /install/packages/package/update.sh > cd /install/packages/package && tar cf ../core-upgrade-2.19-$(basename core= /121).ipfire \ > update.sh files.tar.xz ROOTFILES > rm -rf /install/packages/package > sed -e "s/NAME/core-upgrade/g" \ > -e "s/VER/2.19/g" \ > -e "s/RELEASE/$(basename core/121)/g" \ > -e "s/DEPS//g" \ > -e "s/SIZE/`ls -l \/install\/packages\/core-upgrade-2.19-$(basename core/1= 21).ipfire | awk '{ print $5 }'`/g" \ > < /usr/src/src/pakfire/meta > /install/packages/meta-core-upgrade-$(basena= me core/121) > May 12 13:39:49: Building directfb DirectFB-1.7.7.tar.gz checksum OK > + cd /usr/src/lfs > + make -f directfb LFS_BASEDIR=3D/usr/src dist > '/usr/src/config/rootfiles/packages/i586/directfb' -> '/install/packages/pa= ckage/ROOTFILES' > /bin/sh: Z_OPT: command not found > make: *** [directfb:60: dist] Error 127 > ... > ***SNAP*** >=20 > Why "Z_OPT"? Make required you to write the variable name in brackets: $(XZ_OPT) instead of $XZ_OPT. It's not shell. >=20 > > > >=20 > > > > I added the other xz-options and created XZ_OPT as shown above, but in > > > > 'cdrom' there is an 'export XZ_OPT =3D ...'-line and I don't know how= to > > > > handle these line. > > > > Is it still necessary? > > >=20 > > > No, that is no longer necessary and can be removed. We should just add > > > it to the tar command just like it is done in lfs/Config. >=20 > Understanding problem: > What do mean with "adding it to the tar command"? For me, this sounds as if > we need an "export $XZ_OPT"-line here... Yes, unfortunately like that. Or you can just pass it before the tar command is executed. Like this: XZ_OPT=3D"$(XZ_OPT)" tar ... That will also export the variable but only for that command and nothing else. >=20 > > > > Do I have to 'export' the XZ_OPT'-variable in 'make.sh'? > > >=20 > > > No, because the chroot environment will throw away all environment > > > variables from the host system and then set them again. That's why we > > > have this enterchroot() function that does this with the env command. > > >=20 > > > > And how do I "add" this variable to 'lfsmake2' and 'ipfiredist'(-func= tion)? > > >=20 > > > Just have a look at the functions. There should be loads of examples > > > where we pass other variables and you just need to add this one, too. >=20 > I think I've found these "examples" and tried several "local XZ_OPT=3D'$XZ_= OPT'" > placements and versions in 'lfsmake2' and 'ipfiredist' but none seemed to w= ork > as I wanted. Why not? Just try to add "echo $(XZ_OPT)" to one of the lfs scripts and see if you can see the desired output. Did you look at enterchroot() yet? > > > > Sorry if these questions sound simple, but I'm guessing a bit too muc= h while > > > > trying to get a grip on this. > > > >=20 > > >=20 > > > This is absolutely fine to sort this out first and then send the patch > > > :) That's what this list is for. >=20 > After several attempts I stopped guessing and concentrated on something > I could handle. Somehow I've got the feeling I'm making some really simple > mistakes - for reviewing I added my current test patches as attachments. No this is really tricky. Although the patch in the will only be a few lines, this is really not just writing it down and sending it. > Please advise... ;-) Done. Please send more questions. Best, -Michael >=20 > Best, > Matthias --===============6583986047839355695==--