summaryrefslogtreecommitdiff
path: root/src/chroot-tools/librechroot
AgeCommit message (Collapse)Author
2017-07-04librechroot: make sure that makepkg.conf is always parsed as textv20170705Luke Shumaker
https://lists.parabola.nu/pipermail/dev/2017-June/005576.html
2017-05-25start moving things to use the libremessages exit codesLuke Shumaker
2017-05-24Merge conf.sh:load_files and conf.sh:check_vars into load_confLuke Shumaker
2017-05-04random tidy upLuke Shumaker
2017-04-20Don't use subshells in local/export/declare commands.Luke Shumaker
Only make this change in places where it shouldn't make a difference, and something weird has to be going on for the subshell to fail. This is on par with checking the return value of malloc. We don't need tests for each of these failure cases.
2017-04-20Variables inside of $((...)) don't need a $ in front of them.Luke Shumaker
These were found with the help of shellcheck.
2017-04-20Quote unquoted strings that should probably be quoted.Luke Shumaker
These were found with the help of shellcheck. Nothing more complicated than wrapping a variable in double quotes has been done.
2017-04-11librechroot: Update for new sync_chroot usage.Luke Shumaker
I changed how it works in devtools-par.
2017-04-11librechroot: Load makechrootpkg.sh into the main process.Luke Shumaker
makechrootpkg.sh has now been patched to make it ok with `set -euE`.
2017-04-11librechroot: Tidy up.Luke Shumaker
2016-05-23librechroot: give a better error if an invalid -A flag is givenLuke Shumaker
2016-05-11librechroot: Don't use the host CacheDir for ARM chroots on x86 hosts.v20160511Luke Shumaker
2016-05-11librechroot: tidy qemu-arm checkLuke Shumaker
2016-05-10librechroot: Revert running arch-nspawn and mkarchroot in subshells.v20160510Luke Shumaker
It screws with the exit status. Instead, take advantage of dynamic scoping to avoid mutating arch_nspawn_flags (the reason I switched them to subshells).
2016-05-09librechroot: give a good error message if binfmt_misc isn't configuredLuke Shumaker
2016-05-09librechroot: Support using qemu for ARM builds on x86 via binfmt_misc.Luke Shumaker
2016-05-09librechroot: skip initialization steps when mode=deleteLuke Shumaker
When viewing this diff, you should ignore whitespace change. It just moved an "if" block up a ways.
2016-04-17librechroot: have the -A flag set Architecture in pacman.confLuke Shumaker
2016-04-15librechroot: run mkarchroot in its own mount namespace.Luke Shumaker
Fixes https://labs.parabola.nu/issues/667
2016-04-15Use a better technique for dealing with empty arrays when `set -u`.Luke Shumaker
https://news.ycombinator.com/item?id=11497636
2016-04-15librechroot: librexgettext was getting confusedLuke Shumaker
2016-04-14librechroot: add -A flag to set the architecture.Luke Shumaker
Takes advantage of pacman 5.0.1-2.parabola4 shipping the default config files for all architectures.
2016-04-14librechroot: minor fixupsLuke Shumaker
2015-04-13librechroot help: remove extra whitespaceLuke Shumaker
2015-01-05librechroot: tidy upLuke Shumaker
2015-01-05chroot-tools: Drop support for CHROOTARCHLuke Shumaker
This only existed to work around a compatibility-breaking change in the Linux kernel. `uname -m` for MIPS-64 little-endian changed from "mips64el" to "mips64". This meant that all existing packages' CARCH was no longer == `uname -m`, so we had to de-unify the two, as we couldn't do `setarch $CARCH`. I'm removing this kludge because: - We no longer actively support MIPS. - Until two commits ago, it didn't work anyway - We should avoid this on new architectures going forward (ARM, anyone?) - It's gross.
2015-01-04Generate the duplicated code in chcleanupLuke Shumaker
2014-11-25librechroot: touch upLuke Shumaker
2014-11-06librechroot: touch up messagesLuke Shumaker
2014-07-05quote calls to librelibLuke Shumaker
2014-06-16Merge branch 'master' of ↵Luke Shumaker
ssh://projects.parabolagnulinux.org:1863/~git/packages/libretools Conflicts: src/librefetch/librefetch.8.ronn
2014-05-11Create CHROOTARCH in chroot.conf for when $CARCH != $(uname -m)Luke Shumaker
This is the case on mips, where CARCH is misp64el, but uname -m is mips64.
2014-03-25Fix quoting/escaping with 'rm' in traps.Luke Shumaker
2014-03-23Most of my desired re-licensings were authorized on the dev listLuke Shumaker
2014-03-22Audit the authors and copyright years of files against git logsLuke Shumaker
2014-03-21Do an audit of copyright and license claimsLuke Shumaker
2014-03-06Update for the new version of systemdv20140306Luke Shumaker
2014-02-09fix `librechroot update`Luke Shumaker
2014-02-05librechroot update: correctly handle 'filesystem' upgradesLuke Shumaker
2014-02-02librechroot: fix setting CHROOTEXTRAPKGLuke Shumaker
2014-02-02Normalize to use the string "Copyright (C)"Luke Shumaker
2014-02-02I forgot to bump the copyright year on all the files I've touched this yearLuke Shumaker
2014-01-20normalize to use >&2 instead of /dev/stderrLuke Shumaker
2014-01-18librechroot: fix commentLuke Shumaker
2014-01-18I went comma-happy when writing librechroot:usage()Luke Shumaker
2013-11-03librechroot: correct commentLuke Shumaker
2013-11-02librechroot: when detecting mount options, set LC_ALL instead of LANGLuke Shumaker
2013-10-30librechroot: check argument countsLuke Shumaker
2013-10-26librechroot: check that copydir isn't mounted nosuid/noexecLuke Shumaker
2013-10-26librechroot: die if stdin isn't a TTY, be more verbose about it.Luke Shumaker