Skip to content

Commit

Permalink
Update netdde patches to work with upstream
Browse files Browse the repository at this point in the history
  • Loading branch information
flavioc committed Aug 7, 2024
1 parent a936f3f commit fafbd7b
Show file tree
Hide file tree
Showing 4 changed files with 270 additions and 271 deletions.
17 changes: 9 additions & 8 deletions compile.sh
Original file line number Diff line number Diff line change
Expand Up @@ -94,8 +94,8 @@ install_gpg_error() {
}

install_gcrypt() {
mkdir -p $GCRYPT_SRC.obj &&
cd $GCRYPT_SRC.obj &&
create_temp $GCRYPT_SRC.obj &&
pushd $GCRYPT_SRC.obj &&
$SOURCE/$GCRYPT_SRC/configure --prefix=$SYS_ROOT \
--build="$HOST" \
--host="$CROSS_HURD_TARGET" \
Expand All @@ -104,7 +104,7 @@ install_gcrypt() {
--disable-asm &&
make -j$PROCS &&
make -j$PROCS install &&
cd ..
popd
}

install_gnumach() {
Expand Down Expand Up @@ -338,17 +338,18 @@ install_grub() {
}

install_libxcrypt() {
mkdir -p $LIBXCRYPT_SRC.obj &&
cd $LIBXCRYPT_SRC.obj &&
rm -rf $LIBXCRYPT_SRC.obj &&
mkdir -p $LIBXCRYPT_SRC.obj &&
pushd $LIBXCRYPT_SRC.obj &&
$SOURCE/$LIBXCRYPT_SRC/configure --prefix=$SYS_ROOT \
--build=$HOST \
--host=$CROSS_HURD_TARGET \
--enable-hashes=strong,glibc \
--enable-obsolete-api=no \
--disable-failure-tokens
make -j$PROCS &&
--disable-failure-tokens &&
make -j$PROCS &&
make -j $PROCS install &&
cd ..
popd
}

install_dmidecode() {
Expand Down
Loading

0 comments on commit fafbd7b

Please sign in to comment.