diff --git a/recipes/core/userutils/recipe.toml b/recipes/core/userutils/recipe.toml index ec1920b8c1902fe8aaaf8cca04d15a31ac664bba..ef6c897bde1ff4a45e24b085e392997149d78e95 100644 --- a/recipes/core/userutils/recipe.toml +++ b/recipes/core/userutils/recipe.toml @@ -6,8 +6,8 @@ template = "custom" script = """ cookbook_cargo cp -rv "${COOKBOOK_SOURCE}/res" "${COOKBOOK_STAGE}/etc" -ln -s id "${COOKBOOK_STAGE}/bin/whoami" -chmod +s "${COOKBOOK_STAGE}/bin/passwd" -chmod +s "${COOKBOOK_STAGE}/bin/sudo" -chmod +s "${COOKBOOK_STAGE}/bin/su" +ln -s id "${COOKBOOK_STAGE}/usr/bin/whoami" +chmod +s "${COOKBOOK_STAGE}/usr/bin/passwd" +chmod +s "${COOKBOOK_STAGE}/usr/bin/sudo" +chmod +s "${COOKBOOK_STAGE}/usr/bin/su" """ diff --git a/recipes/core/uutils/recipe.toml b/recipes/core/uutils/recipe.toml index 5c75f10e2bb5fa59169d844576a6563897fcf3f9..3f25cc7886f99db54d2db6128b243cb1cf938712 100644 --- a/recipes/core/uutils/recipe.toml +++ b/recipes/core/uutils/recipe.toml @@ -80,6 +80,6 @@ BINS=( for bin in "${BINS[@]}" do - ln -sv coreutils "${COOKBOOK_STAGE}/bin/$bin" + ln -sv coreutils "${COOKBOOK_STAGE}/usr/bin/$bin" done """ diff --git a/recipes/core/zerod/recipe.toml b/recipes/core/zerod/recipe.toml index be70616ff2b22aaad45ede007a9f76a3d0e72608..0e8a338410adb7470132d7825f5eebd2ea9940a0 100644 --- a/recipes/core/zerod/recipe.toml +++ b/recipes/core/zerod/recipe.toml @@ -7,7 +7,7 @@ script = """ cookbook_cargo --bin zerod # TODO: symlinks aren't supported by redox-initfs -#ln -sv zerod "${COOKBOOK_STAGE}/bin/nulld" +#ln -sv zerod "${COOKBOOK_STAGE}/usr/bin/nulld" -cp "${COOKBOOK_STAGE}/bin/zerod" "${COOKBOOK_STAGE}/bin/nulld" +cp "${COOKBOOK_STAGE}/usr/bin/zerod" "${COOKBOOK_STAGE}/usr/bin/nulld" """