Yet another minor fixes PR (#395)

* postmarketos-splash: print filename to log file
* postmarketos-mkinitfs: removed old unused check
The variable name was wrong and never happened
https://github.com/postmarketOS/pmbootstrap/pull/395#pullrequestreview-56977439
This commit is contained in:
Pablo Castellano 2017-08-21 17:08:14 +02:00 committed by Oliver Smith
parent 5eca2d9808
commit e68f54356b
4 changed files with 5 additions and 10 deletions

View File

@ -1,6 +1,6 @@
pkgname=postmarketos-mkinitfs
pkgver=0.3.3
pkgrel=4
pkgrel=5
pkgdesc="Tool to generate initramfs images for postmarketOS"
url="https://github.com/postmarketOS"
# multipath-tools: kpartx
@ -27,4 +27,4 @@ package() {
}
sha512sums="8607f772b1e5854cde27f6d7df3ce083095eb2e13d13c5ef59f0b5820777220cd0f22019a888e5aa884a8833646813e85bf4e94fbe2182a957ec528cc5bee355 init.sh.in
2331fe9a89ba58348b41fbfdeb6f4daeff3f6ef161d1b7582c3e900baba377fa9411efa0b052ea5c2ae22f75bc48f6b8f38dafad0bd836a0319906e70482898c init_functions.sh
c844c15fe19ff63e6578cf06d183e0f7178f429e341296e7cdb16674fbf8795e9ffcf9b292c3437cf817dc0199725bd74255b254ecaa77c5f3176c85508933e1 mkinitfs.sh"
ef1481ef45e786486fb8e9939f756afb1d873a92546468d3dda3065ef46404be7e9847ab1f630fa6cf3e4ab99bdb116401093bbb1bbc882ea85ea824cdf7e389 mkinitfs.sh"

View File

@ -24,11 +24,6 @@ parse_commandline()
outfile_extra=$2-extra
kernel=$3
modules_path="/lib/modules/${kernel}"
if [ ! -d ${abi_path} ]; then
echo "ERROR: Modules path not found: ${modules_path}"
exit 1
fi
}
create_folders()

View File

@ -1,6 +1,6 @@
pkgname=postmarketos-splash
pkgver=1
pkgrel=2
pkgrel=3
pkgdesc="Splash screen for postmarketOS"
url="https://github.com/postmarketos"
arch="noarch"
@ -22,5 +22,5 @@ package() {
"$pkgdir"/etc/postmarketos/splash.ini
}
sha512sums="5a89cdaeec572262ae48248a0c92721bd53e40ddf83167be3ede6fef656e540f6f3cf8eac3d17ae9755ab523a69f760732d05b0de436347ed91272ca732ac938 make-splash.py
sha512sums="cd3593579d357bb16fd9c6754e66eb8702e7d6199c5e9f7024735f410d5365ff3d1a7199b8075aa7b502785c2de0f9302f8d492d3e005688e4f93883d344c3ac make-splash.py
82234147a5e907203edb8f8531aba63d96156b600b148a8d986b1978ce2641ebf875880f4075709e8b5e8f92948598319f5157473ddcc14cf00be004255e44bc config.ini"

View File

@ -6,7 +6,7 @@ import sys
def make_splash(width, height, filename, landscape=False, text="", config_file=None, center=False):
print("Creating {}x{} splashscreen".format(width, height))
print("Creating ({}x{}) splashscreen {}".format(width, height, os.path.basename(filename)))
config = configparser.ConfigParser()
if config_file is not None: