PNG  IHDR* pHYs+ IDATx]n#; cdLb Ǚ[at¤_:uP}>!Usă cag޿ ֵNu`ݼTâabO7uL&y^wFٝA"l[|ŲHLN밪4*sG3|Dv}?+y߉{OuOAt4Jj.u]Gz*҉sP'VQKbA1u\`& Af;HWj hsO;ogTu uj7S3/QzUr&wS`M$X_L7r2;aE+ώ%vikDA:dR+%KzƉo>eOth$z%: :{WwaQ:wz%4foɹE[9<]#ERINƻv溂E%P1i01 |Jvҗ&{b?9g=^wζXn/lK::90KwrюO\!ջ3uzuGv^;騢wq<Iatv09:tt~hEG`v;3@MNZD.1]L:{ծI3`L(÷ba")Y.iljCɄae#I"1 `3*Bdz>j<fU40⨬%O$3cGt]j%Fߠ_twJ;ABU8vP3uEԑwQ V:h%))LfraqX-ۿX]v-\9I gl8tzX ]ecm)-cgʒ#Uw=Wlێn(0hPP/ӨtQ“&J35 $=]r1{tLuǮ*i0_;NƝ8;-vݏr8+U-kruȕYr0RnC]*ެ(M:]gE;{]tg(#ZJ9y>utRDRMdr9㪩̞zֹb<ģ&wzJM"iI( .ꮅX)Qw:9,i좜\Ԛi7&N0:asϓc];=ΗOӣ APqz93 y $)A*kVHZwBƺnWNaby>XMN*45~ղM6Nvm;A=jֲ.~1}(9`KJ/V F9[=`~[;sRuk]rєT!)iQO)Y$V ی ۤmzWz5IM Zb )ˆC`6 rRa}qNmUfDsWuˤV{ Pݝ'=Kֳbg,UҘVz2ﴻnjNgBb{? ߮tcsͻQuxVCIY۠:(V뺕 ٥2;t`@Fo{Z9`;]wMzU~%UA蛚dI vGq\r82iu +St`cR.6U/M9IENDB`# Pseudo file example # Mksquashfs supports pseudo files, these allow fake files, directories, # character and block devices to be specified and added to the Squashfs # filesystem being built, rather than requiring them to be present in the # source directories. # # This, for example, allows device nodes to be added to the filesystem without # requiring root access. # Mksquashfs 4.1 adds support for "dynamic pseudo files" and a modify operation. # Dynamic pseudo files allow files to be dynamically created when Mksquashfs # is run, their contents being the result of running a command or piece of # shell script. The modifiy operation allows the mode/uid/gid of an existing # file in the source filesystem to be modified. # Two Mksquashfs options are supported, -p allows one pseudo file to be # specified #on the command line, and -pf allows a pseudo file to be specified # containing a list of pseduo definitions, one per line. # Pseudo file examples # Run mkquashfs . /tmp/img -pf pseudo-file.examples # to see their effect # Creating dynamic file examples # Create a file "dmesg" containing the output from dmesg. dmesg f 444 root root dmesg # Create a file RELEASE containing the release name, date, build host, and # an incrementing version number. The incrementing version is a side-effect # of executing the shell script, and ensures every time Mksquashfs is run a # new version number is used without requiring any other shell scripting. RELEASE f 444 root root \ if [ ! -e /tmp/ver ]; then \ echo 0 > /tmp/ver; \ fi; \ ver=`cat /tmp/ver`; \ ver=$((ver +1)); \ echo $ver > /tmp/ver; \ echo -n "release x.x"; \ echo "-dev #"$ver `date` "Build host" `hostname` # Copy 10K from the device /dev/sda1 into the file input. Ordinarily # Mksquashfs given a device, fifo, or named socket will place that special file # within the Squashfs filesystem, this allows input from these special # files to be captured and placed in the Squashfs filesystem. input f 444 root root dd if=/dev/sda1 bs=1024 count=10 # Creating a block or character device examples # Create a character device "chr_dev" with major:minor 100:1 and # a block device "blk_dev" with major:minor 200:200, both with root # uid/gid and a mode of rw-rw-rw. chr_dev c 666 root root 100 1 blk_dev b 666 0 0 200 200 # Creating a directory example # create a directory "pseudo_dir" with root uid/gid and mode of r--r--r--. pseudo_dir d 444 root root # Modifying attributes of an existing file exmaple # Change the attributes of the file "INSTALL" in the filesystem to have # root uid/gid and a mode of rw-rw-rw, overriding the attributes obtained # from the source filesystem. INSTALL m 666 root root