如何在 ubuntu 18.04 LTS 上安裝 genimage

如何在 ubuntu 18.04 LTS 上安裝 genimage

我想使用 genimage 工具為我的嵌入式設備生成檔案系統,但似乎默認情況下它沒有安裝在 Ubuntu 18.04 中,因為當我想使用它時,我得到了genimage: not found 那麼這裡有人知道如何安裝它嗎?

答案1

#!/bin/bash

# download and create genimage by nagel

#update ubuntu
sudo apt install -y autoconf
sudo apt install -y gcc
sudo apt-get install -y make
sudo apt-get install -y genext2fs
sudo apt-get update -y
sudo apt-get install -y libconfuse-dev

rm -rf download

git clone https://github.com/pengutronix/genimage.git download

pushd download 

./autogen.sh

./configure CFLAGS='-g -O0' --prefix=/usr

make

popd

if [ -e download/genimage ]
then
    cp download/genimage .
    rm -rf download
    echo "creation of genimage successful"
else
    echo "creation of genimage failed"
fi;

相關內容