<?xml version="1.0" encoding="UTF-8"?>
<rss xmlns:content="http://purl.org/rss/1.0/modules/content/" xmlns:dc="http://purl.org/dc/elements/1.1/" xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:taxo="http://purl.org/rss/1.0/modules/taxonomy/" version="2.0">
  <channel>
    <title>topic Re: debootstrap Debian Buster on imx8mminievk in i.MX Processors</title>
    <link>https://community.nxp.com/t5/i-MX-Processors/debootstrap-Debian-Buster-on-imx8mminievk/m-p/881922#M133715</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Well, found out that /lib/firmware, /lib/modules and lib/modules/4.1xxxx/extra folders were not copied to chroot.&lt;/P&gt;&lt;P&gt;1. Copy missing folders containing qca9377 firmware and the kernel module&lt;/P&gt;&lt;P&gt;2. Fix modprobe dependencies: depmod -A&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Then wlan0 appears.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Wed, 05 Jun 2019 06:21:06 GMT</pubDate>
    <dc:creator>pavel_</dc:creator>
    <dc:date>2019-06-05T06:21:06Z</dc:date>
    <item>
      <title>debootstrap Debian Buster on imx8mminievk</title>
      <link>https://community.nxp.com/t5/i-MX-Processors/debootstrap-Debian-Buster-on-imx8mminievk/m-p/881919#M133712</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;This guide will show you how to debootstrap Debian Buster on &lt;A href="http://nxp.com/imx8mminievk" rel="nofollow noopener noreferrer" target="_blank"&gt;imx8mminievk &lt;/A&gt;on a SD-card, but will very likely help you on other systems as well. First you need a Linux installation present on the imx8mminievk.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Follow the &lt;A href="https://www.nxp.com/support/developer-resources/software-development-tools/i.mx-developer-resources/evaluation-kit-for-the-i.mx-8m-mini-applications-processor:8MMINILPD4-EVK?tab=In-Depth_Tab" rel="nofollow noopener noreferrer" target="_blank"&gt;Getting Started guide &lt;/A&gt;to install a Linux System on the board. In short it is done in the following 5 steps:&lt;/P&gt;&lt;OL&gt;&lt;LI&gt;&amp;nbsp;Download &lt;A href="https://www.nxp.com/webapp/Download?colCode=L4.14.78_1.0.0_MX8MM&amp;amp;appType=license" rel="nofollow noopener noreferrer" target="_blank"&gt;L4.14.78_1.0.0_ga_images_MX8MMEVK.zip&lt;/A&gt;&lt;/LI&gt;&lt;LI&gt;Download &lt;A href="https://github.com/NXPmicro/mfgtools/releases" rel="nofollow noopener noreferrer" target="_blank"&gt;uuu&lt;/A&gt;&lt;/LI&gt;&lt;LI&gt;Put board in download mode (SDP) [1010xxxxxx] [xxxxxxxxx0]&lt;/LI&gt;&lt;LI&gt;run uuu with L4.14.78_1.0.0_ga_images_MX8MMEVK.zip as argument&lt;/LI&gt;&lt;LI&gt;plug in and turn on the board&lt;/LI&gt;&lt;/OL&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Now put the board back in eMMC boot mode [0110110001] [0001010100] and start up the supplied Linux system. All logins are done with root (no password).&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Plug in a SD-card and copy the partition table:&lt;/P&gt;&lt;PRE&gt;sfdisk -d /dev/mmcblk2 | sfdisk /dev/mmcblk1&lt;/PRE&gt;&lt;P&gt;Copy data from the boot partition:&lt;/P&gt;&lt;PRE&gt;dd if=/dev/mmcblk2p1 of=/dev/mmcblk1p1 bs=1M&lt;/PRE&gt;&lt;P&gt;Resize data partition on the target (SD-card):&lt;/P&gt;&lt;PRE&gt;echo ",+" | sfdisk -N2 /dev/mmcblk1&lt;/PRE&gt;&lt;P&gt;Create file system and mount it:&lt;/P&gt;&lt;PRE&gt;mkfs.ext4 /dev/mmcblk1p2
mkdir /mnt/target
mount /dev/mmcblk1p2 /mnt/target

&lt;/PRE&gt;&lt;P&gt;To be able to bootstrap the system we need &lt;A href="http://ftp.de.debian.org/debian/pool/main/d/debootstrap/debootstrap_1.0.114_all.deb" rel="nofollow noopener noreferrer" target="_blank"&gt;debootstrap &lt;/A&gt;and &lt;A href="http://ftp.de.debian.org/debian/pool/main/b/binutils/binutils_2.31.1-15_arm64.deb" rel="nofollow noopener noreferrer" target="_blank"&gt;binutils,&lt;/A&gt; &lt;A href="http://ftp.de.debian.org/debian/pool/main/b/binutils/libbinutils_2.31.1-15_arm64.deb" rel="nofollow noopener noreferrer" target="_blank"&gt;(1),&lt;/A&gt; &lt;A href="http://ftp.de.debian.org/debian/pool/main/b/binutils/binutils-aarch64-linux-gnu_2.31.1-15_arm64.deb" rel="nofollow noopener noreferrer" target="_blank"&gt;(2)&lt;/A&gt; available on the system. Use ar to extract the data.tar on another computer (or 7zip if you use Windows), copy the tar-files with scp/winscp onto the board and extract with tar -xf. (Because 7zip/windows cant handle symlinks).&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Set up symbolic links for debootstrap, ar and libbfd:&lt;/P&gt;&lt;PRE&gt;ln -s /home/root/usr/sbin/debootstrap /usr/sbin/
ln -s /home/root/usr/share/debootstrap /usr/share/
ln -s /home/root/usr/bin/ar /usr/bin/
ln -s /home/root/usr/lib/aarch64-linux-gnu/libbfd-2.31.1-system.so /usr/lib/&lt;/PRE&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Start the debootstrap:&lt;/P&gt;&lt;PRE&gt;debootstrap --arch arm64 buster /mnt/target &lt;A href="http://ftp.debian.org/debian" rel="nofollow noopener noreferrer" target="test_blank"&gt;http://ftp.debian.org/debian&lt;/A&gt;&lt;/PRE&gt;&lt;P&gt;Configuring the target:&lt;/P&gt;&lt;PRE&gt;#copy mtab (will be overwritten later at restart)
cp /etc/mtab /mnt/target/etc/mtab

#bind virtual file systems
mount -o bind /dev /mnt/target/dev
mount -o bind /proc /mnt/target/proc
mount -o bind /sys /mnt/target/sys

#enter target
chroot /mnt/target /bin/bash

#set up fstab
echo UUID=$(blkid /dev/mmcblk1p2 -o value|head -n1) / ext4 defaults,errors=remount-ro 0 1 &amp;gt; /etc/fstab

#put hostname in /etc/hosts
sed -i "1 a 127.0.0.1 $(cat /etc/hostname)" /etc/hosts

#install sudo
apt install sudo

#remove root login
passwd -d root
passwd -l root&lt;/PRE&gt;&lt;PRE&gt;#add new user
adduser debian&lt;/PRE&gt;&lt;P&gt;Don't forget:&lt;/P&gt;&lt;PRE&gt;addgroup debian sudo&lt;/PRE&gt;&lt;P&gt;Install more packages (not necessary):&lt;/P&gt;&lt;PRE&gt;tasksel --new-install&lt;/PRE&gt;&lt;P&gt;Exit the chroot:&lt;/P&gt;&lt;PRE&gt;exit&lt;/PRE&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;You're now ready to boot your new Debian installation. Put the card in MicroSD boot mode [0110110010] [0001101000]. And issue a reboot command:&lt;/P&gt;&lt;PRE&gt;reboot&lt;/PRE&gt;&lt;P&gt;If everything went smoothly you should now see your system start with Debian Buster. It's also possible to debootstrap Ubuntu or other Debian based systems.&lt;/P&gt;&lt;P&gt;Feel free to comment or ask questions.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="text-decoration: line-through;"&gt;I'll soon put up a guide how to build the linux kernel from source.&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;A href="https://community.nxp.com/thread/499895" rel="nofollow noopener noreferrer" target="_blank"&gt;https://community.nxp.com/thread/499895&lt;/A&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;With inspiration from: &lt;A class="link-titled" href="https://www.linuxquestions.org/questions/debian-26/how-to-install-debian-using-debootstrap-4175465295/" rel="nofollow noopener noreferrer" title="https://www.linuxquestions.org/questions/debian-26/how-to-install-debian-using-debootstrap-4175465295/" target="_blank"&gt;HOW-TO: Install Debian using debootstrap.&lt;/A&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 05 Apr 2019 07:51:00 GMT</pubDate>
      <guid>https://community.nxp.com/t5/i-MX-Processors/debootstrap-Debian-Buster-on-imx8mminievk/m-p/881919#M133712</guid>
      <dc:creator>andreasgustafss</dc:creator>
      <dc:date>2019-04-05T07:51:00Z</dc:date>
    </item>
    <item>
      <title>Re: debootstrap Debian Buster on imx8mminievk</title>
      <link>https://community.nxp.com/t5/i-MX-Processors/debootstrap-Debian-Buster-on-imx8mminievk/m-p/881920#M133713</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Moderator: Please put this up as a Blog post.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 05 Apr 2019 07:52:20 GMT</pubDate>
      <guid>https://community.nxp.com/t5/i-MX-Processors/debootstrap-Debian-Buster-on-imx8mminievk/m-p/881920#M133713</guid>
      <dc:creator>andreasgustafss</dc:creator>
      <dc:date>2019-04-05T07:52:20Z</dc:date>
    </item>
    <item>
      <title>Re: debootstrap Debian Buster on imx8mminievk</title>
      <link>https://community.nxp.com/t5/i-MX-Processors/debootstrap-Debian-Buster-on-imx8mminievk/m-p/881921#M133714</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Nice HowTo!&lt;/P&gt;&lt;P&gt;However, wireless is missing when booting in Debian.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;and&lt;/P&gt;&lt;P&gt;Tasksel exits with an error:&lt;/P&gt;&lt;P&gt;tasksel: apt-get failed (100)&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 03 Jun 2019 12:14:59 GMT</pubDate>
      <guid>https://community.nxp.com/t5/i-MX-Processors/debootstrap-Debian-Buster-on-imx8mminievk/m-p/881921#M133714</guid>
      <dc:creator>pavel_</dc:creator>
      <dc:date>2019-06-03T12:14:59Z</dc:date>
    </item>
    <item>
      <title>Re: debootstrap Debian Buster on imx8mminievk</title>
      <link>https://community.nxp.com/t5/i-MX-Processors/debootstrap-Debian-Buster-on-imx8mminievk/m-p/881922#M133715</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Well, found out that /lib/firmware, /lib/modules and lib/modules/4.1xxxx/extra folders were not copied to chroot.&lt;/P&gt;&lt;P&gt;1. Copy missing folders containing qca9377 firmware and the kernel module&lt;/P&gt;&lt;P&gt;2. Fix modprobe dependencies: depmod -A&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Then wlan0 appears.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 05 Jun 2019 06:21:06 GMT</pubDate>
      <guid>https://community.nxp.com/t5/i-MX-Processors/debootstrap-Debian-Buster-on-imx8mminievk/m-p/881922#M133715</guid>
      <dc:creator>pavel_</dc:creator>
      <dc:date>2019-06-05T06:21:06Z</dc:date>
    </item>
    <item>
      <title>Re: debootstrap Debian Buster on imx8mminievk</title>
      <link>https://community.nxp.com/t5/i-MX-Processors/debootstrap-Debian-Buster-on-imx8mminievk/m-p/881923#M133716</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;I'm not using wlan so have not noticed this. Thank you for the fix!&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 13 Jun 2019 08:54:57 GMT</pubDate>
      <guid>https://community.nxp.com/t5/i-MX-Processors/debootstrap-Debian-Buster-on-imx8mminievk/m-p/881923#M133716</guid>
      <dc:creator>andreasgustafss</dc:creator>
      <dc:date>2019-06-13T08:54:57Z</dc:date>
    </item>
    <item>
      <title>Re: debootstrap Debian Buster on imx8mminievk</title>
      <link>https://community.nxp.com/t5/i-MX-Processors/debootstrap-Debian-Buster-on-imx8mminievk/m-p/881924#M133717</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Andreas,&lt;/P&gt;&lt;SPAN&gt; &lt;/SPAN&gt;&lt;P&gt;&lt;/P&gt;&lt;SPAN&gt; &lt;/SPAN&gt;&lt;P&gt;I followed your steps and&amp;nbsp;after switching to SD boot, the board does not do anything. I see no output on the debug console either. If I switch back to the eMMC boot option the loaded linux image boots successfully. I tried twice to create the sd card without error (besides that I had to unmount some auto-mounted partitions to make sfdisk execute without complaint). But no success so far. Do I have to adjust something else?&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 04 Nov 2019 13:08:58 GMT</pubDate>
      <guid>https://community.nxp.com/t5/i-MX-Processors/debootstrap-Debian-Buster-on-imx8mminievk/m-p/881924#M133717</guid>
      <dc:creator>s_goetz</dc:creator>
      <dc:date>2019-11-04T13:08:58Z</dc:date>
    </item>
    <item>
      <title>Re: debootstrap Debian Buster on imx8mminievk</title>
      <link>https://community.nxp.com/t5/i-MX-Processors/debootstrap-Debian-Buster-on-imx8mminievk/m-p/881925#M133718</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Are you sure that the partitions are created correctly on the sd-card?&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 08 Nov 2019 09:27:28 GMT</pubDate>
      <guid>https://community.nxp.com/t5/i-MX-Processors/debootstrap-Debian-Buster-on-imx8mminievk/m-p/881925#M133718</guid>
      <dc:creator>andreasgustafss</dc:creator>
      <dc:date>2019-11-08T09:27:28Z</dc:date>
    </item>
    <item>
      <title>Re: debootstrap Debian Buster on imx8mminievk</title>
      <link>https://community.nxp.com/t5/i-MX-Processors/debootstrap-Debian-Buster-on-imx8mminievk/m-p/881926#M133719</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Andreas,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;thank you for the reply. Yes I am. A FAT boot partiation and a ext4 &lt;/P&gt;&lt;P&gt;rootFs partition are definitly create. I have been playing with &lt;/P&gt;&lt;P&gt;RaspberryPI-like device which use the same sd card setup&lt;/P&gt;&lt;P&gt;My normal approach for those devices is to format the sd card (low &lt;/P&gt;&lt;P&gt;level) and use Win32 DiskImager to write preconfigured image onto this &lt;/P&gt;&lt;P&gt;card. This worked always so far.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;The approach pointed out in your description was new to me (deboostrap) &lt;/P&gt;&lt;P&gt;but the guide was explained good enough for me to step through it. &lt;/P&gt;&lt;P&gt;Although I must admit, that I do not understand every command :smileyhappy:&lt;/P&gt;&lt;P&gt;Meanwhile I have loaded a binary image of another device which is based &lt;/P&gt;&lt;P&gt;on the iMX8 mini and used my standard approach but even with that sd &lt;/P&gt;&lt;P&gt;card the dev board does nothing but lighting the PWR-LED near the USB &lt;/P&gt;&lt;P&gt;power connector. I double checked the boot switches already. So for the &lt;/P&gt;&lt;P&gt;moment I have no idea what else I could do.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;For my current research it would be sufficient to have a Debian running &lt;/P&gt;&lt;P&gt;from eMMC. So is it possible to load such an image into eMMC via the &lt;/P&gt;&lt;P&gt;uuu.exe? I would like to install some apt packages from the regular &lt;/P&gt;&lt;P&gt;debian repository online.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Kind regards&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Sebastian&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Am 08.11.2019 um 10:28 schrieb andreasgustafsson:&lt;/P&gt;&lt;BLOCKQUOTE level="1"&gt;&lt;/BLOCKQUOTE&gt;&lt;P&gt;&amp;gt;&lt;/P&gt;&lt;BLOCKQUOTE level="1"&gt;&lt;P&gt;  NXP Community&lt;/P&gt;&lt;P&gt;  &amp;lt;https://community.freescale.com/resources/statics/1000/35400-NXP-Community-Email-banner-600x75.jpg&amp;gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;/BLOCKQUOTE&gt;&lt;P&gt;&amp;gt;&lt;/P&gt;&lt;BLOCKQUOTE level="1"&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;    Re: debootstrap Debian Buster on imx8mminievk&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;reply from Andreas Gustafsson &lt;/P&gt;&lt;P&gt;&amp;lt;https://community.nxp.com/people/andreasgustafsson?et=watches.email.thread&amp;gt; &lt;/P&gt;&lt;P&gt;in /i.MX Processors/ - View the full discussion &lt;/P&gt;&lt;P&gt;&amp;lt;https://community.nxp.com/message/1229993?commentID=1229993&amp;amp;et=watches.email.thread#comment-1229993&amp;gt;&lt;/P&gt;&lt;/BLOCKQUOTE&gt;&lt;P&gt;&amp;gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 08 Nov 2019 09:36:58 GMT</pubDate>
      <guid>https://community.nxp.com/t5/i-MX-Processors/debootstrap-Debian-Buster-on-imx8mminievk/m-p/881926#M133719</guid>
      <dc:creator>s_goetz</dc:creator>
      <dc:date>2019-11-08T09:36:58Z</dc:date>
    </item>
    <item>
      <title>Re: debootstrap Debian Buster on imx8mminievk</title>
      <link>https://community.nxp.com/t5/i-MX-Processors/debootstrap-Debian-Buster-on-imx8mminievk/m-p/1247576#M170999</link>
      <description>&lt;PRE&gt;cp -ra /lib/firmware /lib/modules /mnt/target/lib/&lt;/PRE&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Wed, 17 Mar 2021 20:20:11 GMT</pubDate>
      <guid>https://community.nxp.com/t5/i-MX-Processors/debootstrap-Debian-Buster-on-imx8mminievk/m-p/1247576#M170999</guid>
      <dc:creator>andreasgustafss</dc:creator>
      <dc:date>2021-03-17T20:20:11Z</dc:date>
    </item>
    <item>
      <title>Re: debootstrap Debian Buster on imx8mminievk</title>
      <link>https://community.nxp.com/t5/i-MX-Processors/debootstrap-Debian-Buster-on-imx8mminievk/m-p/1255609#M171940</link>
      <description>&lt;P&gt;Enable docker, contains installation of arm/arm64 ubuntu rootfs.&amp;nbsp;&lt;/P&gt;
&lt;P&gt;It is very similar to install arm/arm64 debian.&lt;/P&gt;
&lt;P&gt;&lt;BR /&gt;Docker On i.MX8MM With Ubuntu&lt;BR /&gt;&lt;A href="https://community.nxp.com/t5/i-MX-Processors-Knowledge-Base/Docker-On-i-MX8MM-With-Ubuntu/ta-p/1115294" target="_blank"&gt;https://community.nxp.com/t5/i-MX-Processors-Knowledge-Base/Docker-On-i-MX8MM-With-Ubuntu/ta-p/1115294&lt;/A&gt;&lt;/P&gt;
&lt;P&gt;&lt;BR /&gt;Docker On i.MX8QXP With Ubuntu&lt;BR /&gt;&lt;A href="https://community.nxp.com/t5/i-MX-Processors-Knowledge-Base/Docker-On-i-MX8QXP-With-Ubuntu/ta-p/1105918" target="_blank"&gt;https://community.nxp.com/t5/i-MX-Processors-Knowledge-Base/Docker-On-i-MX8QXP-With-Ubuntu/ta-p/1105918&lt;/A&gt;&lt;/P&gt;
&lt;P&gt;&lt;BR /&gt;Docker On i.MX6UL With Ubuntu16.04&lt;BR /&gt;&lt;A href="https://community.nxp.com/t5/i-MX-Processors-Knowledge-Base/Docker-On-i-MX6UL-With-Ubuntu16-04/ta-p/1101482" target="_blank"&gt;https://community.nxp.com/t5/i-MX-Processors-Knowledge-Base/Docker-On-i-MX6UL-With-Ubuntu16-04/ta-p/1101482&lt;/A&gt;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Thu, 01 Apr 2021 07:32:39 GMT</pubDate>
      <guid>https://community.nxp.com/t5/i-MX-Processors/debootstrap-Debian-Buster-on-imx8mminievk/m-p/1255609#M171940</guid>
      <dc:creator>BiyongSUN</dc:creator>
      <dc:date>2021-04-01T07:32:39Z</dc:date>
    </item>
    <item>
      <title>Re: debootstrap Debian Buster on imx8mminievk</title>
      <link>https://community.nxp.com/t5/i-MX-Processors/debootstrap-Debian-Buster-on-imx8mminievk/m-p/1436913#M188807</link>
      <description>&lt;P&gt;Greate post! Is it possible to setup Debian with Wayland and to have hardware-accelerated OpenGL?&lt;/P&gt;</description>
      <pubDate>Thu, 31 Mar 2022 08:53:58 GMT</pubDate>
      <guid>https://community.nxp.com/t5/i-MX-Processors/debootstrap-Debian-Buster-on-imx8mminievk/m-p/1436913#M188807</guid>
      <dc:creator>VincasD</dc:creator>
      <dc:date>2022-03-31T08:53:58Z</dc:date>
    </item>
  </channel>
</rss>

